/* CSS Reset & Variables */
:root {
    --bg-color: #000000;
    --card-bg: rgba(10, 10, 10, 0.45);
    --border-color: rgba(255, 255, 255, 0.07);
    --text-primary: #f5f5f7;
    --text-secondary: #8e8e93;
    --primary-glow: rgba(147, 51, 234, 0.5);
    /* Violet */
    --secondary-glow: rgba(59, 130, 246, 0.5);
    /* Blue */
    --accent: #a855f7;
    --accent-hover: #c084fc;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background grid overlay */
.bg-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

/* Background glows */
.glow-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.45;
    mix-blend-mode: screen;
    will-change: transform;
}

.glow-purple {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: floatGlow 25s infinite alternate ease-in-out;
}

.glow-blue {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: floatGlow 30s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(40px) scale(1.15);
    }
}

/* Layout container */
.page-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1.5rem;
    z-index: 3;
    position: relative;
}

/* Main card wrapper */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 760px;
    margin: auto 0;
}

.coming-soon-card {
    width: 100%;
    text-align: center;
    animation: cardEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* GIF Container - Full width, responsive, centered, no circular clip or frame */
.gif-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatVisual 6s ease-in-out infinite;
}

@keyframes floatVisual {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.coming-soon-gif {
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 12px;
    object-fit: contain;
    background-color: transparent;
}

/* Header Sections */
.header-section {
    margin-bottom: 2.5rem;
    animation: floatText 6s ease-in-out infinite;
}

@keyframes floatText {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto;
}



/* Footer & social icon components */
.footer-section {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    text-decoration: none;
}

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

.social-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}

/* --- MOBILE RESPONSIVE QUERIES --- */
@media (max-width: 640px) {
    .page-container {
        padding: 1.5rem 1rem 4.5rem 1rem;
    }

    .gif-container {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }

    .coming-soon-gif {
        max-height: 200px;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }
}

/* Extra small viewport tweaks */
@media (max-height: 700px) and (min-width: 640px) {

    .gif-container {
        max-width: 380px;
        margin-bottom: 1.5rem;
    }
}