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

:root {
    --deep-red: #cc1e39;
    --off-white: #E5E4E2;
    --gold: #c5a253;
}

body {
    margin: 0;
    font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #000000 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.background-smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.coming-soon-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out;
}

.logo {
    width: 40vw;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.1));
}

.main-content {
    margin-bottom: 4rem;
}

.coming-soon-text {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ffffff;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: fadeInUp 1.4s ease-out;
}

.subtitle-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    line-height: 1.6;
    animation: fadeInUp 1.6s ease-out;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s ease-out;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(204, 30, 57, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.countdown-number:hover {
    transform: scale(1.05);
    border-color: var(--deep-red);
    box-shadow: 0 0 30px rgba(204, 30, 57, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(204, 30, 57, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(204, 30, 57, 0.6);
    }
}

.countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-separator {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: var(--deep-red);
    font-weight: 900;
    text-shadow: 0 0 20px rgba(204, 30, 57, 0.5);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.launch-date {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    animation: fadeInUp 2s ease-out;
}

.tagline-text {
    text-align: center;
    animation: fadeInUp 2.2s ease-out;
}

.tagline-bold {
    font-family: 'Anton', 'Poppins', sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 255, 255, 0.2);
    line-height: 1.2;
}

.tagline-drippy {
    color: var(--deep-red);
    letter-spacing: 3px;
    text-shadow: 0 0 25px rgba(204, 30, 57, 0.8), 2px 2px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 2.4s ease-out;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--deep-red);
    border-color: var(--deep-red);
    background: rgba(204, 30, 57, 0.1);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(204, 30, 57, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .subtitle-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2.5rem;
        padding: 0.8rem 1rem;
    }

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

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

    .tagline-bold {
        font-size: 2.5rem !important;
        letter-spacing: 2px;
    }

    .tagline-drippy {
        font-size: 2.5rem !important;
        letter-spacing: 2px;
    }

    .logo {
        max-width: 300px;
    }

    .launch-date {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .countdown-number {
        font-size: 2rem;
        padding: 0.6rem 0.8rem;
    }

    .countdown-item {
        min-width: 70px;
    }

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

    .tagline-bold {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }

    .tagline-drippy {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }

    .logo {
        max-width: 250px;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}