body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #00010A;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

::selection { background: #FF4151; color: #fff; }

.header {
    background-color: #0F111A;
    padding: 20px 0;
    font-size: 32px;
    text-align: center;
    position: relative;
	border-bottom: solid 2px #FF4151;
    user-select: none;
}

/* Logo */
.logo {
    color: #fff;
}

.name {
    font-weight: normal;
}

.group {
    color: #FF4151; /* Akzentfarbe */
}

i {
    margin-right: 5px;
}

.container {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background-color: #0F111A;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container h1 {
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.domain-name {
    font-size: 24px;
    font-weight: bold;
    color: #FF4151;
    margin-bottom: 20px;
}

.cta-button {
    margin-top: 30px;
    padding: 18px 50px;
    border: solid 2px white;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #FF4151;
    color: #FF4151;
}

.link {
    color: white;
    text-decoration: none;
    margin: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: #FF4151;
}

footer {
    color: #3B4252;
    text-align: center;
    font-size: 14px;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 30px;
        margin-top: 60px;
    }
}