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

        :root {
            --primary: #ED1E79;
            --primary-light: #ff4d94;
            --primary-dark: #B8135D;
            --text-dark: #0a0a0a;
            --text-light: #777;
            --bg-dark: #f5f2f0;
            --bg-white: #ffffff;
            --accent: #ffd700;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background: var(--bg-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== PAGE LOAD ANIMATION =====
         * The loader auto-hides 1.5s after the page is interactive.
         * If JS fails for any reason, the @keyframes safety-fade kicks in
         * after 3 seconds so the user never gets stuck under the overlay.
         */
        .page-loader {
            position: fixed;
            inset: 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            pointer-events: auto;
            transition: opacity 0.5s ease-out;
            animation: tia-loader-failsafe 0.5s ease-out 3s forwards;
        }

        .page-loader.hidden {
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }

        @keyframes tia-loader-failsafe {
            to { opacity: 0; visibility: hidden; pointer-events: none; }
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            font-weight: 900;
            animation: logoReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            box-shadow: 0 20px 60px rgba(237, 30, 121, 0.4);
        }

        @keyframes logoReveal {
            0% {
                opacity: 0;
                transform: scale(0.3) blur(10px) rotateZ(-45deg);
            }
            50% {
                opacity: 1;
                transform: scale(1.1) blur(0px) rotateZ(0deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) blur(0px) rotateZ(0deg);
            }
        }

        .loader-text {
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .loader-dots {
            display: inline-block;
            margin-left: 8px;
        }

        .dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            margin: 0 4px;
            animation: dotBounce 1.4s infinite;
        }

        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes dotBounce {
            0%, 80%, 100% { transform: scale(1) translateY(0); opacity: 0.5; }
            40% { transform: scale(1.2) translateY(-10px); opacity: 1; }
        }

        /* ===== HEADER ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 16px 40px;
            border-bottom: 1px solid rgba(237, 30, 121, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(237, 30, 121, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        header.scrolled {
            padding: 12px 40px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .logo {
            height: 40px;
            display: flex;
            align-items: center;
            animation: fadeInLeft 0.8s ease-out;
        }

        .logo img {
            height: 100%;
            object-fit: contain;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        nav {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 4px;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover::after {
            width: 100%;
        }

        .search-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .search-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .search-btn:hover {
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 10px 25px rgba(237, 30, 121, 0.3);
        }

        .search-btn:active::before {
            opacity: 1;
            animation: ripple 0.6s ease-out;
        }

        @keyframes ripple {
            from {
                transform: scale(1);
                opacity: 1;
            }
            to {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1a2a 100%);
            background-image: url("c004f231-0515-42c2-b238-ee8ccfddd3f7");
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .circle-1 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .circle-2 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
            bottom: -150px;
            left: -150px;
            animation: float 25s ease-in-out infinite reverse;
        }

        .circle-3 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(237, 30, 121, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(237, 30, 121, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: grid-move 20s linear infinite;
        }

        @keyframes grid-move {
            0% { transform: translateY(0); }
            100% { transform: translateY(60px); }
        }

        .spotlight {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(237, 30, 121, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: spotlight-move 8s ease-in-out infinite;
        }

        @keyframes spotlight-move {
            0%, 100% { top: -20%; right: -20%; opacity: 0.5; }
            50% { top: 10%; right: 10%; opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
            text-align: center;
            color: white;
            animation: fadeInUp 1s ease-out 1.8s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            background: rgba(237, 30, 121, 0.2);
            border: 1px solid var(--primary);
            color: var(--primary-light);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 24px;
            letter-spacing: 1.5px;
            backdrop-filter: blur(10px);
            animation: slideInDown 1s ease-out 1.9s both;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 72px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            background: linear-gradient(135deg, white 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out 2s both, textShimmer 3s ease-in-out 3.5s infinite;
        }

        @keyframes textShimmer {
            0%, 100% { text-shadow: 0 0 20px rgba(255, 77, 148, 0.3); }
            50% { text-shadow: 0 0 40px rgba(255, 77, 148, 0.6); }
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 2.2s both;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 2.4s both;
        }

        .hero-btn {
            padding: 14px 36px;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            position: relative;
            overflow: hidden;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
        }

        .hero-btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(237, 30, 121, 0.4);
            animation: buttonPulse 0.6s ease-in-out;
        }

        @keyframes buttonPulse {
            0%, 100% { box-shadow: 0 15px 40px rgba(237, 30, 121, 0.4); }
            50% { box-shadow: 0 15px 60px rgba(237, 30, 121, 0.7); }
        }

        .hero-btn-primary:active {
            transform: translateY(-2px) scale(0.98);
        }

        .hero-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--primary-light);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(237, 30, 121, 0.2);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: bounce 2s ease-in-out infinite;
            z-index: 10;
        }

        @keyframes bounce {
            0%, 100% {
                opacity: 0.5;
                transform: translateX(-50%) translateY(0);
            }
            50% {
                opacity: 1;
                transform: translateX(-50%) translateY(10px);
            }
        }

        .scroll-dot {
            display: block;
            margin: 4px auto;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
        }

        /* ===== SECTIONS =====
         * Sections fill the full viewport width so background colours and
         * gradients (e.g. countdown banner, testimonials block) bleed
         * edge-to-edge. Horizontal padding is computed with max() so the
         * content area is always 1400 px wide and auto-centered — that way
         * even inline-block titles sit at the same left edge as the rest
         * of the content.
         */
        .section {
            padding-top: 100px;
            padding-bottom: 100px;
            padding-left: max(40px, calc((100% - 1400px) / 2));
            padding-right: max(40px, calc((100% - 1400px) / 2));
            margin: 0;
            width: 100%;
            position: relative;
        }
        @media (max-width: 768px) {
            .section {
                padding-top: 60px;
                padding-bottom: 60px;
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
            animation: titleSlideIn 0.8s ease-out;
        }

        @keyframes titleSlideIn {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .section-title:hover {
            animation: titleFloat 2s ease-in-out infinite;
        }

        @keyframes titleFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 3px;
            animation: underlineExpand 0.8s ease-out 0.2s both, underlineGlow 2s ease-in-out 1.2s infinite;
        }

        @keyframes underlineExpand {
            from { width: 0; }
            to { width: 80px; }
        }

        @keyframes underlineGlow {
            0%, 100% { box-shadow: 0 0 5px rgba(237, 30, 121, 0.4); }
            50% { box-shadow: 0 0 15px rgba(237, 30, 121, 0.8), 0 0 25px rgba(255, 215, 0, 0.4); }
        }

        /* FLASH SALE */
        .flash-sale {
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding-top: 50px;
            padding-bottom: 50px;
            padding-left: max(40px, calc((100% - 1400px) / 2));
            padding-right: max(40px, calc((100% - 1400px) / 2));
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .flash-sale::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.1) 10px,
                rgba(255, 255, 255, 0.1) 20px
            );
            animation: stripe-move 2s linear infinite;
        }

        @keyframes stripe-move {
            0% { transform: translateX(0); }
            100% { transform: translateX(20px); }
        }

        .flash-sale-content {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
        }

        .flash-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.3);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 16px;
            letter-spacing: 1px;
            animation: pulse-scale 1.5s ease-in-out infinite;
        }

        @keyframes pulse-scale {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .flash-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
        }

        .flash-desc {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .flash-btn {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .flash-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(237, 30, 121, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .flash-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .flash-btn:hover::before {
            opacity: 1;
        }

        /* FEATURED STORIES */
        .featured-stories {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-white) 100%);
            position: relative;
            overflow: hidden;
        }

        .featured-stories::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(237, 30, 121, 0.1) 50%, transparent 100%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .section-container {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .story-featured {
            position: relative;
            border-radius: 24px;
            height: 650px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            background-size: cover;
            background-position: center;
            background-image: url("f0f01e3a-c39c-4d4f-bbbe-ab5533a91779");
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            animation: cardReveal 0.8s ease-out 0.3s both;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .story-featured::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(237, 30, 121, 0.5) 0%, rgba(184, 19, 93, 0.7) 100%);
            z-index: 1;
            transition: all 0.4s ease;
        }

        .story-featured:hover {
            transform: translateY(-16px) scale(1.03);
            box-shadow: 0 50px 120px rgba(237, 30, 121, 0.45);
        }

        .story-featured:hover::before {
            background: linear-gradient(135deg, rgba(237, 30, 121, 0.3) 0%, rgba(184, 19, 93, 0.5) 100%);
        }

        @keyframes cardReveal {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .story-featured-content {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.98) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 60px;
            color: white;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .story-featured:hover .story-featured-content {
            background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.99) 100%);
            padding: 70px;
        }

        .story-featured-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            line-height: 1.15;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out 0.5s both;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .story-featured:hover .story-featured-title {
            transform: translateY(-14px);
            text-shadow: 0 8px 32px rgba(237, 30, 121, 0.5);
        }

        .story-featured-desc {
            font-size: 16px;
            opacity: 0.95;
            line-height: 1.8;
            margin-bottom: 32px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            max-width: 90%;
        }

        .story-featured:hover .story-featured-desc {
            opacity: 1;
            transform: translateY(-6px);
        }

        .story-featured-link {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 32px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 10px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out 0.7s both;
            position: relative;
            overflow: hidden;
            width: fit-content;
        }

        .story-featured-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .story-featured-link:hover {
            border-color: var(--primary-light);
            background: rgba(237, 30, 121, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(237, 30, 121, 0.4);
            letter-spacing: 3px;
        }

        .story-featured-link:hover::before {
            transform: translateX(100%);
        }

        .stories-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .story-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardSlideIn 0.6s ease-out both;
            cursor: pointer;
        }

        @keyframes cardSlideIn {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .story-card:nth-child(1) { animation-delay: 0.4s; }
        .story-card:nth-child(2) { animation-delay: 0.5s; }
        .story-card:nth-child(3) { animation-delay: 0.6s; }

        .story-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(237, 30, 121, 0.2);
        }

        .story-card-img {
            height: 180px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            text-align: center;
            padding: 16px;
            font-size: 32px;
            overflow: hidden;
            position: relative;
        }

        .story-card:nth-child(1) .story-card-img {
            background-image: url("4ef066f9-1976-4606-a83d-9b7cf9a28c40");
        }

        .story-card:nth-child(2) .story-card-img {
            background-image: url("6f102242-43d8-42e7-ade1-9b4f817c4086");
        }

        .story-card:nth-child(3) .story-card-img {
            background-image: url("81efc377-bd50-4db3-a37f-e5c0840e48c3");
        }

        .story-card:hover .story-card-img {
            transform: scale(1.08);
        }

        .story-card-content {
            padding: 20px;
        }

        .story-card-title {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
            color: var(--text-dark);
        }

        .story-card-meta {
            font-size: 12px;
            color: var(--text-light);
        }

        /* VIDEO GALLERY */
        .video-gallery {
            background: var(--bg-white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .video-card {
            position: relative;
            border-radius: 12px;
            height: 280px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardBounce 0.6s ease-out both;
        }

        .video-card:nth-child(1) {
            background-image: url("729d71b6-a979-40ae-9b5d-7edf0e4d8550");
        }

        .video-card:nth-child(2) {
            background-image: url("ee8f6ae1-d060-47fe-a736-b3c8ea66f9d3");
        }

        .video-card:nth-child(3) {
            background-image: url("68469fcc-46a7-4f3e-b43b-c9bb8169fe86");
        }

        @keyframes cardBounce {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-card:nth-child(1) { animation-delay: 0.2s; }
        .video-card:nth-child(2) { animation-delay: 0.3s; }
        .video-card:nth-child(3) { animation-delay: 0.4s; }

        .video-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 20px 50px rgba(237, 30, 121, 0.3);
        }

        .video-card::before {
            content: '▶';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            color: white;
            opacity: 0.7;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .video-card:hover::before {
            opacity: 1;
            font-size: 80px;
            animation: playBounce 0.6s ease-out;
        }

        @keyframes playBounce {
            0% { transform: scale(0.5); }
            100% { transform: scale(1); }
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            color: white;
            z-index: 1;
        }

        .video-title {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.3;
        }

        /* TRENDING SECTION */
        .trending {
            background: var(--bg-white);
        }

        .trending-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .trending-card {
            position: relative;
            border-radius: 12px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardBounce 0.6s ease-out both;
        }

        .trending-card:nth-child(1) {
            background-image: url("40999ccc-8e2f-4b59-abdb-5bdddfe2e9c9");
        }

        .trending-card:nth-child(2) {
            background-image: url("c9cc6ee1-b2cc-461d-8a74-ddbedf966e38");
        }

        .trending-card:nth-child(3) {
            background-image: url("c9cc6ee1-b2cc-461d-8a74-ddbedf966e38");
        }

        .trending-card:nth-child(4) {
            background-image: url("e31734dc-3aa6-4d94-af59-a3d36a7d296f");
        }

        .trending-card:nth-child(1) { animation-delay: 0.2s; }
        .trending-card:nth-child(2) { animation-delay: 0.3s; }
        .trending-card:nth-child(3) { animation-delay: 0.4s; }
        .trending-card:nth-child(4) { animation-delay: 0.5s; }

        .trending-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: cardShine 3s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes cardShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .trending-card:hover {
            transform: translateY(-12px) skewY(-2deg);
            box-shadow: 0 20px 50px rgba(237, 30, 121, 0.3);
        }

        .trending-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            color: white;
            z-index: 1;
        }

        .trending-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            z-index: 3;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .trending-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.3;
        }

        /* TESTIMONIALS */
        .testimonials {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-white) 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: white;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardReveal 0.8s ease-out both;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.4s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.6s; }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            animation: slideTopBorder 0.8s ease-out;
            z-index: 2;
        }

        @keyframes slideTopBorder {
            from { left: -100%; }
            to { left: 100%; }
        }

        .testimonial-card:hover {
            transform: translateY(-8px) rotateX(3deg);
            box-shadow: 0 16px 40px rgba(237, 30, 121, 0.2);
        }

        .stars {
            color: var(--accent);
            font-size: 14px;
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover .stars {
            transform: scale(1.2);
        }

        .testimonial-text {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 13px;
        }

        .testimonial-role {
            font-size: 11px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* VIP TIERS */
        .vip-tiers {
            background: var(--bg-white);
        }

        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .tier-card {
            background: white;
            border-radius: 12px;
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            animation: cardRotate 0.8s ease-out both;
            cursor: pointer;
        }

        @keyframes cardRotate {
            from {
                opacity: 0;
                transform: rotateX(-60deg) translateY(60px);
            }
            to {
                opacity: 1;
                transform: rotateX(0) translateY(0);
            }
        }

        .tier-card:nth-child(1) { animation-delay: 0.1s; }
        .tier-card:nth-child(2) { animation-delay: 0.3s; }
        .tier-card:nth-child(3) { animation-delay: 0.5s; }

        .tier-card:hover {
            transform: translateY(-12px) rotateY(3deg);
            box-shadow: 0 24px 50px rgba(237, 30, 121, 0.2);
        }

        .tier-card.featured {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            transform: scale(1.05);
        }

        .tier-card.featured:hover {
            transform: scale(1.08) translateY(-12px);
        }

        .tier-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--text-dark);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: badgeBounce 2s ease-in-out infinite;
        }

        @keyframes badgeBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-8px); }
        }

        .tier-name {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
        }

        .tier-price {
            font-size: 14px;
            margin-bottom: 24px;
            opacity: 0.8;
        }

        .tier-features {
            list-style: none;
            margin-bottom: 32px;
            text-align: left;
        }

        .tier-features li {
            padding: 8px 0;
            font-size: 12px;
            border-bottom: 1px solid rgba(237, 30, 121, 0.1);
            opacity: 0;
            animation: fadeInLeft 0.6s ease-out both;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .tier-features li:nth-child(1) { animation-delay: 0.1s; }
        .tier-features li:nth-child(2) { animation-delay: 0.2s; }
        .tier-features li:nth-child(3) { animation-delay: 0.3s; }
        .tier-features li:nth-child(4) { animation-delay: 0.4s; }
        .tier-features li:nth-child(5) { animation-delay: 0.5s; }

        .tier-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .tier-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .tier-btn:hover::after {
            transform: translateX(100%);
        }

        .tier-card.featured .tier-btn {
            background: white;
            color: var(--primary);
        }

        .tier-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(237, 30, 121, 0.3);
        }

        /* TOP PERFORMERS */
        .performers {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-white) 100%);
        }

        .performers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .performer-card {
            position: relative;
            border-radius: 12px;
            height: 320px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardBounce 0.6s ease-out both;
        }

        .performer-card:nth-child(1) {
            background-image: url("2ec1f05d-ce7f-4385-b267-fb65cc0c5db8");
        }

        .performer-card:nth-child(2) {
            background-image: url("89a35664-7a6b-4586-8bf1-a9379a8c1ce8");
        }

        .performer-card:nth-child(3) {
            background-image: url("973ec32c-1ab3-4b69-9ecf-39253cf0a60e");
        }

        .performer-card:nth-child(4) {
            background-image: url("ab6482e3-cbe8-48a2-9704-2f249e0671b6");
        }

        .performer-card:nth-child(1) { animation-delay: 0.1s; }
        .performer-card:nth-child(2) { animation-delay: 0.2s; }
        .performer-card:nth-child(3) { animation-delay: 0.3s; }
        .performer-card:nth-child(4) { animation-delay: 0.4s; }

        .performer-card:hover {
            transform: translateY(-12px) scale(1.05);
            box-shadow: 0 20px 50px rgba(237, 30, 121, 0.3);
        }

        .performer-info {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.95) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            color: white;
            z-index: 2;
        }

        .performer-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .performer-role {
            font-size: 11px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* PAST HIGHLIGHTS */
        .highlights {
            background: var(--bg-white);
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .highlight-item {
            position: relative;
            border-radius: 8px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardBounce 0.6s ease-out both;
        }

        .highlight-item:nth-child(1) { animation-delay: 0.05s; }
        .highlight-item:nth-child(2) { animation-delay: 0.1s; }
        .highlight-item:nth-child(3) { animation-delay: 0.15s; }
        .highlight-item:nth-child(4) { animation-delay: 0.2s; }
        .highlight-item:nth-child(5) { animation-delay: 0.25s; }
        .highlight-item:nth-child(6) { animation-delay: 0.3s; }

        .highlight-item:hover {
            transform: scale(1.08);
            box-shadow: 0 16px 40px rgba(237, 30, 121, 0.2);
        }

        /* EVENT COUNTDOWN */
        .countdown {
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding-top: 60px;
            padding-bottom: 60px;
            padding-left: max(40px, calc((100% - 1400px) / 2));
            padding-right: max(40px, calc((100% - 1400px) / 2));
            width: 100%;
        }

        .countdown-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        @media (max-width: 1024px) {
            .countdown-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
        }
        @media (max-width: 768px) {
            .countdown { padding: 40px 20px; }
            .countdown-timer { gap: 8px !important; }
            .timer-item { padding: 14px 8px !important; }
            .timer-number { font-size: 22px !important; }
            .timer-label { font-size: 9px !important; }
        }

        .countdown-info h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            font-family: 'Playfair Display', serif;
        }

        .countdown-info p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .countdown-timer {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .timer-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            animation: pulse 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .timer-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
            animation: timerGlow 2s linear infinite;
        }

        @keyframes timerGlow {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .timer-number {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 4px;
            animation: numberPulse 1s ease-in-out infinite;
        }

        @keyframes numberPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .timer-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        /* CATEGORIES */
        .categories {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-white) 100%);
            position: relative;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1;
        }

        .category-card {
            position: relative;
            border-radius: 16px;
            height: 380px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            background-size: cover;
            background-position: center;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardRotate 0.8s ease-out both;
        }

        .category-card:nth-child(1) {
            background-image: url("097ea045-73bf-4336-a317-1b2c6878bf53");
        }

        .category-card:nth-child(2) {
            background-image: url("c8089589-5b94-4988-ba87-3a2326839e0f");
        }

        .category-card:nth-child(3) {
            background-image: url("d747a094-4731-4481-91bc-64521978ba19");
        }

        .category-card:nth-child(1) { animation-delay: 0.1s; }
        .category-card:nth-child(2) { animation-delay: 0.3s; }
        .category-card:nth-child(3) { animation-delay: 0.5s; }

        .category-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 24px 60px rgba(237, 30, 121, 0.3);
        }

        .category-content {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 32px;
            color: white;
            z-index: 2;
        }

        .category-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
        }

        .category-desc {
            font-size: 13px;
            opacity: 0.8;
        }

        /* NEWSLETTER */
        .newsletter {
            padding-top: 80px;
            padding-bottom: 80px;
            padding-left: max(40px, calc((100% - 1400px) / 2));
            padding-right: max(40px, calc((100% - 1400px) / 2));
            background: var(--bg-white);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .newsletter-box {
            max-width: 700px;
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 60px 50px;
            border-radius: 16px;
            text-align: center;
            color: white;
            box-shadow: 0 20px 60px rgba(237, 30, 121, 0.25);
            animation: pulseGlow 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 20px 60px rgba(237, 30, 121, 0.25);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 30px 80px rgba(237, 30, 121, 0.4);
                transform: scale(1.01);
            }
        }

        .newsletter-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
            font-family: 'Playfair Display', serif;
            animation: textGlow 2s ease-in-out infinite;
        }

        @keyframes textGlow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            }
            50% {
                text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
            }
        }

        .newsletter-subtitle {
            font-size: 14px;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .newsletter-form input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 16px;
            font-size: 13px;
            outline: none;
            color: white;
            font-family: inherit;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-form button {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .newsletter-form button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(237, 30, 121, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .newsletter-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .newsletter-form button:hover::before {
            transform: translateX(100%);
        }

        /* FLOATING CTA BUTTON */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(237, 30, 121, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            animation: floatIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2.5s both, floatBounce 2.5s ease-in-out 3.3s infinite;
            color: white;
            font-size: 28px;
            font-weight: bold;
            border: none;
            backdrop-filter: blur(10px);
        }

        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(60px) scale(0);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes floatBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-cta:hover {
            transform: scale(1.15) translateY(-8px);
            box-shadow: 0 16px 40px rgba(237, 30, 121, 0.6);
        }

        .floating-cta::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            opacity: 0.3;
            animation: pulse 2s ease-in-out infinite;
            z-index: -1;
        }

        /* FOOTER */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 80px 40px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 60px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-col {
            animation: fadeInUp 0.8s ease-out both;
        }

        .footer-col:nth-child(1) { animation-delay: 0.1s; }
        .footer-col:nth-child(2) { animation-delay: 0.2s; }
        .footer-col:nth-child(3) { animation-delay: 0.3s; }
        .footer-col:nth-child(4) { animation-delay: 0.4s; }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-col a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-col a:hover::before {
            width: 100%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(237, 30, 121, 0.2);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(237, 30, 121, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary);
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .social-icons a:hover {
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .social-icons a:hover::before {
            transform: scale(1);
        }

        /* SCROLL REVEAL ANIMATIONS */
        /* Scroll-reveal — animate in only when JS marks <body> as ready,
         * so users with JS disabled (or before script loads) see the
         * content immediately. No more invisible white-space sections. */
        .scroll-reveal {
            opacity: 1;
            transform: none;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .tia-js-ready .scroll-reveal:not(.visible) {
            opacity: 0;
            transform: translateY(40px);
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stories-grid { grid-template-columns: 1fr; }
            .trending-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid, .performers-grid { grid-template-columns: repeat(2, 1fr); }
            .highlights-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 42px; }
            nav { display: none; }
            .trending-grid, .category-grid, .gallery-grid { grid-template-columns: 1fr; }
            .testimonials-grid, .performers-grid { grid-template-columns: 1fr; }
            .highlights-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; }
            .floating-cta { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
        }
    /* Trim BEM additions: dual-class names in HTML keep both legacy and BEM. main.css works as-is. */
/* ==========================================================================
   Talk in Arabia — Search page styles
   Paste into Elementor → Site Settings → Custom CSS
   (or append to your theme's assets/css/main.css)
   ========================================================================== */

/* --- Page wrapper --- */
.tia-search.section {
    padding: 80px 24px;
    background: var(--bg-white, #fff);
}

/* Hide WP screen-reader text */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* --- Hero block (title + form) --- */
.tia-search__hero {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
}

.tia-search__eyebrow {
    display: inline-block;
    font: 700 11px/1 'Poppins', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary, #ED1E79);
    background: rgba(237, 30, 121, 0.08);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.tia-search__title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    color: var(--text-dark, #0a0a0a);
    margin: 0 0 12px;
}

.tia-search__title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary, #ED1E79), var(--accent, #ffd700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.tia-search__count {
    color: var(--text-light, #777);
    font-size: 14px;
    margin: 0 0 28px;
}

/* --- Search form --- */
.tia-search__form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid rgba(237, 30, 121, 0.18);
    border-radius: 999px;
    padding: 6px 8px 6px 22px;
    box-shadow: 0 14px 40px rgba(237, 30, 121, 0.08);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.tia-search__form:focus-within {
    border-color: var(--primary, #ED1E79);
    box-shadow: 0 18px 56px rgba(237, 30, 121, 0.18);
}

.tia-search__icon {
    font-size: 18px;
    flex: 0 0 auto;
    color: var(--primary, #ED1E79);
}

.tia-search__form input[type="search"] {
    flex: 1;
    border: 0; outline: 0;
    background: transparent;
    font: 500 16px/1.4 'Poppins', sans-serif;
    color: var(--text-dark, #0a0a0a);
    padding: 14px 8px;
}
.tia-search__form input[type="search"]::placeholder { color: #aaa; }

.tia-search__submit {
    border: 0;
    background: linear-gradient(135deg, var(--primary, #ED1E79) 0%, var(--primary-light, #ff4d94) 100%);
    color: #fff;
    font: 700 13px/1 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 26px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 8px 22px rgba(237, 30, 121, 0.35);
}
.tia-search__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(237, 30, 121, 0.5);
}

/* --- Results grid --- */
.tia-search__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Result card --- */
.tia-result {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.tia-result:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(237, 30, 121, 0.18);
    border-color: rgba(237, 30, 121, 0.18);
}

.tia-result__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.tia-result__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #2a1a2a 0%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tia-result__media-fallback {
    font-size: 48px;
    opacity: 0.6;
    filter: grayscale(0.2);
}
.tia-result__type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary, #ED1E79);
    font: 700 10px/1 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.tia-result__body {
    padding: 22px 22px 26px;
}
.tia-result__title {
    font: 700 18px/1.35 'Poppins', sans-serif;
    color: var(--text-dark, #0a0a0a);
    margin: 0 0 10px;
    transition: color .2s ease;
}
.tia-result:hover .tia-result__title { color: var(--primary, #ED1E79); }

.tia-result__excerpt {
    color: var(--text-light, #666);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tia-result__meta {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* --- Empty state --- */
.tia-search__empty {
    text-align: center;
    padding: 80px 24px;
    max-width: 560px;
    margin: 0 auto;
}
.tia-search__empty-emoji {
    font-size: 64px;
    margin-bottom: 18px;
}
.tia-search__empty h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 0 0 12px;
    color: var(--text-dark, #0a0a0a);
}
.tia-search__empty p {
    color: var(--text-light, #777);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* --- Pagination --- */
.tia-search .pagination,
.tia-search .nav-links {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.tia-search .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(237, 30, 121, 0.18);
    color: var(--text-dark, #0a0a0a);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all .25s ease;
}
.tia-search .page-numbers:hover,
.tia-search .page-numbers.current {
    background: linear-gradient(135deg, var(--primary, #ED1E79), var(--primary-light, #ff4d94));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(237, 30, 121, 0.4);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .tia-search__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .tia-search.section { padding: 56px 16px; }
    .tia-search__grid { grid-template-columns: 1fr; }
    .tia-search__form {
        flex-wrap: wrap;
        padding: 8px;
        border-radius: 18px;
    }
    .tia-search__form input[type="search"] {
        flex: 1 1 100%;
        order: 2;
        padding: 10px 12px;
    }
    .tia-search__icon { padding-left: 10px; order: 1; }
    .tia-search__submit { width: 100%; order: 3; padding: 14px; }
}

/* ==========================================================================
   ARTICLE / VIDEO SINGLE — editorial layout (TimeOut-style)
   ========================================================================== */
.tia-single {
    color: #1a1a1a;
    background: #fff;
}
.tia-single__hero {
    position: relative;
    width: 100%;
    margin: 0;
    background: #0a0a0a;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    max-height: 640px;
}
.tia-single__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tia-single__hero--video { aspect-ratio: 16 / 9; max-height: none; }

/* Universal responsive video embed used on hero, single video, articles */
.tia-video-embed {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-radius: 0;
}
.tia-video-embed iframe,
.tia-video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.tia-video-embed--link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    color: #fff;
    background: linear-gradient(135deg, #ED1E79, #FF6B35);
    text-decoration: none;
    font-weight: 700;
}

/* Homepage hero — featured video. Stack content above the video so the
 * .hero flex layout doesn't push them side-by-side. */
.hero--has-video {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 80px 24px;
    gap: 32px;
}
.hero--has-video .hero-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero--has-video .hero__media {
    position: relative;
    width: min(960px, 92%);
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(237, 30, 121, 0.25), 0 12px 24px rgba(15, 23, 42, 0.15);
    z-index: 2;
}
.hero--has-video .hero__media .tia-video-embed {
    border-radius: 24px;
}
@media (max-width: 700px) {
    .hero--has-video { padding: 40px 16px; gap: 20px; }
    .hero--has-video .hero__media { width: 100%; border-radius: 18px; }
    .hero--has-video .hero__media .tia-video-embed { border-radius: 18px; }
}

.tia-single__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.tia-single__head {
    text-align: center;
    padding: 48px 0 36px;
}
.tia-single__eyebrow {
    display: inline-block;
    background: rgba(255,43,106,0.10);
    color: var(--primary, #ED1E79);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    text-decoration: none;
    margin-bottom: 22px;
    transition: background .2s;
}
.tia-single__eyebrow:hover {
    background: var(--primary, #ED1E79);
    color: #fff;
}
.tia-single__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #0a0a0a;
    margin: 0 0 18px;
}
.tia-single__subtitle {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
    color: #4b5563;
    margin: 0 auto 32px;
    font-weight: 400;
    max-width: 640px;
}

/* Byline row */
.tia-single__byline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}
.tia-single__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tia-single__avatar {
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(255,43,106,0.18);
}
.tia-single__author-meta { display: flex; flex-direction: column; line-height: 1.4; }
.tia-single__author-name {
    font-size: 14px;
    color: #1a1a1a;
}
.tia-single__author-name strong { color: var(--primary, #ED1E79); font-weight: 700; }
.tia-single__date {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tia-single__dot { margin: 0 6px; opacity: .6; }

/* Share buttons */
.tia-single__share {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tia-single__share-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b7280;
    font-weight: 700;
    margin-right: 4px;
}
.tia-share {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563 !important;
    text-decoration: none !important;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all .2s;
}
.tia-share:hover {
    background: var(--primary, #ED1E79);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,43,106,0.3);
}

/* Body content typography */
.tia-single__body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #1f2937;
    padding: 40px 0;
}
.tia-single__body > *:first-child { margin-top: 0; }
.tia-single__body > *:last-child  { margin-bottom: 0; }
.tia-single__body p {
    margin: 0 0 1.4em;
}
.tia-single__body p:first-of-type::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    line-height: 0.9;
    font-weight: 900;
    float: left;
    margin: 6px 12px 0 0;
    color: var(--primary, #ED1E79);
}
.tia-single__body h2,
.tia-single__body h3,
.tia-single__body h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.2;
    margin: 1.6em 0 .6em;
}
.tia-single__body h2 { font-size: 32px; }
.tia-single__body h3 { font-size: 24px; }
.tia-single__body h4 { font-size: 20px; }
.tia-single__body a {
    color: var(--primary, #ED1E79);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s;
}
.tia-single__body a:hover { color: var(--primary-dark, #B8135D); }
.tia-single__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
    display: block;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.tia-single__body blockquote {
    border-left: 4px solid var(--primary, #ED1E79);
    margin: 32px 0;
    padding: 8px 24px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    color: #1a1a1a;
    background: rgba(255,43,106,0.04);
    border-radius: 0 12px 12px 0;
}
.tia-single__body ul,
.tia-single__body ol {
    margin: 0 0 1.4em 1.4em;
}
.tia-single__body li { margin-bottom: 0.6em; }
.tia-single__body code {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .9em;
    font-family: ui-monospace, monospace;
}

/* Section H2 */
.tia-single__h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 900;
    color: #0a0a0a;
    margin: 0 0 24px;
}
.tia-single__h2--center { text-align: center; margin-bottom: 36px; }

/* Gallery grid */
.tia-single__gallery { padding: 24px 0 40px; }
.tia-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.tia-gallery-grid__item {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    background: #f3f4f6;
}
.tia-gallery-grid__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.tia-gallery-grid__item:hover img { transform: scale(1.05); }

/* Tags */
.tia-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}
.tia-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #4b5563 !important;
    text-decoration: none !important;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}
.tia-tag:hover { background: var(--primary, #ED1E79); color: #fff !important; }

/* Author card */
.tia-single__author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255,43,106,0.04), rgba(255,215,0,0.04));
    border: 1px solid rgba(255,43,106,0.10);
    border-radius: 16px;
    margin: 32px 0 56px;
}
.tia-single__author-card-avatar {
    border-radius: 50%;
    flex: 0 0 72px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(255,43,106,0.18);
}
.tia-single__author-card-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary, #ED1E79);
    font-weight: 700;
}
.tia-single__author-card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 800;
    margin: 4px 0 8px;
    color: #0a0a0a;
}
.tia-single__author-card-bio {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Related row */
.tia-single__related {
    background: #f8f9fb;
    padding: 64px 0 80px;
    margin-top: 24px;
}
.tia-single__related .tia-single__container { max-width: 1200px; }

.tia-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.tia-acard {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: transform .35s, box-shadow .35s;
    border: 1px solid rgba(0,0,0,0.04);
}
.tia-acard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(255,43,106,0.14);
}
.tia-acard__media {
    display: block;
    aspect-ratio: 16 / 10;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.tia-acard__cat {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(255,43,106,0.95);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.tia-acard__body { padding: 18px 20px 22px; }
.tia-acard__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 10px;
}
.tia-acard__title a {
    color: #0a0a0a !important;
    text-decoration: none !important;
}
.tia-acard:hover .tia-acard__title a { color: var(--primary, #ED1E79) !important; }
.tia-acard__meta {
    display: flex; gap: 8px;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 640px) {
    .tia-single__hero { aspect-ratio: 16 / 10; }
    .tia-single__head { padding: 32px 0 24px; }
    .tia-single__byline { flex-direction: column; align-items: flex-start; }
    .tia-single__body { font-size: 17px; padding: 28px 0; }
    .tia-single__body p:first-of-type::first-letter { font-size: 48px; }
    .tia-single__author-card { flex-direction: column; text-align: center; align-items: center; padding: 24px 18px; }
    .tia-single__author-card-avatar { flex-basis: auto; }
}

/* v15.13: bullet-proof loader hide — runs even if no JS, on any Elementor body */
body.elementor-page #pageLoader,
body.elementor-template-canvas #pageLoader,
body.single-tia_article.elementor-page #pageLoader,
.elementor-location-single ~ #pageLoader,
#pageLoader.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transition: opacity 0.25s ease !important;
}
/* Final nuclear option: kill it after 1s if it's still in the DOM */
@keyframes tiaForceLoaderHide {
    0%   { opacity: 1; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
#pageLoader { animation: tiaForceLoaderHide 1s 1.2s forwards; }

/* ==========================================================================
   Talk In Arabia: Complete Custom Header Layout (Desktop 1512px)
   ========================================================================== */

/* Main Header Wrapper - Forces stickiness, visibility, and full width */
#mainHeader.site-header {
  width: 100% !important;
  max-width: 100% !important;
  background: #ffffff !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  box-sizing: border-box !important;
  overflow: visible !important; /* CRITICAL: Allows search dropdowns to render */
}

/* Inner Centered Container - Set to 1512px max-width */
#mainHeader .site-header__container {
  max-width: 1512px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 5px 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  overflow: visible !important; /* CRITICAL: Allows search panel to expand out of it */
}

/* Flex Columns */
#mainHeader .site-header__column {
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  overflow: visible !important; /* CRITICAL */
}

.logo-column {
  width: 25% !important;
  justify-content: flex-start !important;
}

.nav-column {
  width: 50% !important;
  justify-content: center !important;
}

.actions-column {
  width: 25% !important;
  justify-content: flex-end !important;
  gap: 20px !important;
}

/* Logo Sizing */
#mainHeader .site-header__logo img {
  max-height: 48px !important;
  width: auto !important;
  display: block !important;
}
/* Custom Logo size limit */
#mainHeader .site-header__logo img,
#mainHeader .site-header__logo .custom-logo {
  max-width: 250px !important;
  max-height: 46px !important; /* Ensures the header stays slim vertically */
  width: auto !important;
  height: auto !important;
  display: block !important;
}
/* Reset and restrict the custom logo container width */
.logo-column a.custom-logo-link,
.logo-column a.site-header__logo {
  display: block !important;
  max-width: 250px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Force the logo image to scale proportionally inside the 250px limit */
.logo-column img.custom-logo,
.logo-column .site-header__logo img {
  max-width: 250px !important;
  width: 100% !important;
  height: auto !important;
  max-height: 48px !important; /* Keeps the header beautifully slim */
  object-fit: contain !important;
  display: block !important;
}
/* Reset theme nav container overrides */
#mainHeader .site-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

/* Primary Desktop Menu Styling */
#mainHeader .site-nav__list {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 32px !important;
}

#mainHeader .site-nav__list li a {
  text-decoration: none !important;
  color: #1e1e1e !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: color 0.2s ease !important;
}

#mainHeader .site-nav__list li a:hover {
  color: #ed1e79 !important; /* Pink theme color */
}

/* Ensure search widget behaves relative to search column */
.site-header__search {
  position: relative !important;
  overflow: visible !important;
}

/* ==========================================================================
   Mobile Hamburger & Slide-out Drawer
   ========================================================================== */
.mobile-menu-toggle {
  display: none; /* Hidden on desktop */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  z-index: 100;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.03);
}

.hamburger-box {
  width: 20px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #1e1e1e;
  border-radius: 4px;
  position: absolute;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -6px;
}

.hamburger-inner::after {
  bottom: -6px;
}

/* Mobile Slide-out Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.is-active {
  pointer-events: auto;
  opacity: 1;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85%;
  background: #ffffff;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  box-sizing: border-box;
}

.mobile-drawer.is-active .mobile-drawer__content {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.mobile-drawer__title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1e1e1e;
}

.mobile-drawer__close {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #5a5a5a;
  cursor: pointer;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer__list li a {
  text-decoration: none;
  color: #1e1e1e;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}

.mobile-drawer__list li a:hover {
  color: #ed1e79;
}
/* Safety overrides to force visibility */
.mobile-drawer__nav,
.mobile-drawer__nav * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Explicit mobile drawer list and link styles */
.mobile-drawer__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.mobile-drawer__list li {
  display: block !important;
  width: 100% !important;
}

.mobile-drawer__list li a {
  text-decoration: none !important;
  color: #1e1e1e !important; /* Force dark gray visible links */
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  display: block !important;
  padding: 8px 0 !important;
  transition: color 0.2s ease !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.mobile-drawer__list li a:hover {
  color: #ed1e79 !important; /* Pink hover color */
}
/* ==========================================================================
   Responsive Mobile View overrides
   ========================================================================== */
@media (max-width: 991px) {
  #mainHeader .nav-column {
    display: none !important; /* Hide primary inline nav menu */
  }
  
  .mobile-menu-toggle {
    display: inline-flex !important; /* Show hamburger menu toggle */
  }
  
  #mainHeader .logo-column {
    width: auto !important;
    flex-grow: 1 !important;
  }
  
  #mainHeader .actions-column {
    width: auto !important;
  }
}