/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0d0d14;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 6%;
    background: rgba(13, 13, 20, 0.65);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
}

.site-header.scrolled {
    background: rgba(10,10,18,0.92);
    backdrop-filter: blur(22px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
}

.brand img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(142,43,255,0.8));
    border-radius: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    color: #ddd;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff003d;
}

.nav-btn,
.btn {
    padding: 13px 24px;
    border-radius: 40px;
    font-weight: 700;
    transition: 0.4s ease;
    display: inline-block;
}

.nav-btn,
.primary-btn {
    background: linear-gradient(135deg, #6a00ff, #ff003d);
    box-shadow: 0 0 30px rgba(255,0,61,0.35);
}

.nav-btn:hover,
.primary-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 45px rgba(255,0,61,0.6);
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 10px;
}

/* =========================
   COMMON
========================= */
section {
    padding: 60px 6%;
    position: relative;
}

.section-title {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.section-title span,
.badge,
.monetization-box span,
.ott-content span {
    display: inline-block;
    color: #ff4f7b;
    background: rgba(255,0,61,0.12);
    border: 1px solid rgba(255,0,61,0.25);
    padding: 9px 18px;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-title h2,
.ott-content h2,
.monetization-box h2 {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-title p,
.hero-content p,
.ott-content p,
.monetization-box p,
.about-content p {
    color: #cfcfd8;
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    padding-top: 160px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(106,0,255,0.5), transparent 70%);
    top: 5%;
    left: -12%;
    filter: blur(20px);
    animation: pulseGlow 5s infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255,0,61,0.45), transparent 70%);
    right: -10%;
    bottom: 5%;
    filter: blur(20px);
    animation: pulseGlow 6s infinite alternate;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1.02;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #8e2bff, #ff003d);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px;
}

.hero-stats div,
.glass-card,
.market-card,
.journey-step,
.announcement-item,
.stats-grid div {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
    transition: 0.45s ease;
    position: relative;
    overflow: hidden;
}

.hero-stats div::before,
.glass-card::before,
.market-card::before,
.journey-step::before,
.announcement-item::before,
.stats-grid div::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.hero-stats div:hover,
.glass-card:hover,
.market-card:hover,
.journey-step:hover,
.announcement-item:hover,
.stats-grid div:hover {
    transform: translateY(-10px);
    border-color: rgba(255,0,61,0.45);
    box-shadow: 0 30px 90px rgba(255,0,61,0.18);
}

.hero-stats h3 {
    font-size: 32px;
    color: #ff4f7b;
}

.hero-stats p {
    font-size: 14px;
}

.phone-card {
    max-width: 420px;
    margin-left: auto;
    border-radius: 40px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(106,0,255,0.7), rgba(255,0,61,0.5));
    box-shadow: 0 0 80px rgba(142,43,255,0.35);
}

.phone-card img {
    border-radius: 32px;
    height: 560px;
    width: 100%;
    object-fit: cover;
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    padding: 16px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    font-weight: 800;
    box-shadow: 0 20px 70px rgba(0,0,0,0.4);
}

.card-one {
    top: 18%;
    left: 5%;
}

.card-two {
    right: 0;
    top: 46%;
}

.card-three {
    left: 12%;
    bottom: 12%;
}

/* =========================
   ABOUT
========================= */
.about-grid,
.monetization-box,
.mini-ott {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.about-image img {
    border-radius: 36px;
    height: 520px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 30px 90px rgba(106,0,255,0.25);
}

.about-content ul {
    margin-top: 22px;
    list-style: none;
}

.about-content li,
.content-points p {
    margin-bottom: 13px;
    padding-left: 28px;
    position: relative;
    color: #eeeeff;
}

.about-content li::before,
.content-points p::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #ff003d;
}

/* =========================
   GRIDS
========================= */
.feature-grid,
.why-grid,
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.glass-card h3,
.market-card h3,
.journey-step h3,
.announcement-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.glass-card p,
.market-card p,
.journey-step p,
.announcement-item p {
    color: #cfcfd8;
    line-height: 1.7;
}

/* =========================
   MONETIZATION
========================= */
.monetization-box {
    padding: 55px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(106,0,255,0.22), rgba(255,0,61,0.12));
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.content-points {
    margin: 28px 0;
}

.monetization-cards {
    display: grid;
    gap: 22px;
}

.monetization-cards div {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}

.monetization-cards h3 {
    font-size: 52px;
    color: #ff4f7b;
}

/* =========================
   MINI OTT
========================= */
.ott-content {
    max-width: 620px;
}

.ott-grid {
    display: grid;
    gap: 22px;
}

.ott-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 230px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.45);
}

.ott-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.ott-card:hover img {
    transform: scale(1.12);
}

.ott-card h3 {
    position: absolute;
    left: 24px;
    bottom: 24px;
    font-size: 26px;
    text-shadow: 0 4px 20px black;
}

/* =========================
   MARKETPLACE
========================= */
.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.market-card {
    min-height: 230px;
    background: linear-gradient(145deg, rgba(106,0,255,0.22), rgba(255,0,61,0.12));
}

/* =========================
   JOURNEY + STATS
========================= */
.journey-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.journey-step span {
    font-size: 42px;
    font-weight: 900;
    color: rgba(255,255,255,0.18);
}

.stats-grid h2 {
    font-size: 58px;
    color: #ff4f7b;
}

.stats-grid p {
    color: #ddd;
}

/* =========================
   ANNOUNCEMENTS
========================= */
.announcement-list {
    max-width: 950px;
    margin: auto;
    display: grid;
    gap: 22px;
}

.announcement-box {
    text-align: center;
    max-width: 950px;
    margin: auto;
    padding: 70px 35px;
    border-radius: 44px;
    background: linear-gradient(135deg, rgba(106,0,255,0.35), rgba(255,0,61,0.18));
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 40px 120px rgba(255,0,61,0.16);
}

.announcement-box h2 {
    font-size: clamp(32px, 5vw, 58px);
    margin-bottom: 18px;
}

.announcement-box p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.center-buttons {
    justify-content: center;
}

/* =========================
   FAQ DROPDOWN FIXED
========================= */
.faq-wrapper {
    max-width: 950px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-wrapper .faq-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.faq-wrapper .faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,0,61,0.35);
    box-shadow: 0 25px 70px rgba(255,0,61,0.12);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 28px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question b {
    font-size: 30px;
    color: #ff4f7b;
    transition: 0.35s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-answer p {
    padding: 0 28px 28px;
    color: #d7d7df;
    line-height: 1.8;
    font-size: 17px;
}

.faq-wrapper .faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-wrapper .faq-item.active .faq-question b {
    transform: rotate(45deg);
}

/* =========================
   FOOTER
========================= */
.footer {
    position: relative;
    padding: 90px 6% 25px;
    background: #090910;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(106,0,255,0.35), transparent 70%);
    top: -160px;
    left: 10%;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 58px;
    border-radius: 18px;
}

.footer-about p,
.footer-contact p {
    color: #cfcfd8;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.social-icons a {
    padding: 10px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff003d;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfcfd8;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff003d;
}

.newsletter {
    margin-top: 20px;
    display: flex;
    background: rgba(255,255,255,0.08);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

.newsletter input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
}

.newsletter button {
    padding: 14px 18px;
    border: none;
    background: linear-gradient(135deg, #6a00ff, #ff003d);
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 35px;
    margin-top: 45px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #aaa;
}

/* =========================
   SCROLL ANIMATION
========================= */
.section-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: 1s ease;
}

.section-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glass-card,
.market-card,
.journey-step,
.ott-card {
    opacity: 0;
    transform: translateY(45px);
    transition: 0.8s ease;
}

.section-reveal.active .glass-card,
.section-reveal.active .market-card,
.section-reveal.active .journey-step,
.section-reveal.active .ott-card {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal.active .glass-card:nth-child(2),
.section-reveal.active .market-card:nth-child(2),
.section-reveal.active .journey-step:nth-child(2),
.section-reveal.active .ott-card:nth-child(2) {
    transition-delay: 0.15s;
}

.section-reveal.active .glass-card:nth-child(3),
.section-reveal.active .market-card:nth-child(3),
.section-reveal.active .journey-step:nth-child(3),
.section-reveal.active .ott-card:nth-child(3) {
    transition-delay: 0.3s;
}

.section-reveal.active .glass-card:nth-child(4),
.section-reveal.active .market-card:nth-child(4),
.section-reveal.active .journey-step:nth-child(4) {
    transition-delay: 0.45s;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-22px);
    }
}

@keyframes pulseGlow {
    from {
        opacity: 0.45;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* =========================
   SCROLLBAR
========================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0d0d14;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#6a00ff, #ff003d);
    border-radius: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1050px) {
    .hero,
    .about-grid,
    .monetization-box,
    .mini-ott {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone-card {
        margin: auto;
    }

    .feature-grid,
    .why-grid,
    .event-grid,
    .market-grid,
    .journey-grid,
    .stats-grid,
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    .site-header {
        padding: 14px 5%;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        right: 5%;
        width: 90%;
        flex-direction: column;
        gap: 0;
        background: rgba(13,13,20,0.95);
        backdrop-filter: blur(22px);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 26px;
        padding: 20px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    section {
        padding: 85px 5%;
    }

    .hero {
        padding-top: 130px;
        gap: 70px;
    }

    .hero-stats,
    .feature-grid,
    .why-grid,
    .event-grid,
    .market-grid,
    .journey-grid,
    .stats-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-stats div,
    .glass-card,
    .market-card,
    .journey-step,
    .announcement-item {
        padding: 24px;
    }

    .phone-card {
        max-width: 320px;
    }

    .phone-card img {
        height: 500px;
    }

    .floating-card {
        display: none;
    }

    .monetization-box {
        padding: 32px;
        gap: 30px;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 22px;
        font-size: 15px;
    }

    .newsletter {
        flex-direction: column;
        border-radius: 24px;
    }

    .newsletter button {
        width: 100%;
    }

    .footer-container {
        gap: 45px;
    }
}

@media (max-width: 480px) {
    .brand span {
        font-size: 22px;
    }

    .brand img {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .section-title h2,
    .ott-content h2,
    .monetization-box h2 {
        font-size: 32px;
    }

    .phone-card img {
        height: 430px;
    }

    .announcement-box {
        padding: 45px 24px;
    }
}
.footer-contact a {
    color: #ff4f7b;
    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255,0,61,0.7);
}
.subscribe-message {
    margin-top: 14px;
    color: #ff4f7b;
    font-size: 14px;
}

.footer-contact a {
    color: #ff4f7b;
    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255,0,61,0.7);
}

/* =========================
   SCROLL ANIMATION ENHANCEMENTS (FIX)
========================= */
.section-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.section-reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Card animations inside sections */
.section-reveal .glass-card,
.section-reveal .market-card,
.section-reveal .journey-step,
.section-reveal .ott-card,
.section-reveal .feature-grid > div,
.section-reveal .why-grid > div,
.section-reveal .event-grid > div {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-reveal.active .glass-card,
.section-reveal.active .market-card,
.section-reveal.active .journey-step,
.section-reveal.active .ott-card,
.section-reveal.active .feature-grid > div,
.section-reveal.active .why-grid > div,
.section-reveal.active .event-grid > div {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for cards */
.section-reveal.active .glass-card:nth-child(1),
.section-reveal.active .market-card:nth-child(1),
.section-reveal.active .journey-step:nth-child(1),
.section-reveal.active .feature-grid > div:nth-child(1),
.section-reveal.active .why-grid > div:nth-child(1) {
    transition-delay: 0.1s;
}

.section-reveal.active .glass-card:nth-child(2),
.section-reveal.active .market-card:nth-child(2),
.section-reveal.active .journey-step:nth-child(2),
.section-reveal.active .feature-grid > div:nth-child(2),
.section-reveal.active .why-grid > div:nth-child(2) {
    transition-delay: 0.2s;
}

.section-reveal.active .glass-card:nth-child(3),
.section-reveal.active .market-card:nth-child(3),
.section-reveal.active .journey-step:nth-child(3),
.section-reveal.active .feature-grid > div:nth-child(3),
.section-reveal.active .why-grid > div:nth-child(3) {
    transition-delay: 0.3s;
}

.section-reveal.active .glass-card:nth-child(4),
.section-reveal.active .market-card:nth-child(4),
.section-reveal.active .journey-step:nth-child(4),
.section-reveal.active .feature-grid > div:nth-child(4),
.section-reveal.active .why-grid > div:nth-child(4) {
    transition-delay: 0.4s;
}

.section-reveal.active .glass-card:nth-child(5),
.section-reveal.active .market-card:nth-child(5),
.section-reveal.active .feature-grid > div:nth-child(5) {
    transition-delay: 0.5s;
}

.section-reveal.active .glass-card:nth-child(6),
.section-reveal.active .feature-grid > div:nth-child(6) {
    transition-delay: 0.6s;
}

/* Card click shade effect enhancement */
.glass-card:active,
.market-card:active,
.ott-card:active,
.journey-step:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
    box-shadow: 0 0 30px rgba(255, 0, 61, 0.5);
}

/* Ensure hero section animations work */
.hero.section-reveal.active .hero-content,
.hero.section-reveal.active .hero-visual {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix for mobile performance */
@media (max-width: 768px) {
    .section-reveal {
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .section-reveal .glass-card,
    .section-reveal .market-card,
    .section-reveal .journey-step {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
}