@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

:root { 
    --bg-light: #ffffff;
    --text-dark: #000000;
    --pink: #e1306c;
    --gold: #ffd700;
    --grey: #f4f4f4;
    --border-dark: #000000;
    
    /* Footer Vars */
    --brand-pink: #ff2a85;
    --footer-bg: #fcfcf9; 
    --footer-text: #111111;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--text-dark); color: var(--text-dark); font-family: 'Inter', sans-serif; margin: 0; -webkit-tap-highlight-color: transparent; overflow-x: hidden; }

/* REUSABLE REVEAL CLASS */
.reveal-up { opacity: 0; transform: translateY(50px); transition: 0.8s all cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* THE WRAPPER */
.content-wrapper { background: var(--bg-light); position: relative; z-index: 2; margin-bottom: 80vh; border-bottom: 4px solid var(--text-dark); padding-bottom: 50px;}
@media (min-width: 768px) { .content-wrapper { margin-bottom: 60vh; } }

/* BRIGHT MESH BACKGROUND */
.bright-mesh-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(at 10% 10%, rgba(225,48,108,0.05) 0, transparent 40%), radial-gradient(at 90% 90%, rgba(255,215,0,0.08) 0, transparent 40%); z-index: -1; pointer-events: none; }

/* NAV & BUTTONS */
.floating-nav { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--text-dark); padding: 14px 25px; border-radius: 50px; display: flex; gap: 20px; z-index: 1000; white-space: nowrap; border: 2px solid var(--pink); box-shadow: 0 10px 30px rgba(225,48,108,0.3); transition: 0.3s; }
.floating-nav a { color: #fff; text-decoration: none; font-size: 0.65rem; font-weight: 900; text-transform: uppercase; transition: 0.3s; }
.floating-nav a.active, .floating-nav a:hover { color: var(--pink); }

.nav-top { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; position: relative; z-index: 10; }
.logo { font-size: 2rem; font-weight: 900; letter-spacing: -2px; }

.hard-btn-small { display: inline-block; background: var(--bg-light); color: var(--text-dark); border: 2px solid var(--border-dark); padding: 8px 16px; font-weight: 900; text-decoration: none; border-radius: 6px; box-shadow: 4px 4px 0 var(--border-dark); transition: 0.2s; font-size: 0.8rem; }
.hard-btn-small:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--border-dark); background: var(--pink); color: var(--bg-light); border-color: var(--pink); }

.hard-btn { display: inline-block; padding: 18px 35px; font-weight: 900; font-size: 1rem; border: 3px solid var(--border-dark); text-decoration: none; border-radius: 8px; box-shadow: 6px 6px 0 var(--border-dark); transition: 0.2s; text-transform: uppercase; cursor: pointer; }
.hard-btn.primary { background: var(--pink); color: var(--bg-light); border-color: var(--border-dark); }
.hard-btn.dark { background: var(--text-dark); color: var(--bg-light); }
.hard-btn:hover { transform: translate(4px, 4px); box-shadow: 2px 2px 0 var(--border-dark); }
.mt-4 { margin-top: 40px; }

/* VISUAL HERO SECTION */
.visual-hero { position: relative; min-height: 90vh; padding-bottom: 50px; overflow: hidden; }
.hero-container { display: flex; justify-content: center; align-items: center; min-height: 70vh; position: relative; max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.hero-center { text-align: center; z-index: 5; max-width: 800px; }
.eyebrow { font-weight: 900; color: var(--pink); letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 20px; }
.massive-title { font-size: 12vw; font-weight: 900; line-height: 1.05; margin: 0; text-transform: uppercase; letter-spacing: -2px; }
.highlight-pink { color: var(--pink); }
.highlight-gold { color: var(--gold); -webkit-text-stroke: 2px var(--text-dark); }
.hero-sub { font-size: 1.1rem; color: #444; margin: 20px auto 0; font-weight: 600; max-width: 500px; line-height: 1.5; }

/* FLOATING VISUALIZERS */
.floating-visualizer { position: absolute; z-index: 1; border: 3px solid var(--border-dark); background: var(--bg-light); border-radius: 12px; box-shadow: 10px 10px 0 rgba(0,0,0,0.1); display: block; }
.social-card { left: -10%; top: 5%; width: 200px; padding: 15px; --rot: -12deg; --s: 0.65; transform: scale(var(--s)) rotate(var(--rot)); animation: floatCard 6s ease-in-out infinite; }
.social-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--pink); border: 2px solid var(--border-dark); }
.line { height: 8px; background: #ddd; border-radius: 4px; width: 60px; }
.social-image { width: 100%; height: 120px; background: linear-gradient(45deg, #f3ec78, #af4261); border-radius: 8px; border: 2px solid var(--border-dark); margin-bottom: 10px; }
.social-footer { font-weight: 900; font-size: 0.8rem; }
.heart { display: inline-block; animation: pump 1s infinite alternate; }

.ticket-card { right: -10%; bottom: 5%; width: 200px; background: var(--gold); text-align: center; --rot: 15deg; --s: 0.65; transform: scale(var(--s)) rotate(var(--rot)); animation: floatCard 7s ease-in-out infinite reverse; }
.ticket-top { background: var(--text-dark); color: var(--gold); font-weight: 900; padding: 10px; font-size: 0.8rem; border-bottom: 3px dashed var(--border-dark); border-radius: 8px 8px 0 0; }
.ticket-mid { padding: 20px 10px; }
.ticket-mid h3 { margin: 0 0 5px; font-size: 1.5rem; font-weight: 900; }
.ticket-mid p { margin: 0; font-size: 0.7rem; font-weight: 700; }
.ticket-barcode { padding: 10px; font-weight: 900; letter-spacing: 2px; border-top: 3px solid var(--border-dark); border-radius: 0 0 8px 8px; }

@keyframes floatCard { 0% { transform: translateY(0) scale(var(--s)) rotate(var(--rot)); } 50% { transform: translateY(-15px) scale(var(--s)) rotate(var(--rot)); } 100% { transform: translateY(0) scale(var(--s)) rotate(var(--rot)); } }
@keyframes pump { 0% { transform: scale(1); } 100% { transform: scale(1.2); } }

@media (min-width: 768px) {
    .social-card { left: 5%; top: 20%; width: 220px; --rot: -5deg; --s: 1; }
    .social-image { height: 150px; }
    .ticket-card { right: 5%; bottom: 10%; --rot: 8deg; --s: 1; }
}
/* =========================================
   LAPTOP & DESKTOP OPTIMIZATION (THE FIX)
========================================== */
@media (min-width: 1024px) {
    
    /* 1. HERO TEXT FIX: Lock font sizes so they aren't "massive" */
    .massive-title {
        font-size: 5.5rem !important; /* Fixed size instead of 12vw */
        line-height: 1;
        letter-spacing: -4px;
    }

    .hero-container {
        min-height: 80vh;
        padding-top: 50px;
    }

    .hero-center {
        max-width: 1000px; /* Keeps text from spreading too wide */
    }

    .hero-sub {
        font-size: 1.2rem;
        max-width: 600px;
        margin-bottom: 30px;
    }

    /* 2. FLOATING CARDS FIX: Move them further out so they don't overlap text */
    .social-card {
        left: 2% !important;
        top: 25% !important;
        transform: rotate(-8deg) scale(1.1) !important;
    }

    .ticket-card {
        right: 2% !important;
        bottom: 15% !important;
        transform: rotate(8deg) scale(1.1) !important;
    }

    /* 3. STACKING CARDS FIX: Ensure they don't overlap your footer */
    .stacking-section {
        padding: 150px 5%;
    }

    .stack-card {
        min-height: 450px;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* 4. FOOTER TEXT FIX: Stop OIC MEDIA from being too big */
    .mega-text {
        font-size: 12rem !important; /* Fixed size instead of 18vw */
        letter-spacing: -8px;
    }
}

/* =========================================
   EXTRA LARGE SCREEN (ULTRAWIDE)
========================================== */
@media (min-width: 1600px) {
    .massive-title {
        font-size: 7rem !important;
    }
    .hero-container {
        max-width: 1400px;
    }
}
/* TRUST MARQUEE */
.trust-section { padding: 60px 0; background: var(--bg-light); text-align: center; position: relative; overflow: hidden; }
.trust-heading { font-size: 1.1rem; font-weight: 700; color: #555; margin-bottom: 40px; }
.trust-container { position: relative; display: flex; align-items: center; justify-content: center; height: 120px; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.trust-marquee { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; overflow: hidden; }
.trust-track { display: flex; width: max-content; animation: trustScroll 25s linear infinite; gap: 80px; padding-left: 80px; }
.brand-logo { font-size: 1.5rem; font-weight: 900; color: #ccc; letter-spacing: -1px; }
@keyframes trustScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.trust-static { position: absolute; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 12px; background: radial-gradient(ellipse at center, rgba(255,255,255,1) 40%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,0) 100%); padding: 20px 60px; }
.avatar-stack { display: flex; justify-content: center; }
.avatar-stack img { width: 45px; height: 45px; border-radius: 50%; border: 3px solid var(--bg-light); margin-left: -15px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.avatar-stack img:first-child { margin-left: 0; }
.rating-stars { display: flex; gap: 4px; }
.star-box { background: #ff5a2c; color: white; font-size: 12px; padding: 4px 5px; border-radius: 4px; line-height: 1; }
.rating-text { margin: 0; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }

@media (max-width: 768px) {
    .trust-heading { padding: 0 20px; }
    .trust-track { gap: 40px; padding-left: 40px; }
    .brand-logo { font-size: 1.2rem; }
    .avatar-stack img { width: 35px; height: 35px; border-width: 2px; margin-left: -12px; }
    .trust-static { padding: 10px 30px; }
}

/* FLOATING PILLS SECTION */
.floating-pills-section { padding: 60px 0; background: #fdfdf8; text-align: center; overflow: hidden; }
.hello-divider { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 30px; }
.hello-divider .line { height: 1px; width: 40px; background: #e0e0e0; }
.hello-divider p { margin: 0; color: #888; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}
.pills-container { display: flex; flex-direction: column; align-items: center; width: 100%; }
.pills-center-text { order: 1; padding: 0 20px; margin-bottom: 40px; max-width: 100%; }
.pills-center-text h2 { font-size: 1.4rem; font-weight: 700; line-height: 1.5; color: #111; margin: 0; letter-spacing: -0.5px; }

.pills-column { display: flex; flex-wrap: nowrap; width: 100%; overflow-x: auto; padding: 10px 20px 20px; gap: 15px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.pills-column::-webkit-scrollbar { display: none; }
.left-pills { order: 2; margin-bottom: 0px; }
.right-pills { order: 3; padding-left: 40px; }

.soft-pill { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; background: #ffffff; padding: 8px 18px 8px 8px; border-radius: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-weight: 700; font-size: 0.85rem; color: #333; animation: mobileBreath 3s ease-in-out infinite alternate; }
.pill-1 { animation-delay: 0s; } .pill-2 { animation-delay: 0.5s; } .pill-3 { animation-delay: 1.2s; } .pill-4 { animation-delay: 0.2s; } .pill-5 { animation-delay: 0.8s; } .pill-6 { animation-delay: 1.5s; }
@keyframes mobileBreath { 0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.05); } 100% { transform: scale(1.04); box-shadow: 0 12px 25px rgba(0,0,0,0.08); } }

.pill-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; }
.pill-icon.orange { background: #ff9d6b; } .pill-icon.green { background: #88e07a; } .pill-icon.blue { background: #b0e5ff; color: #0077b6; } .pill-icon.pink { background: #ffb5e8; color: #d0007b; } .pill-icon.red { background: #ffbcbc; color: #d62828; } .pill-icon.lightblue { background: #d0f0fd; color: #0077b6; }

@media (min-width: 1024px) {
    .floating-pills-section { padding: 100px 5%; }
    .hello-divider .line { width: 60px; }
    .pills-container { display: grid; grid-template-columns: 250px 1fr 250px; align-items: center; gap: 30px; max-width: 1200px; margin: 0 auto; }
    .pills-center-text { order: 2; padding: 0; margin: 0; }
    .pills-center-text h2 { font-size: 3rem; letter-spacing: -1px; }
    .pills-column { flex-wrap: wrap; overflow: visible; padding: 0; width: auto; }
    .left-pills { order: 1; flex-direction: column; align-items: flex-end; }
    .right-pills { order: 3; flex-direction: column; align-items: flex-start; padding-left: 0; }
    .soft-pill { font-size: 0.9rem; padding: 10px 20px 10px 10px; animation: levitate 4s ease-in-out infinite; }
    .pill-icon { width: 34px; height: 34px; font-size: 1.2rem; }
    .pill-2 { transform: translateX(30px); } .pill-5 { transform: translateX(-30px); }
    .pill-icon-wrapper { animation: levitate 4s ease-in-out infinite; animation-delay: 0.5s; }
    .right-pills .pill-icon-wrapper { animation-delay: 0.8s; }
    .pill-icon-wrapper .soft-pill { animation: none; }
}
@keyframes levitate { 0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(0,0,0,0.05); } 50% { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); } }

/* INSTAGRAM COMMUNITY SECTION */
.ig-promo-section { padding: 80px 5%; background: #fdfdf8; overflow: hidden; }
.ig-promo-container { display: flex; flex-direction: column; gap: 50px; max-width: 1200px; margin: 0 auto; align-items: center; }
.ig-promo-text { order: 1; max-width: 600px; text-align: center; }
.ig-badge { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: #111; margin-bottom: 20px; }
.ig-icon { width: 28px; height: 28px; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; stroke: white; border-radius: 8px; padding: 4px; }
.ig-promo-text h2 { font-size: 2.2rem; font-weight: 900; line-height: 1.2; color: #111; margin: 0 0 20px; letter-spacing: -1px; }
.ig-promo-text p { font-size: 1.05rem; line-height: 1.6; color: #555; font-weight: 500; margin-bottom: 30px; }
.soft-btn { display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.primary-soft { background: #111; color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.primary-soft:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,0,0,0.15); }

.ig-mockup-wrapper { order: 2; width: 100%; max-width: 450px; perspective: 1000px; }
.ig-mockup-card { background: #ffffff; border-radius: 24px; padding: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03); animation: levitateUI 6s ease-in-out infinite; }
@keyframes levitateUI { 0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); } 50% { transform: translateY(-15px) rotateX(0deg) rotateY(0deg); } }

.ig-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.ig-profile-ring { width: 85px; height: 85px; border-radius: 50%; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); padding: 3px; flex-shrink: 0; }
.ig-profile-ring img { width: 100%; height: 100%; border-radius: 50%; border: 3px solid #fff; object-fit: cover; }
.ig-stats { display: flex; justify-content: space-between; flex-grow: 1; text-align: center; }
.stat strong { display: block; font-size: 1.1rem; color: #111; } .stat span { font-size: 0.8rem; color: #111; }
.ig-bio { font-size: 0.9rem; color: #111; margin-bottom: 15px; line-height: 1.4; }
.ig-bio strong { font-size: 0.95rem; } .ig-bio p { margin: 3px 0; } .ig-bio .mention { color: #00376b; cursor: pointer; } .ig-link { color: #00376b; font-weight: 600; text-decoration: none; font-size: 0.85rem;}
.ig-mutuals { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: #111; margin-bottom: 15px; }
.mutual-avatars { display: flex; } .mutual-avatars img { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; } .mutual-avatars img:first-child { margin-left: 0; }
.ig-actions { display: flex; gap: 8px; margin-bottom: 25px; }
.ig-btn { flex: 1; padding: 8px 0; border-radius: 8px; border: none; background: #efefef; color: #111; font-weight: 700; font-size: 0.85rem; cursor: pointer; font-family: inherit; }
.ig-btn.active { background: #efefef; } .ig-btn.icon-btn { flex: 0 0 35px; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.ig-highlights { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; }
.ig-highlights::-webkit-scrollbar { display: none; }
.highlight-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.highlight-circle { width: 60px; height: 60px; border-radius: 50%; border: 1px solid #dbdbdb; padding: 2px; }
.highlight-circle img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.highlight-item span { font-size: 0.75rem; font-weight: 500; color: #111; }

@media (min-width: 1024px) {
    .ig-promo-section { padding: 120px 5%; }
    .ig-promo-container { flex-direction: row; justify-content: space-between; align-items: center; gap: 80px; }
    .ig-promo-text { text-align: left; order: 2; flex: 1; }
    .ig-promo-text h2 { font-size: 3.5rem; }
    .ig-mockup-wrapper { order: 1; flex: 1; }
}

/* =========================================
   STACKING CARDS (RESTORED CSS)
========================================== */
.stacking-section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; position: relative; }
.section-heading { font-size: 3rem; font-weight: 900; margin-bottom: 50px; letter-spacing: -1px; text-transform: uppercase; }
.text-center { text-align: center; }
.stack-container { display: flex; flex-direction: column; gap: 40px; padding-bottom: 50px; }
.stack-card { position: sticky; top: 12vh; height: auto; min-height: 400px; border: 4px solid var(--border-dark); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; box-shadow: 0 -10px 20px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card-1 { background: var(--bg-light); top: calc(10vh + 0px); }
.card-2 { background: var(--grey); top: calc(10vh + 20px); }
.card-3 { background: var(--text-dark); color: var(--bg-light); top: calc(10vh + 40px); }
.card-3 h2 { color: var(--gold); } .card-3 p { color: #ccc; }
.card-watermark { position: absolute; top: -20px; right: 20px; font-size: 15rem; font-weight: 900; opacity: 0.05; line-height: 1; pointer-events: none; }
.card-3 .card-watermark { opacity: 0.1; color: var(--bg-light); }
.stack-content { position: relative; z-index: 2; max-width: 600px; }
.stack-content h2 { font-size: 2.5rem; font-weight: 900; margin: 0 0 20px; letter-spacing: -1px; }
.stack-content p { font-size: 1.1rem; font-weight: 600; line-height: 1.6; margin-bottom: 30px; }
.css-graphic { width: 80px; height: 80px; border: 3px solid var(--border-dark); border-radius: 12px; display: flex; justify-content: center; align-items: center; background: var(--bg-light); box-shadow: 4px 4px 0 var(--pink); }
.card-3 .css-graphic { border-color: var(--gold); box-shadow: 4px 4px 0 var(--gold); background: var(--text-dark); }
.play-btn { font-size: 2rem; color: var(--pink); margin-left: 5px; }
.stage-lights { display: flex; gap: 8px; } .stage-lights span { width: 10px; height: 10px; background: var(--border-dark); border-radius: 50%; animation: flash 1s infinite alternate; } .stage-lights span:nth-child(2) { animation-delay: 0.3s; background: var(--gold); }
.roster-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; width: 40px; height: 40px; } .roster-grid span { background: var(--gold); border-radius: 2px; }
@keyframes flash { 0% { opacity: 0.3; } 100% { opacity: 1; } }

@media (min-width: 768px) {
    .stack-card { flex-direction: row; align-items: center; justify-content: space-between; }
    .css-graphic { width: 250px; height: 250px; }
    .card-watermark { font-size: 25rem; top: -50px; }
}

/* =========================================
   ACCORDION PROCESS (RESTORED CSS)
========================================== */
.accordion-section { padding: 50px 5% 100px; max-width: 900px; margin: 0 auto; }
.accordion-container { border-top: 4px solid var(--border-dark); }
.accordion-item { border-bottom: 4px solid var(--border-dark); }
.acc-header { padding: 30px 0; font-size: 2rem; font-weight: 900; cursor: pointer; display: flex; align-items: center; transition: 0.3s; }
.acc-header:hover { color: var(--pink); padding-left: 10px; }
.acc-num { color: var(--pink); margin-right: 20px; font-size: 1.5rem; }
.acc-icon { margin-left: auto; font-size: 2.5rem; transition: transform 0.4s ease; line-height: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.acc-body p { margin: 0 0 30px 65px; font-size: 1.1rem; font-weight: 600; color: #555; max-width: 600px; line-height: 1.6; }
.accordion-item.active .acc-icon { transform: rotate(45deg); color: var(--pink); }
.accordion-item.active .acc-body { max-height: 200px; }

/* =========================================
   OIC VIRAL RAIN & VIDEO SECTION
========================================== */
.oic-viral-rain-section {
    padding: 100px 5%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.viral-text-content {
    max-width: 800px;
    margin-bottom: 50px;
    z-index: 10;
}

.oic-eyebrow {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--pink, #ff2a85);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.viral-heading {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin: 0 0 20px 0;
    color: #111;
}

.viral-text-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* --- THE PHONE HARDWARE --- */
.oic-phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 50px;
    border: 14px solid #111;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2), inset 0 0 0 2px #333;
    z-index: 5;
}

.phone-notch {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #111;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 30;
}

/* --- THE SCREEN & VIDEO --- */
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden; /* Keeps video and notifs inside the curves */
    background: #111;
}

.viral-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the screen perfectly */
    opacity: 0.85; /* Dims slightly so text is readable */
    transform: scale(1.05); /* Prevents edge bleeding */
}

/* --- THE VIDEO FIX --- */
.viral-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the video perfectly to fill the phone */
    z-index: 1; /* Puts the video at the very back layer */
    opacity: 0.85; /* Dims the video slightly so notifications are readable */
    pointer-events: none; /* Stops the video from eating your clicks */
}

/* Ensure the overlays sit ON TOP of the video */
.live-viral-counter, 
.oic-notif-area, 
.phone-bottom-overlay {
    position: relative;
    z-index: 10;
}

/* Ensure the phone screen acts as the boundary */
.oic-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: #000; /* Fallback color before video loads */
}

/* --- THE NOTIFICATIONS --- */
.notif-rain-area {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 20;
    pointer-events: none; /* Let the user scroll the page normally */
}

.oic-rain-notif {
    position: absolute;
    width: 90%;
    left: 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px); /* Frosted glass over the video */
    -webkit-backdrop-filter: blur(15px);
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto; /* Allow users to click the notification */
    cursor: pointer;
    transform: translateY(-150px); /* Start hidden above the phone */
    transition: transform 0.3s cubic-bezier(0.25, 1.2, 0.5, 1), opacity 0.3s ease;
}

/* --- THE LIVE COUNTER --- */
.live-viral-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 25;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- 3D TILT FOR PHONE FRAME --- */
.oic-phone-mockup {
    /* Existing styles stay, just add these: */
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; /* Smooth snapping */
    will-change: transform;
}

/* --- DOUBLE TAP HEART EXPLOSION --- */
.floating-heart {
    position: absolute;
    font-size: 2.5rem;
    pointer-events: none;
    z-index: 30;
    animation: explodeUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

@keyframes explodeUp {
    0% { transform: translate(-50%, -50%) scale(0) rotate(-15deg); opacity: 1; }
    50% { transform: translate(-50%, -100px) scale(1.2) rotate(15deg); }
    100% { transform: translate(-50%, -200px) scale(1) rotate(0deg); opacity: 0; }
}

.notif-emoji {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notif-content { text-align: left; line-height: 1.2; }
.notif-content strong { display: block; font-size: 0.85rem; color: #111; margin-bottom: 2px; }
.notif-content span { font-size: 0.75rem; color: #444; font-weight: 500;}

/* --- BOTTOM UI OVERLAY --- */
.phone-bottom-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 60px 20px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    text-align: left;
    z-index: 15;
}

.phone-bottom-overlay h3 { margin: 0 0 5px; font-size: 1.3rem; font-weight: 900; }
.live-status { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; color: #ccc; letter-spacing: 1px; }
.pulsing-dot { width: 8px; height: 8px; background: #ff2a85; border-radius: 50%; animation: pulseDot 1.5s infinite; }

@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(255, 42, 133, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 42, 133, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 42, 133, 0); } }

/* Desktop side-by-side layout */
@media (min-width: 1024px) {
    .oic-viral-rain-section { flex-direction: row; justify-content: center; gap: 80px; padding: 120px 5%; text-align: left; }
    .viral-text-content { max-width: 500px; margin-bottom: 0; }
}

/* =========================================
   OIC PORTFOLIO SECTION
========================================== */
.oic-pf-section { padding: 80px 5% 100px; background: #fdfdfa; text-align: center; display: flex; flex-direction: column; align-items: center; overflow: hidden; }
.oic-pf-deck { position: relative; height: 480px; width: 100%; max-width: 1000px; margin: 0 auto 40px; display: flex; justify-content: center; align-items: center; perspective: 1200px; }
.oic-pf-card { position: absolute; width: 280px; height: 380px; border-radius: 16px; overflow: hidden; background: #fff; border: 4px solid #fff; box-shadow: 0 15px 35px rgba(0,0,0,0.1); transform-origin: bottom center; cursor: pointer; user-select: none; opacity: 0; transform: translateY(150px) scale(0.8) rotate(0deg); transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease, box-shadow 0.4s ease, filter 0.4s ease; }
.oic-pf-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.oic-pf-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 20px 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; text-align: left; transition: all 0.3s ease; }
.oic-pf-tag { font-size: 0.65rem; font-weight: 900; background: #ff2a85; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; }
.oic-pf-overlay h3 { margin: 5px 0 0; font-size: 1.4rem; font-weight: 900; letter-spacing: -0.5px; }

.oic-pf-section.is-revealed .pf-card-1 { transform: rotate(-24deg) translateX(-200px) translateY(40px); opacity: 1; z-index: 1; }
.oic-pf-section.is-revealed .pf-card-2 { transform: rotate(-12deg) translateX(-100px) translateY(10px); opacity: 1; z-index: 2; }
.oic-pf-section.is-revealed .pf-card-3 { transform: rotate(0deg) translateX(0px) translateY(0px); opacity: 1; z-index: 3; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.oic-pf-section.is-revealed .pf-card-4 { transform: rotate(12deg) translateX(100px) translateY(10px); opacity: 1; z-index: 2; }
.oic-pf-section.is-revealed .pf-card-5 { transform: rotate(24deg) translateX(200px) translateY(40px); opacity: 1; z-index: 1; }

.oic-pf-cta-wrap { position: relative; display: flex; flex-direction: column; align-items: center; z-index: 20; width: 100%; }
.oic-pf-btn { background: #000; color: #fff; font-weight: 900; font-size: 1.1rem; padding: 18px 45px; border-radius: 12px; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; position: relative; z-index: 2; }
.oic-pf-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); background: #ff2a85; }

@media (min-width: 1024px) {
    .oic-pf-deck { margin-bottom: 120px; }
    .oic-pf-section.is-revealed .oic-pf-deck:hover .pf-card-1 { transform: rotate(-30deg) translateX(-280px) translateY(60px); }
    .oic-pf-section.is-revealed .oic-pf-deck:hover .pf-card-2 { transform: rotate(-15deg) translateX(-140px) translateY(15px); }
    .oic-pf-section.is-revealed .oic-pf-deck:hover .pf-card-4 { transform: rotate(15deg) translateX(140px) translateY(15px); }
    .oic-pf-section.is-revealed .oic-pf-deck:hover .pf-card-5 { transform: rotate(30deg) translateX(280px) translateY(60px); }
    .oic-pf-deck:hover .oic-pf-card { filter: brightness(0.7) blur(1px); }
    .oic-pf-deck .oic-pf-card:hover { transform: translateY(-40px) scale(1.08) rotate(0deg) !important; z-index: 20 !important; box-shadow: 0 30px 60px rgba(0,0,0,0.25); filter: brightness(1) blur(0px); }
    .oic-pf-card:hover img { transform: scale(1.05); }

    .oic-pf-cta-wrap { max-width: 900px; }
    .oic-pf-note-box { position: absolute; top: 20px; left: 50%; transform: translateX(160px); display: flex; align-items: flex-start; width: max-content; }
    .oic-pf-arrow-up { width: 70px; height: 60px; color: #ff2a85; margin-top: -15px; margin-right: 15px; transform: rotate(-20deg); }
    .oic-pf-handwritten { font-family: 'Caveat', cursive; font-size: 1.5rem; color: #333; line-height: 1.1; text-align: left; margin-top: 15px; }
}

@media (max-width: 768px) {
    .oic-pf-section { padding: 60px 5% 80px; }
    .oic-pf-deck { height: 320px; margin-bottom: 30px; }
    .oic-pf-card { width: 190px; height: 270px; }
    .oic-pf-section.is-revealed .pf-card-1 { transform: rotate(-20deg) translateX(-80px) translateY(20px); }
    .oic-pf-section.is-revealed .pf-card-2 { transform: rotate(-10deg) translateX(-40px) translateY(5px); }
    .oic-pf-section.is-revealed .pf-card-3 { transform: rotate(0deg) translateX(0px) translateY(0px); }
    .oic-pf-section.is-revealed .pf-card-4 { transform: rotate(10deg) translateX(40px) translateY(5px); }
    .oic-pf-section.is-revealed .pf-card-5 { transform: rotate(20deg) translateX(80px) translateY(20px); }

    .oic-pf-btn { padding: 16px 35px; font-size: 1rem; margin-bottom: 10px; }
    .oic-pf-note-box { display: flex; flex-direction: column; align-items: center; position: relative; right: auto; top: auto; }
    .oic-pf-arrow-up { margin: 0 0 5px 0; width: 35px; height: 35px; color: #ff2a85; transform: rotate(60deg); }
    .oic-pf-handwritten { font-family: 'Caveat', cursive; text-align: center; margin-top: 0; font-size: 1.3rem; color: #333; }
}

/* =========================================
   WORK TEASER
========================================== */
.oic-work-teaser { min-height: 80vh; padding: 100px 5%; background-color: #fbfbfd; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; cursor: none;}
.pattern-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(#d0d0d5 1px, transparent 1px); background-size: 20px 20px; opacity: 0.2; z-index: 1; pointer-events: none; }
.liquid-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; pointer-events: none; z-index: 2; }
.glow-pink { top: -20%; right: -10%; width: 60vw; height: 60vw; background: var(--pink); }
.glow-gold { bottom: -30%; left: -20%; width: 70vw; height: 70vw; background: var(--gold); }
.teaser-content { text-align: center; z-index: 5; max-width: 900px; }
.teaser-content h2 { font-size: 4rem; font-weight: 900; line-height: 1.1; color: var(--text-dark); margin: 0 0 25px; letter-spacing: -3px; text-transform: uppercase; }
.teaser-content p { font-size: 1.3rem; font-weight: 600; color: #555; line-height: 1.6; max-width: 600px; margin: 0 auto 50px; }
.brutal-btn { display: inline-flex; align-items: center; gap: 10px; padding: 20px 45px; font-weight: 900; font-size: 1.1rem; border: 3px solid var(--text-dark); text-decoration: none; color: var(--bg-light); background: var(--text-dark); border-radius: 6px; box-shadow: 8px 8px 0 rgba(0,0,0,0.1); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); text-transform: uppercase; }
.brutal-btn.primary { background: #fff; color: #000; border-color: #000; }
.brutal-btn.magnetic-item { display: inline-flex; }
.brutal-btn .arrow { transition: 0.3s ease; }

@media (hover: hover) {
    .brutal-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0px 0px 0 rgba(0,0,0,0.1); transform: translateY(2px) translateX(2px); }
    .brutal-btn:hover .arrow { transform: translateX(5px); }
}
@media (max-width: 768px) {
    .oic-work-teaser { padding: 80px 5%; min-height: auto; }
    .teaser-content h2 { font-size: 2.8rem; letter-spacing: -2px; }
    .teaser-content p { font-size: 1.1rem; }
    .brutal-btn { padding: 15px 30px; font-size: 0.9rem; border-radius: 4px; }
}

/* =========================================
   OIC BRIGHT STUDIO FOOTER (RESTORED CSS)
========================================== */
.oic-bright-footer { background-color: var(--footer-bg); color: var(--footer-text); padding: 100px 5% 30px 5%; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0 -20px 50px rgba(0,0,0,0.03); display: flex; flex-direction: column; gap: 50px; margin-top: 80px; position: relative; overflow: hidden; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 40px; }
.footer-cta-text { font-size: 5.5rem; font-weight: 900; line-height: 0.9; letter-spacing: -3px; margin: 0; color: var(--footer-text); }
.pink-italic { color: var(--brand-pink); font-style: italic; padding-right: 15px; }

.footer-links { display: flex; gap: 15px; flex-wrap: wrap; }
.social-pill { display: inline-flex; align-items: center; gap: 8px; color: var(--footer-text); text-decoration: none; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 12px 25px; border: 2px solid var(--footer-text); border-radius: 50px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); background: transparent; }
.social-pill .arrow { font-size: 1.1rem; transition: transform 0.3s ease; }
.social-pill:hover { background: var(--brand-pink); color: #fff; border-color: var(--brand-pink); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 42, 133, 0.2); }
.social-pill:hover .arrow { transform: translate(3px, -3px); }

.footer-marquee { width: 100%; overflow: hidden; padding: 20px 0; border-top: 2px solid var(--footer-text); border-bottom: 2px solid var(--footer-text); }
.marquee-content { display: flex; width: max-content; animation: footerScroll 20s linear infinite; }
.marquee-content span { font-size: 1.2rem; font-weight: 900; padding-right: 30px; color: var(--footer-text); white-space: nowrap; }
@keyframes footerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.mega-text-container { width: 100%; text-align: center; position: relative; }
.mega-text { font-size: 18vw; font-weight: 900; line-height: 0.75; letter-spacing: -5px; margin: 0; text-transform: uppercase; cursor: default; position: relative; display: inline-block; color: transparent; -webkit-text-stroke: 2px var(--footer-text); }
.mega-text::before { content: attr(data-text); position: absolute; left: 0; top: 0; width: 0%; height: 100%; color: var(--brand-pink); -webkit-text-stroke: 0px transparent; overflow: hidden; white-space: nowrap; transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.mega-text-container:hover .mega-text::before { width: 100%; }

.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #666; font-weight: 700; flex-wrap: wrap; gap: 20px; padding-top: 20px; }

@media (max-width: 768px) {
    .oic-bright-footer { padding: 80px 5% 40px 5%; border-top-left-radius: 30px; border-top-right-radius: 30px;}
    .footer-top { flex-direction: column; align-items: flex-start; gap: 30px; }
    .footer-cta-text { font-size: 3.8rem; letter-spacing: -2px; }
    .social-pill { width: 100%; justify-content: center; padding: 15px 0; }
    .footer-links { width: 100%; gap: 10px; }
    .footer-marquee { padding: 15px 0; }
    .marquee-content span { font-size: 1rem; }
    .mega-text { font-size: 20vw; letter-spacing: -2px; -webkit-text-stroke: 1.5px var(--footer-text); }
    .footer-bottom-bar { flex-direction: column; text-align: center; justify-content: center; width: 100%; margin-top: 20px;}
}