* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(-45deg, #000000, #0a0a0a, #1a1a1a, #2a2a2a);
    background-size: 400% 400%;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glitter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 2px);
    background-size: 300px 300px;
    z-index: -1;
    animation: glitter 8s linear infinite;
}

@keyframes glitter {
    0% { background-position: 0 0, 100px 150px, 200px 300px, 300px 450px; }
    100% { background-position: 300px 300px, 400px 450px, 500px 600px, 600px 750px; }
}

.shine-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
    z-index: 0;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.logo {
    margin-bottom: 2rem;
    position: relative;
}

.logo h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: transparent;
    background: linear-gradient(45deg, #ffffff, #eeeeee, #ffffff, #dddddd);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.6),
                 0 0 60px rgba(255, 255, 255, 0.4),
                 0 0 80px rgba(255, 255, 255, 0.2);
    animation: glow 1.5s ease-in-out infinite alternate;
    position: relative;
    padding: 0.5rem;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 40px rgba(255, 255, 255, 0.6),
                     0 0 60px rgba(255, 255, 255, 0.4),
                     0 0 80px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.9),
                     0 0 50px rgba(255, 255, 255, 0.7),
                     0 0 75px rgba(255, 255, 255, 0.5),
                     0 0 100px rgba(255, 255, 255, 0.3),
                     0 0 125px rgba(255, 255, 255, 0.1);
    }
}

.domain {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    font-weight: 300;
    position: relative;
}

.domain::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.8rem 1.2rem;
    min-width: 110px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: countdownShine 3s infinite linear;
}

@keyframes countdownShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15),
                inset 0 0 20px rgba(255, 255, 255, 0.08);
}

.countdown-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ccc;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.launch-date {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ddd;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.notify {
    margin-bottom: 2.5rem;
}

.notify h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    color: #ddd;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.notify-input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 320px;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1),
                0 0 15px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.notify-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2),
                inset 0 0 10px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.notify-input::placeholder {
    color: #bbb;
}

.notify-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #ffffff, #eeeeee);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.notify-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: rotate(45deg);
    animation: buttonShine 3s infinite linear;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.notify-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

.social {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social a {
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social a:hover::before {
    transform: translateX(100%);
}

.social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* Spezifische Farben für die Social Media Icons */
.social a.youtube:hover {
    color: #FF0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.social a.discord:hover {
    color: #5865F2;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.social a.tiktok:hover {
    color: #00f2ea;
    box-shadow: 0 5px 20px rgba(0, 242, 234, 0.4);
}

.social a.x-twitter {
    background: rgba(0, 0, 0, 0.2);
}

.social a.x-twitter:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

.twitter-logo {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social a.x-twitter:hover .twitter-logo {
    filter: brightness(0) invert(0);
}

.copyright {
    margin-top: 2.5rem;
    color: #999;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .domain {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1.2rem 0.8rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    
    .notify-input {
        width: 100%;
        max-width: 300px;
    }
    
    .social {
        gap: 1rem;
    }
    
    .social a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .twitter-logo {
        width: 24px;
        height: 24px;
    }
}