        .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;
        }
        .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: 10;
        }

        .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.png') 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: 999;
        }

        .app-hero-install {
            padding: 14px 16px;
            background: #000;
            color: #fff;
            border: none;
            border-radius: 0;
            font-size: 15px;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
            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: #fff;
            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: #fff;
            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: 999;
            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: 80vh;
            background: #fff;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            z-index: 9999;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(0,0,0,0.2);
        }

        @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;
            }
        }

        /* 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) + 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;
            }
        }
