* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1454 50%, #5632a8 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(86, 50, 168, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(86, 50, 168, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(86, 50, 168, 0.3);
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #a78bfa;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: #c084fc;
    margin-bottom: 50px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(86, 50, 168, 0.15);
    border: 1px solid rgba(86, 50, 168, 0.4);
    border-radius: 12px;
    padding: 25px;
    min-width: 120px;
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #a78bfa;
    margin-bottom: 10px;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c084fc;
}

.about-section {
    background: rgba(86, 50, 168, 0.1);
    border: 1px solid rgba(86, 50, 168, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
}

.about-section h3 {
    font-size: 2rem;
    color: #a78bfa;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e9d5ff;
}

.email-notify-section {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(86, 50, 168, 0.4);
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
}

.email-notify-section h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.email-notify-section p {
    font-size: 0.95rem;
    color: #c7d2fe;
    margin-bottom: 20px;
    line-height: 1.6;
}

.email-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(86, 50, 168, 0.5);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.email-input::placeholder {
    color: #94a3b8;
}

.email-input:focus {
    border-color: #5632a8;
    background: rgba(15, 23, 42, 0.9);
}

.notify-button {
    padding: 12px 28px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notify-button:hover {
    background: #059669;
}

.notify-button:disabled {
    background: #6b7280;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #6ee7b7;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #fca5a5;
}

.cta-section {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-button {
    display: inline-block;
    background: #5632a8;
    color: white;
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #6b3ec4;
    opacity: 0.9;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(86, 50, 168, 0.4);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.discord-button:hover {
    background: rgba(86, 50, 168, 0.2);
    border-color: rgba(86, 50, 168, 0.6);
}

.discord-icon {
    width: 24px;
    height: 24px;
    color: #5865F2;
}

.banner-container {
    margin-top: 60px;
}

.banner {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .about-section h3 {
        font-size: 1.5rem;
    }
    
    .about-section p {
        font-size: 1rem;
    }
}