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

:root {
    --primary: #0B0B0C;
    --secondary: #111216;
    --gold: #D4AF37;
    --gold-soft: #C9A368;
    --text-gray: #CECECE;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Particle Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    animation: fadeInDown 1s ease-out;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* Main Content */
.content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(17, 18, 22, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
}

/* Launch Date */
.launch-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.calendar-icon {
    width: 24px;
    height: 24px;
}

/* Notify Form */
.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: var(--text-gray);
}

.email-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.notify-btn {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.notify-btn:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.notify-btn:active {
    transform: translateY(0);
}

.form-note {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 300;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    animation: fadeInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
    gap: 2rem;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.founder-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.founder-details {
    text-align: left;
}

.founder-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.founder-tagline {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Success Message */
.success-message {
    display: none;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    color: var(--gold);
    margin-top: 1rem;
    animation: fadeIn 0.5s ease-out;
}

.success-message.show {
    display: block;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
    }

    .notify-btn {
        width: 100%;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .founder-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}
