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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    zoom: 1.05;
}

.page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-card {
    background-image: url('../assets/interesting.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    min-height: 80vh;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-section {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: #a8b2d1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title em {
    font-style: italic;
    color: #64b5f6;
}

.highlight {
    color: #7c4dff;
    background: linear-gradient(45deg, #7c4dff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #a8b2d1;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

.waitlist-counter {
    margin-bottom: 0.5rem;
    margin-top: -0.5rem;
}

.counter-text {
    font-size: 0.75rem;
    color: #a8b2d1;
    margin: 0;
    opacity: 0.8;
}

.count-number {
    color: #64b5f6;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.count-number.updating {
    color: #7c4dff;
    transform: scale(1.1);
}

.thank-you-message {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn 0.5s ease;
}

.thank-you-content h3 {
    color: #64b5f6;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.thank-you-content p {
    color: #a8b2d1;
    font-size: 1.1rem;
    margin: 0;
}

.discord-invite {
    margin-top: 1.5rem;
}

.discord-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(10px);
}

.discord-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
    background: linear-gradient(135deg, #6772f5 0%, #5865f2 100%);
}

.discord-pill:active {
    transform: translateY(0);
}

.discord-icon {
    font-size: 1.1em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-section {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-video {
    width: 75%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.demo-video:hover {
    border-color: rgba(124, 77, 255, 0.3);
    box-shadow: 0 12px 40px rgba(124, 77, 255, 0.2);
}

.waitlist-form {
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 500px;
}

.form-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: stretch;
}

#email {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#email::placeholder {
    color: #a8b2d1;
}

#email:focus {
    outline: none;
    border-color: #7c4dff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.1);
}

.honeypot {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

#submitBtn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #7c4dff, #64b5f6);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 150px;
}

#submitBtn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
}

#submitBtn:active {
    transform: translateY(0);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    animation: slideIn 0.3s ease;
}

.message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64b5f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #a8b2d1;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #a8b2d1;
    font-size: 0.95rem;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }
    
    .content-card {
        border-radius: 16px;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .demo-video {
        width: 80%;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    #email, #submitBtn {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    
    #submitBtn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features {
        font-size: 0.9rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
} 