:root {
    --bg-dark: #0f172a;
    /* Richer dark blue */
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --accent-orange: #f59e0b;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --title-grad: linear-gradient(135deg, #f59e0b, #ec4899, #8b5cf6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* =========================================
   ANIMATED BACKGROUND GRAPHICS 
   ========================================= */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at top left, #1e1b4b, #0f172a);
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-orange);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: #ec4899;
    bottom: 20%;
    left: 10%;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

/* =========================================
   TOP NAVIGATION
   ========================================= */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    margin-right: 15px;
    border-radius: 8px;
}

.nav-icon {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-left: 20px;
    transition: all 0.3s;
}

.nav-icon:hover {
    color: var(--accent-orange);
    transform: scale(1.2);
}

/* =========================================
   MAIN LAYOUT & HERO SECTION
   ========================================= */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 50px;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
    flex: 1;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.top-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 24px;
    display: flex;
    align-items: center;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--accent-orange);
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.gradient-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0px !important;
    background: linear-gradient(135deg, #FFD700, #FDB931, #9f7928);
    /* Premium Golden Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 8px 15px rgba(253, 185, 49, 0.4));
    animation: goldenPulseGlow 3s infinite alternate;
}

@keyframes goldenPulseGlow {
    0% {
        filter: drop-shadow(0px 8px 15px rgba(253, 185, 49, 0.4));
    }

    100% {
        filter: drop-shadow(0px 8px 25px rgba(255, 215, 0, 0.8));
    }
}

/* Floating Bubbles Animation */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    list-style: none;
}

.bubbles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: rise 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.bubbles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    animation-duration: 15s;
}

.bubbles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bubbles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.bubbles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bubbles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.bubbles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.bubbles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.bubbles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.bubbles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.bubbles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes rise {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 50%;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 40%;
    }
}

.coming-soon-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    to {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 5px rgba(236, 72, 153, 0.6);
    }
}

.tagline {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* =========================================
   VIDEO CARD (IN THE BODY)
   ========================================= */
.hero-video {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    padding-top: 5px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 600px;
    /* Removed tilt effect (transform: rotateY(-5deg) rotateX(5deg)) */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover {
    transform: scale(1.02);
    /* Only scale, no tilt on hover */
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
}

.video-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 5px 15px 5px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.video-title {
    margin-left: 10px;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-video {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* =========================================
   COUNTDOWN TIMER
   ========================================= */
.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    min-width: 90px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.time-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1;
}

.time-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-orange);
    font-weight: 600;
}

/* =========================================
   NOTIFY FORM
   ========================================= */
.notify-wrapper {
    margin-bottom: 40px;
}

.notify-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    max-width: 500px;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 12px 25px;
    outline: none;
    font-size: 1rem;
}

.input-group button {
    background: var(--title-grad);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.input-group button:hover {
    opacity: 0.9;
}

/* =========================================
   SOCIAL LINKS & FOOTER
   ========================================= */
.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.social-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 177, 66, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

footer {
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.8;
}

footer a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-orange);
}

/* =========================================
   ENTRY ANIMATIONS
   ========================================= */
.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slide-in-right {
    animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

@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 slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gradient-title {
        font-size: 4.5rem;
    }

    .countdown {
        justify-content: center;
    }

    .hero-video {
        width: 100%;
        margin-top: 40px;
    }

    .video-card {
        transform: none;
    }

    .video-card:hover {
        transform: scale(1.02);
    }

    .social-row {
        justify-content: center;
    }

    footer {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .top-nav {
        padding: 15px 20px;
    }

    .main-wrapper {
        padding: 30px 20px;
    }

    .gradient-title {
        font-size: 3.2rem;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
    }

    .input-group input,
    .input-group button {
        width: 100%;
        border-radius: 30px;
    }

    .input-group input {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 10px;
    }
}