        .side-panel-mobile {
            display: none;
        }

        .news-slider-card {
            text-decoration: none;
            color: inherit;
            min-width: 300px;
            max-width: 300px;
            flex-shrink: 0;
        }
        .news-slider-card-inner {
            cursor: pointer;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: background 0.15s ease;
        }
        .news-slider-card:hover .news-slider-card-inner {
            background: #f8f9fa;
        }
        .news-slider-card-img {
            width: 100%;
            height: 170px;
            overflow: hidden;
            background: #f1f3f4;
            flex-shrink: 0;
        }

        @keyframes spin { to { transform: rotate(360deg); } }

        .claim-btn {
            padding: 14px 32px;
            background: #fff;
            color: #000;
            border: 2px solid #fff;
            border-radius: 0;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: color 0.4s ease, border-color 0.4s ease;
        }
        .claim-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #000;
            z-index: -1;
            transition: width 0.4s ease;
        }
        .claim-btn:hover {
            color: #fff;
            border-color: #fff;
        }
        .claim-btn:hover::before {
            width: 100%;
        }

        /* Hero */
        .app-hero {
            background: #1a1d20;
            display: flex;
            align-items: flex-end;
            min-height: 420px;
            position: relative;
            overflow: visible;
        }

        .app-hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 48px 40px;
            display: flex;
            align-items: flex-end;
            gap: 40px;
            width: 100%;
            position: relative;
            z-index: 91;
        }

        .app-hero-info {
            flex: 1;
            min-width: 0;
            max-width: 50%;
        }

        .app-hero-name {
            font-family: 'Google Sans', sans-serif;
            font-size: 44px;
            font-weight: 400;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.1;
        }

        .app-hero-dev {
            font-size: 15px;
            color: #01875f;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .app-hero-meta {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 24px;
        }

        .app-hero-stats {
            display: flex;
            align-items: center;
            gap: 0;
            margin-bottom: 24px;
        }

        .app-hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 24px;
            border-right: 1px solid rgba(255,255,255,0.12);
        }

        .app-hero-stat:first-child {
            padding-left: 0;
        }

        .app-hero-stat:last-child {
            border-right: none;
        }

        .app-hero-stat-value {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .app-hero-stat-value .material-symbols-outlined {
            font-size: 14px;
            color: #fff;
        }

        .app-hero-stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            margin-top: 2px;
        }

        .app-hero-stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 6px;
            overflow: hidden;
            background: url('obs-icon.webp') center/cover no-repeat;
        }

        .app-hero-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 16px;
        }

        .app-hero-install-wrap {
            position: relative;
            z-index: 1;
        }
        /* When the dropdown is open, lift the whole wrap above the
           flag row (which is z-index:1500 inline for its tooltips).
           When closed, the wrap stays low so flag tooltips overlay
           the Interested button as designed. */
        .app-hero-install-wrap.open {
            z-index: 3000;
        }

        .app-hero-install {
            padding: 14px 16px;
            background: #e8a825;
            color: #000;
            border: none;
            border-radius: 0;
            font-size: 15px;
            font-weight: 400;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.15s;
            display: flex;
            align-items: center;
            justify-content: space-between;
            letter-spacing: 0.3px;
            box-shadow: none;
            width: 220px;
        }

        .app-hero-install:hover {
            background: #d4971e;
            color: #000;
        }

        .app-hero-install .material-symbols-outlined {
            font-size: 20px;
            transition: transform 0.2s;
        }

        .app-hero-install-wrap.open .app-hero-install .material-symbols-outlined {
            transform: rotate(180deg);
        }

        .app-hero-install-wrap.open .app-hero-install {
            background: #d4971e;
            color: #000;
        }

        .app-hero-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            border-radius: 0;
            box-shadow: 0 4px 24px rgba(0,0,0,0.2);
            display: none;
            z-index: 2000;
            overflow: hidden;
        }

        .app-hero-install-wrap.open .app-hero-dropdown {
            display: block;
        }

        .app-hero-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            font-size: 14px;
            font-weight: 400;
            color: #1a1a1a;
            text-decoration: none;
            transition: background 0.15s;
        }

        .app-hero-dropdown a:hover {
            background: #f5f5f5;
        }

        .app-hero-dropdown a .material-symbols-outlined {
            font-size: 20px;
            color: #01875f;
        }

        .app-hero-dropdown a:not(:last-child) {
            border-bottom: 1px solid #f0f0f0;
        }

        .app-hero-action-link {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #fff;
            font-weight: 500;
            cursor: pointer;
            transition: opacity 0.15s;
            background: none;
            border: none;
            font-family: inherit;
        }

        .app-hero-action-link:hover {
            opacity: 0.7;
        }

        .app-hero-action-link .material-symbols-outlined {
            font-size: 20px;
        }

        .app-hero-device {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .app-hero-device .material-symbols-outlined {
            font-size: 18px;
        }

        .app-hero-visual {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 55%;
            overflow: hidden;
            z-index: 1;
        }

        .app-hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .app-hero-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: -10%;
            bottom: 0;
            width: 70%;
            background: linear-gradient(to right, #1a1d20 0%, #1a1d20 30%, rgba(26,29,32,0.7) 50%, rgba(26,29,32,0.3) 70%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        .app-hero-trailer {
            position: absolute;
            bottom: 24px;
            right: 24px;
            padding: 10px 24px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: inherit;
            transition: background 0.15s;
            z-index: 3;
        }

        .app-hero-trailer:hover {
            background: rgba(0,0,0,0.9);
        }

        .app-hero-trailer .material-symbols-outlined {
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .app-hero {
                min-height: 320px;
            }

            .app-hero-inner {
                padding: 32px 20px;
            }

            .app-hero-name {
                font-size: 28px;
            }

            .app-hero-info {
                max-width: 100%;
                box-sizing: border-box;
                word-break: break-word;
            }

            .app-hero-visual {
                display: none;
            }

            .app-hero-actions {
                display: flex;
                gap: 12px;
            }

            .app-hero-install-wrap {
                flex: 0 0 70%;
            }

            .app-hero-install {
                width: 100%;
            }

            .app-hero-action-link {
                flex: 1;
                justify-content: center;
            }

            .app-hero-actions {
                flex-wrap: wrap;
            }
        }

        .app-detail-page {
            max-width: 1100px;
            margin: 0 auto;
            padding: 24px 40px 60px;
            box-sizing: border-box;
            width: 100%;
        }

        /* Breadcrumb */
        .app-breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .app-breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }

        .app-breadcrumb a:hover {
            text-decoration: underline;
        }

        /* App Header */
        .app-header {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
        }

        .app-header-icon {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .app-header-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .app-header-info {
            flex: 1;
        }

        .app-header-name {
            font-family: 'Google Sans', sans-serif;
            font-size: 28px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .app-header-dev {
            font-size: 14px;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .app-header-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }

        .app-header-meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .app-header-meta-item .material-symbols-outlined {
            font-size: 14px;
        }

        /* Install area */
        .app-install-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .app-install-btn {
            padding: 12px 48px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: background 0.15s;
        }

        .app-install-btn:hover {
            background: var(--accent-hover);
        }

        .app-install-actions {
            display: flex;
            gap: 8px;
        }

        .app-action-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.15s;
        }

        .app-action-icon:hover {
            background: var(--hover);
        }

        /* Stats row */
        .app-stats {
            display: flex;
            gap: 0;
            border-top: 1px solid var(--divider-light);
            border-bottom: 1px solid var(--divider-light);
            padding: 16px 0;
            margin-bottom: 32px;
        }

        .app-stat {
            flex: 1;
            text-align: center;
            border-right: 1px solid var(--divider-light);
            padding: 8px 0;
        }

        .app-stat:last-child {
            border-right: none;
        }

        .app-stat-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .app-stat-value .material-symbols-outlined {
            font-size: 16px;
        }

        .app-stat-label {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Screenshots */
        .app-screenshots {
            margin-bottom: 40px;
        }

        .app-screenshots-scroll {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .app-screenshots-scroll::-webkit-scrollbar {
            height: 0;
        }

        .app-screenshot-img {
            width: 200px;
            height: 360px;
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .app-screenshot-img .material-symbols-outlined {
            font-size: 40px;
            color: rgba(255,255,255,0.4);
        }

        /* About section */
        .app-about {
            margin-bottom: 40px;
            overflow: hidden;
            max-width: 100%;
        }

        .app-section-title {
            font-family: 'Google Sans', sans-serif;
            font-size: 20px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .app-about-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-height: 120px;
            overflow: hidden;
            position: relative;
        }

        .app-about-text.expanded {
            max-height: none;
        }

        .app-about-text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(transparent, #fff);
        }

        .app-about-text.expanded::after {
            display: none;
        }

        .app-about-toggle {
            color: var(--accent);
            font-size: 14px;
            font-weight: 500;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            margin-top: 8px;
            font-family: inherit;
        }

        .app-about-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .app-about-tag {
            padding: 6px 14px;
            border: 1px solid var(--divider);
            border-radius: 100px;
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.15s;
        }

        .app-about-tag:hover {
            background: var(--hover);
        }

        /* Ratings */
        .app-ratings {
            margin-bottom: 40px;
        }

        .app-ratings-top {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .app-rating-big {
            text-align: center;
        }

        .app-rating-big-number {
            font-size: 52px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1;
        }

        .app-rating-stars {
            display: flex;
            gap: 2px;
            justify-content: center;
            margin: 8px 0 4px;
            color: var(--accent);
            font-size: 14px;
        }

        .app-rating-count {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .app-rating-bars {
            flex: 1;
            max-width: 300px;
        }

        .app-rating-bar-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .app-rating-bar-label {
            font-size: 13px;
            color: var(--text-secondary);
            width: 12px;
            text-align: right;
        }

        .app-rating-bar-track {
            flex: 1;
            height: 12px;
            background: var(--divider-light);
            border-radius: 6px;
            overflow: hidden;
        }

        .app-rating-bar-fill {
            height: 100%;
            background: var(--accent);
            border-radius: 6px;
        }

        /* Reviews */
        .app-reviews {
            margin-bottom: 40px;
        }

        .app-review {
            padding: 16px 0;
            border-bottom: 1px solid var(--divider-light);
        }

        .app-review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .app-review-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--divider-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .app-review-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .app-review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .app-review-stars {
            display: flex;
            gap: 1px;
            color: var(--accent);
            font-size: 12px;
        }

        .app-review-date {
            font-size: 12px;
            color: var(--text-hint);
        }

        .app-review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* What's New */
        .app-whats-new {
            margin-bottom: 40px;
        }

        .app-whats-new-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Data Safety */
        .app-data-safety-section {
            margin-bottom: 40px;
        }

        .app-data-safety {
            padding: 20px 24px;
            border: 1px solid var(--divider-light);
            border-radius: 0;
        }

        .app-data-row {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 12px 0;
        }

        .app-data-row:not(:last-child) {
            border-bottom: 1px solid var(--divider-light);
        }

        .app-data-icon {
            color: var(--text-secondary);
            flex-shrink: 0;
        }

        .app-data-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Dev info */
        .app-dev-info {
            margin-bottom: 40px;
        }

        .app-dev-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .app-dev-row .material-symbols-outlined {
            font-size: 20px;
            color: var(--text-hint);
        }

        /* Similar apps */
        .app-similar {
            margin-bottom: 40px;
        }

        .app-similar-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .app-similar-scroll::-webkit-scrollbar {
            height: 0;
        }

        .app-similar-item {
            min-width: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
            cursor: pointer;
        }

        .app-similar-icon {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .app-similar-icon .material-symbols-outlined {
            font-size: 28px;
            color: #fff;
        }

        .app-similar-name {
            font-size: 12px;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .app-similar-rating {
            font-size: 11px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .app-similar-rating .material-symbols-outlined {
            font-size: 11px;
        }

        /* Events & Offers Card */
        .events-offer-card {
            display: flex;
            border-radius: 0;
            overflow: hidden;
            background: #000;
            cursor: pointer;
            transition: box-shadow 0.2s;
        }

        .events-offer-card:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .events-offer-text {
            flex: 1;
            padding: 24px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .events-offer-image {
            width: 280px;
            min-height: 180px;
            flex-shrink: 0;
            border-radius: 6px;
            margin: 8px 8px 8px 0;
        }

        @media (max-width: 768px) {
            .events-offer-card {
                flex-direction: column;
                padding-bottom: 20px;
            }

            .events-offer-card .claim-btn {
                margin: 0 20px;
                align-self: flex-start;
            }

            .events-offer-image {
                width: 100%;
                min-height: 160px;
                margin: 0;
                border-radius: 0;
            }

            .events-offer-text {
                padding: 20px;
            }
        }

        /* About Popup */
        .about-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 640px;
            max-height: min(80vh, calc(100vh - 120px));
            background: #fff;
            border-radius: 0;
            display: flex;
            flex-direction: column;
            z-index: 9999;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(0,0,0,0.2);
        }
        .about-close-mobile {
            display: none;
        }
        .about-close-desktop {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .about-popup {
                top: 0;
                left: 0;
                transform: none;
                width: 100%;
                max-width: 100%;
                max-height: 100%;
                height: 100%;
                border-radius: 0;
                box-shadow: none;
            }
            .about-close-mobile {
                display: none;
            }
            .about-close-desktop {
                display: flex;
            }
        }

        /* Right Side Panel */
        .detail-side-panel {
            width: 320px;
            min-width: 320px;
            flex-shrink: 0;
            position: sticky;
            top: calc(var(--topbar-height, 100px) + var(--panel-height, 0px) + 44px + 16px);
            align-self: flex-start;
        }

        .side-panel-section {
            padding-bottom: 12px;
            margin-bottom: 0;
            border-bottom: 1px solid var(--divider-light);
        }

        .side-panel-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .side-panel-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            margin-bottom: 0;
            padding-top: 12px;
            font-family: inherit;
        }

        .side-panel-support-body {
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .side-panel-support-body.collapsed {
            display: none;
        }

        .side-panel-link {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 12px 0;
            text-decoration: none;
            color: #202124;
            font-size: 14px;
            font-weight: 400;
            transition: opacity 0.15s;
        }

        .side-panel-link:hover {
            opacity: 0.7;
        }

        .side-panel-link .material-symbols-outlined {
            font-size: 22px;
            color: #5f6368;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .side-panel-similar-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .side-panel-similar-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 0;
            cursor: pointer;
            transition: opacity 0.15s;
        }

        .side-panel-similar-item:hover {
            opacity: 0.8;
        }

        .side-panel-similar-icon {
            width: 52px;
            height: 52px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .side-panel-similar-icon .material-symbols-outlined {
            font-size: 24px;
            color: #fff;
        }

        .side-panel-similar-name {
            font-size: 14px;
            font-weight: 400;
            color: #202124;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .side-panel-similar-rating {
            font-size: 12px;
            color: #5f6368;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .side-panel-similar-rating .material-symbols-outlined {
            font-size: 12px;
        }

        @media (max-width: 1024px) {
            .detail-side-panel {
                position: static;
                width: 100%;
                min-width: 0;
                display: none;
            }

            .side-panel-mobile {
                display: block;
            }

            .app-detail-page {
                flex-direction: column !important;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .app-detail-page {
                padding: 16px 16px 40px;
            }

            .app-detail-page > div {
                max-width: 100% !important;
                width: 100% !important;
                min-width: 0 !important;
            }

            .app-about {
                max-width: 100%;
            }

            .app-about-text {
                font-size: 13px;
                line-height: 1.7;
                word-wrap: break-word;
                overflow-wrap: break-word;
                white-space: normal;
            }

            .app-about-tags {
                gap: 6px;
                overflow-x: auto;
            }

            .app-about-tag {
                padding: 5px 12px;
                font-size: 12px;
                flex-shrink: 0;
            }

            .app-whats-new-text {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .app-header {
                gap: 16px;
            }

            .app-header-name {
                font-size: 22px;
            }

            .app-header-icon {
                width: 64px;
                height: 64px;
            }

            .app-screenshot-img {
                width: 160px;
                height: 290px;
            }

            .app-ratings-top {
                flex-direction: column;
                gap: 24px;
            }

            .app-rating-bars {
                max-width: 100%;
                width: 100%;
            }
        }

        /* Sponsor Modal */
        .sponsor-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            width: 1040px;
            max-width: 95vw;
            max-height: 90vh;
            overflow-y: auto;
            z-index: 1001;
            display: flex;
            flex-direction: column;
        }

        .sponsor-modal-body {
            display: flex;
            flex: 1;
            min-height: 0;
        }

        .sponsor-modal-tiers {
            flex: 1;
            overflow-y: auto;
            padding: 24px 28px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .sponsor-modal-form {
            width: 300px;
            border-left: 1px solid #e0e0e0;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            flex-shrink: 0;
        }

        .sponsor-tier-card {
            border: 1px solid #e0e0e0;
            padding: 16px 20px;
            display: flex;
            gap: 20px;
            cursor: pointer;
            transition: all 0.15s;
        }

        .sponsor-tier-info {
            flex-shrink: 0;
            width: 200px;
        }

        .sponsor-tier-benefits {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px 12px;
            align-content: start;
        }

        @media (max-width: 768px) {
            .sponsor-modal {
                top: 0;
                left: 0;
                transform: none;
                width: 100%;
                max-width: 100%;
                max-height: 100%;
                height: 100%;
            }

            .sponsor-modal-body {
                flex-direction: column;
            }

            .sponsor-modal-tiers {
                padding: 16px;
                overflow-y: visible;
            }

            .sponsor-modal-form {
                width: 100%;
                border-left: none;
                border-top: 1px solid #e0e0e0;
                padding: 20px 16px;
            }

            .sponsor-tier-card {
                flex-direction: column;
                gap: 12px;
                padding: 14px 16px;
            }

            .sponsor-tier-info {
                width: 100%;
            }

            .sponsor-tier-benefits {
                grid-template-columns: 1fr;
            }
        }

        /* ── Primary Stakeholders ── */
        .stakeholders-section {
            background: #f8f9fa;
            padding: 56px 32px 52px;
        }

        .stakeholders-header {
            margin-bottom: 32px;
        }

        .stakeholders-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #c9a84c;
            margin-bottom: 8px;
        }

        .stakeholders-title {
            font-size: 22px;
            font-weight: 700;
            color: #202124;
            margin: 0 0 4px 0;
            font-family: 'Google Sans', sans-serif;
        }

        .stakeholders-rule {
            display: none;
        }

        .stakeholders-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        .stakeholder-card {
            background: #fff;
            border-radius: 12px;
            padding: 28px 24px 32px;
            border: 1px solid #e8eaed;
            display: flex;
            flex-direction: column;
            gap: 0;
            transition: box-shadow 0.2s, border-color 0.2s;
        }

        .stakeholder-card:hover {
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-color: #d0d3d8;
        }

        .stakeholder-icon-wrap {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .stakeholder-icon {
            font-size: 28px;
            color: #c9a84c;
        }

        .stakeholder-label {
            font-size: 16px;
            font-weight: 700;
            color: #202124;
            margin-bottom: 12px;
            line-height: 1.3;
            letter-spacing: 0;
            text-transform: none;
        }

        .stakeholder-desc {
            font-size: 14px;
            color: #5f6368;
            line-height: 1.7;
        }

        .stakeholders-tagline {
            text-align: center;
            font-size: 14px;
            color: #80868b;
            line-height: 1.8;
            max-width: 680px;
            margin: 0 auto;
            border-top: 1px solid #e8eaed;
            padding-top: 28px;
        }

        @media (max-width: 900px) {
            .stakeholders-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 560px) {
            .stakeholders-section {
                padding: 40px 16px 40px;
            }
            .stakeholders-title {
                font-size: 19px;
            }
            .stakeholders-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .stakeholder-card {
                padding: 28px 20px;
            }
        }

        /* ── Attendees Hero Stat ── */
        @keyframes statFadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .stat-fade-in {
            animation: statFadeUp 0.7s ease both;
        }
        .stat-fade-delay {
            animation-delay: 0.3s;
        }

        .attendees-stat-section {
            background: #f0f0f0;
            padding: 80px 32px 72px;
            text-align: center;
        }

        .attendees-stat-headline {
            font-size: 20px;
            font-weight: 600;
            color: #202124;
            line-height: 1.5;
            max-width: 680px;
            margin: 0 auto 56px;
        }

        .attendees-stat-number {
            font-size: clamp(120px, 22vw, 240px);
            font-weight: 400;
            color: #c9a84c;
            line-height: 0.9;
            letter-spacing: 0.01em;
            font-family: 'Bebas Neue', 'Google Sans', sans-serif;
            margin-bottom: 28px;
        }

        .attendees-stat-label {
            font-size: 18px;
            font-weight: 600;
            color: #202124;
            letter-spacing: 0.02em;
        }

        @media (max-width: 560px) {
            .attendees-stat-section {
                padding: 56px 20px 52px;
            }
            .attendees-stat-headline {
                font-size: 17px;
                margin-bottom: 40px;
            }
            .attendees-stat-label {
                font-size: 16px;
            }
        }

        /* ── Summit Sub-Nav ── */
        .summit-subnav {
            position: sticky;
            top: var(--topbar-height, 100px);
            z-index: 90;
            background: #fff;
            border-bottom: 1px solid #e8eaed;
        }

        .summit-subnav-inner {
            display: flex;
            align-items: center;
            gap: 0;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        @media (max-width: 768px) {
            .summit-subnav-inner { padding: 0; }
        }

        .summit-subnav-inner::-webkit-scrollbar { display: none; }

        .summit-subnav-link {
            display: inline-flex;
            align-items: center;
            padding: 0 20px;
            height: 44px;
            font-size: 14px;
            font-weight: 500;
            color: #5f6368;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.15s, background 0.15s;
        }

        .summit-subnav-link:hover {
            color: #202124;
            background: #f1f3f4;
        }

        .summit-subnav-link.active {
            background: #000;
            color: #fff;
            font-weight: 600;
        }

        /* ── Bloomberg Stats ── */
        .summit-bloomberg-stats {
            padding: 40px 0 32px;
            border-top: 1px solid #e8eaed;
            margin-top: 32px;
        }

        .summit-bloomberg-headline {
            font-size: 18px;
            font-weight: 700;
            color: #202124;
            line-height: 1.4;
            margin: 0 0 20px 0;
            max-width: 680px;
        }

        .summit-bloomberg-rule {
            border: none;
            border-top: 1px solid #e8eaed;
            margin: 0 0 28px 0;
        }

        .summit-bloomberg-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 28px;
        }

        .summit-bloomberg-grid-7 {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 768px) {
            .summit-bloomberg-grid,
            .summit-bloomberg-grid-7 {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .summit-bloomberg-grid,
            .summit-bloomberg-grid-7 {
                grid-template-columns: 1fr;
            }
        }

        .summit-bloomberg-stat {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }

        .summit-bloomberg-number {
            font-family: 'Inter', sans-serif;
            font-size: clamp(52px, 7vw, 80px);
            font-weight: 700;
            line-height: 1;
            color: #0760e0;
            letter-spacing: -0.02em;
        }

        .summit-bloomberg-pct {
            font-size: 1em;
            font-weight: 700;
            vertical-align: baseline;
        }

        .summit-bloomberg-label {
            font-size: 14px;
            font-weight: 400;
            color: #5f6368;
            line-height: 1.5;
            max-width: 240px;
        }

        .summit-bloomberg-desc {
            font-size: 13px;
            color: #5f6368;
            line-height: 1.5;
            max-width: 260px;
        }

        .summit-bloomberg-source {
            font-size: 11px;
            color: #9aa0a6;
            margin: 0;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        /* ── Strategic Phases ── */
        .strategic-phases-section {
            margin: 32px 0;
        }

        .strategic-phases-bg {
            background: linear-gradient(160deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
            border-radius: 0;
            padding: 48px 32px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .strategic-phases-bg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .strategic-phases-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(28px, 5vw, 42px);
            letter-spacing: 0.06em;
            color: #c9a84c;
            margin: 0 0 10px;
        }

        .strategic-phases-sub {
            font-size: 13px;
            color: #9aa0a6;
            margin: 0 0 36px;
        }

        .strategic-phases-grid {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .strategic-phase-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1 1 140px;
            max-width: 160px;
            padding: 20px 12px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(201,168,76,0.2);
            border-radius: 0;
            transition: background 0.2s, border-color 0.2s;
        }

        .strategic-phase-card:hover {
            background: rgba(201,168,76,0.08);
            border-color: rgba(201,168,76,0.5);
        }

        .strategic-phase-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(201,168,76,0.15);
            border: 1px solid rgba(201,168,76,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 4px;
        }

        .strategic-phase-icon .material-symbols-outlined {
            font-size: 22px;
            color: #c9a84c;
        }

        .strategic-phase-num {
            font-size: 11px;
            font-weight: 700;
            color: #c9a84c;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .strategic-phase-label {
            font-size: 13px;
            color: #e8eaed;
            line-height: 1.4;
            text-align: center;
        }

        .strategic-phases-footer {
            font-size: 12px;
            color: #5f6368;
            margin: 32px 0 0;
            font-style: italic;
        }

        @media (max-width: 600px) {
            .strategic-phases-grid { gap: 10px; }
            .strategic-phase-card { flex-basis: calc(50% - 10px); max-width: none; }
            .strategic-phases-bg { padding: 36px 20px 28px; }
        }

        /* ── Schedule ── */
        .schedule-tabs {
            display: flex;
            gap: 0;
            border-bottom: 1px solid #e8eaed;
            margin-bottom: 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .schedule-tabs::-webkit-scrollbar { display: none; }

        .schedule-tab {
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            color: #5f6368;
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.15s, border-color 0.15s;
            margin-bottom: -1px;
            flex-shrink: 0;
        }

        .schedule-tab:hover { color: #202124; }
        .schedule-tab.active { color: #202124; border-bottom-color: #202124; font-weight: 600; }

        .schedule-table {
            border: 1px solid #e8eaed;
            border-top: none;
        }

        .schedule-row {
            display: grid;
            grid-template-columns: 64px 28px 130px 1fr;
            align-items: center;
            gap: 0 12px;
            padding: 10px 16px;
            border-bottom: 1px solid #f1f3f4;
            font-size: 13px;
            transition: background 0.1s;
        }

        .schedule-row:last-child { border-bottom: none; }
        .schedule-row:hover { background: #f8f9fa; }

        .schedule-date {
            color: #5f6368;
            font-size: 12px;
            white-space: nowrap;
        }

        .schedule-flag {
            font-size: 18px;
            line-height: 1;
        }

        .schedule-country {
            font-weight: 600;
            color: #202124;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .schedule-event {
            color: #5f6368;
        }

        @media (max-width: 540px) {
            .schedule-row {
                grid-template-columns: 52px 24px 1fr;
                grid-template-rows: auto auto;
                gap: 0 8px;
                padding: 10px 16px;
            }
            .schedule-country {
                font-size: 13px;
            }
            .schedule-event {
                grid-column: 1 / -1;
                padding-top: 4px;
                font-size: 12px;
                color: #5f6368;
            }
            .schedule-date {
                font-size: 11px;
            }
        }

        /* ── Feature Slider ── */
        .feat-slider-section {
            background: #fff;
            padding: 64px 0 48px;
        }

        .feat-slider-title {
            font-size: clamp(20px, 3vw, 30px);
            font-weight: 700;
            color: #202124;
            text-align: center;
            max-width: 720px;
            margin: 0 auto 48px;
            padding: 0 24px;
            line-height: 1.3;
            font-family: 'Google Sans', sans-serif;
        }

        .feat-slider-wrap {
            display: flex;
            gap: 20px;
            overflow-x: scroll;
            overflow-y: visible;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 13% 12px;
        }

        .feat-slider-wrap::-webkit-scrollbar { display: none; }

        .feat-slider-card {
            background: #111;
            border-radius: 16px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            flex: 0 0 74%;
            height: 360px;
            cursor: pointer;
            opacity: 0.4;
            transform: scale(0.97);
            transition: opacity 0.4s, transform 0.4s;
        }

        .feat-slider-card.active {
            opacity: 1;
            transform: scale(1);
            cursor: default;
        }

        .feat-slider-text {
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
        }

        .feat-slider-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            font-family: 'Google Sans', sans-serif;
            margin: 0;
        }

        .feat-slider-card-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.75;
            margin: 0;
        }

        .feat-slider-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0.9;
        }

        .feat-slider-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #f1f3f4;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .feat-slider-arrow:hover { background: #e0e0e0; }
        .feat-slider-arrow .material-symbols-outlined { font-size: 20px; color: #202124; }

        .feat-slider-controls {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            margin: 20px 15% 0;
        }

        .feat-slider-dots {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .feat-dot {
            position: relative;
            width: 32px;
            height: 8px;
            border-radius: 4px;
            background: #e0e0e0;
            border: none;
            cursor: pointer;
            overflow: hidden;
            padding: 0;
            transition: background 0.2s;
        }

        .feat-dot.active {
            background: #d0d0d0;
            width: 48px;
        }

        .feat-dot-bar {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: #202124;
            border-radius: 4px;
            transition: width 50ms linear;
        }

        .feat-slider-pause {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f1f3f4;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .feat-slider-pause:hover { background: #e0e0e0; }

        @media (max-width: 768px) {
            .feat-slider-wrap { padding: 8px 8% 12px; }
            .feat-slider-card { grid-template-columns: 1fr; flex: 0 0 84%; height: auto; min-height: 240px; }
            .feat-slider-visual { display: none; }
            .feat-slider-text { padding: 28px 20px; }
            .feat-slider-card-title { font-size: 18px; }
            .feat-slider-controls { margin: 16px 9% 0; }
        }
