        /* ===== CSS Reset & Variables ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #00D084;
            --primary-dark: #00B871;
            --primary-light: #00E896;
            --secondary: #6C5CE7;
            --secondary-dark: #5B4BD5;
            --bg-dark: #0F0F23;
            --bg-darker: #0A0A1A;
            --bg-card: #1A1A2E;
            --bg-card-hover: #252542;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0B0;
            --text-muted: #6B6B80;
            --border: #2A2A40;
            --border-light: #3A3A55;
            --star: #FFD700;
            --danger: #FF6B6B;
            --success: #00D084;
            --warning: #F39C12;
            --gradient: linear-gradient(135deg, #00D084 0%, #00B871 100%);
            --gradient-secondary: linear-gradient(135deg, #6C5CE7 0%, #5B4BD5 100%);
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            --shadow-primary: 0 10px 30px rgba(0, 208, 132, 0.3);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: inherit;
        }

        /* ===== Header ===== */
        .header {
            position: sticky;
            top: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 0 20px;
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            gap: 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.2s;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-primary);
        }

        .nav-menu {
            display: flex;
            gap: 8px;
        }

        .mobile-search-box {
            display: none;
            margin: 16px 0;
        }

        .mobile-search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 14px;
            transition: all 0.2s;
        }

        .mobile-search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
        }

        .mobile-search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        .nav-link {
            padding: 10px 22px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s;
            color: var(--text-secondary);
        }

        .nav-link:hover {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        .nav-link.active {
            background: var(--bg-card);
            color: var(--primary);
        }

        .search-box {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 20px 12px 48px;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--bg-card-hover);
        }

        .search-input::placeholder {
            color: var(--text-muted);
        }

        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
        }

        .mobile-menu-btn {
            display: none;
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-size: 20px;
            cursor: pointer;
            padding: 10px 14px;
            border-radius: 10px;
            transition: all 0.2s;
        }

        .mobile-menu-btn:hover {
            background: var(--bg-card-hover);
        }

        /* ===== Main Layout ===== */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
        }

        .content-area {
            min-width: 0;
            grid-column: 1;
            grid-row: 1;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            grid-column: 2;
            grid-row: 1 / span 2;
        }

        .comments-section {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid var(--border);
            grid-column: 1;
            grid-row: 2;
        }

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

        .breadcrumb a {
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

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

        .breadcrumb-separator {
            color: var(--text-muted);
            font-size: 12px;
        }

        .breadcrumb-current {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ===== Detail Hero ===== */
        .detail-hero {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 36px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .detail-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, rgba(108, 92, 231, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .detail-hero-inner {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 32px;
            align-items: start;
            position: relative;
        }

        .detail-icon {
            width: 150px;
            height: 150px;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border: 3px solid var(--border);
        }

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

        .detail-info {
            padding-top: 5px;
        }

        .detail-info h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.3;
            letter-spacing: -0.5px;
        }

        .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 20px;
        }

        .detail-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: var(--text-secondary);
        }

        .detail-meta-item strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .detail-meta-item .star-rating {
            color: var(--star);
        }

        .detail-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .detail-tag {
            background: var(--bg-darker);
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border);
            transition: all 0.2s;
        }

        .detail-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .detail-tag.category {
            background: var(--gradient-secondary);
            color: white;
            border: none;
        }

        .detail-tag.hot {
            background: linear-gradient(135deg, #FF6B6B, #FF8E53);
            color: white;
            border: none;
        }

        .detail-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .download-btn {
            background: var(--gradient);
            color: white;
            padding: 18px 48px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 17px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-primary);
            letter-spacing: 0.5px;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 208, 132, 0.4);
        }

        .download-btn:active {
            transform: translateY(-1px);
        }

        /* ===== Screenshots Section ===== */
        .section-wrapper {
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .section-title::before {
            content: '';
            width: 5px;
            height: 28px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .screenshots-scroll {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding: 10px 0 20px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border) transparent;
        }

        .screenshots-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .screenshots-scroll::-webkit-scrollbar-track {
            background: var(--bg-card);
            border-radius: 4px;
        }

        .screenshots-scroll::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }

        .screenshots-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--border-light);
        }

        .screenshot-item {
            flex-shrink: 0;
            width: 320px;
            border-radius: 18px;
            overflow: hidden;
            scroll-snap-align: start;
            cursor: pointer;
            transition: all 0.3s;
            border: 3px solid transparent;
            box-shadow: var(--shadow);
        }

        .screenshot-item:hover {
            transform: scale(1.03);
            border-color: var(--primary);
        }

        .screenshot-item img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        /* ===== Content Sections ===== */
        .content-section {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 24px;
            border: 1px solid var(--border);
        }

        .content-section .section-title {
            margin-bottom: 20px;
        }

        .content-text {
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 15px;
        }

        .content-text p {
            margin-bottom: 18px;
        }

        .content-text p:last-child {
            margin-bottom: 0;
        }

        .content-text h2 {
            color: var(--text-primary);
            font-size: 20px;
            font-weight: 700;
            margin: 32px 0 16px;
        }

        .content-text h3 {
            color: var(--text-primary);
            font-size: 17px;
            font-weight: 600;
            margin: 24px 0 12px;
        }

        .content-text ul,
        .content-text ol {
            margin: 16px 0 16px 28px;
        }

        .content-text li {
            margin-bottom: 10px;
            position: relative;
        }

        .content-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .content-text a {
            color: var(--primary);
            font-weight: 500;
        }

        .content-text a:hover {
            text-decoration: underline;
        }

        /* ===== Info Table ===== */
        .info-table {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            background: var(--bg-darker);
            border-radius: 14px;
            border: 1px solid var(--border);
            transition: border-color 0.2s;
        }

        .info-item:hover {
            border-color: var(--border-light);
        }

        .info-label {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .info-value {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-primary);
            text-align: right;
            word-break: break-word;
            overflow-wrap: break-word;
            min-width: 0;
        }

        .info-value.highlight {
            color: var(--primary);
        }

        /* ===== Related Games ===== */
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 20px;
        }

        .related-card {
            background: var(--bg-darker);
            border-radius: 18px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--border);
            cursor: pointer;
        }

        .related-card:hover {
            background: var(--bg-card-hover);
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0, 208, 132, 0.15);
        }

        .related-card-image {
            width: 90px;
            height: 90px;
            border-radius: 20px;
            overflow: hidden;
            margin: 0 auto 14px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .related-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-card-title {
            font-size: 14px;
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 42px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .related-card-rating {
            font-size: 13px;
            color: var(--star);
            font-weight: 600;
        }

        /* ===== FAQ Section ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-darker);
            border-radius: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .faq-question {
            padding: 16px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            color: var(--text-primary);
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--bg-card-hover);
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question::after {
            content: '+';
            font-size: 20px;
            font-weight: 400;
            color: var(--primary);
            transition: transform 0.3s;
        }

        details[open] .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-question h3 {
            margin: 0;
            padding: 0;
            font-size: inherit;
            font-weight: inherit;
            color: inherit;
            line-height: inherit;
        }

        .faq-answer {
            padding: 0 16px 16px 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 15px;
            border-top: 1px solid transparent;
        }

        details[open] .faq-answer {
            border-top-color: var(--border);
            padding-top: 16px;
        }

        /* ===== Comments Section ===== */
        .comments-section {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid var(--border);
        }

        .comment-form {
            margin-bottom: 36px;
        }

        .comment-input-wrapper {
            position: relative;
        }

        .comment-input {
            width: 100%;
            min-height: 130px;
            padding: 20px;
            background: var(--bg-darker);
            border: 2px solid var(--border);
            border-radius: 16px;
            color: var(--text-primary);
            font-size: 15px;
            resize: vertical;
            margin-bottom: 16px;
            font-family: inherit;
            line-height: 1.6;
            transition: border-color 0.2s;
        }

        .comment-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .comment-input::placeholder {
            color: var(--text-muted);
        }

        .comment-form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .comment-hint {
            font-size: 13px;
            color: var(--text-muted);
        }

        .comment-submit {
            background: var(--gradient);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .comment-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-primary);
        }

        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .comment-item {
            padding: 24px;
            background: var(--bg-darker);
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: border-color 0.2s;
        }

        .comment-item:hover {
            border-color: var(--border-light);
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .comment-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }

        .comment-user-info {
            flex: 1;
        }

        .comment-author {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .comment-date {
            font-size: 13px;
            color: var(--text-muted);
        }

        .comment-rating {
            color: var(--star);
            font-size: 14px;
        }

        .comment-content {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 15px;
        }

        .no-comments {
            text-align: center;
            padding: 40px;
            color: var(--text-muted);
        }

        .no-comments-icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.5;
        }

        /* ===== Sidebar ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-widget {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid var(--border);
        }

        .widget-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .widget-title-icon {
            font-size: 20px;
        }

        .sidebar-game-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .sidebar-game {
            display: flex;
            gap: 14px;
            padding: 12px;
            border-radius: 14px;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .sidebar-game:hover {
            background: var(--bg-card-hover);
            border-color: var(--border);
        }

        .sidebar-game-rank {
            width: 28px;
            height: 28px;
            background: var(--border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .sidebar-game-rank.top-1 {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
        }

        .sidebar-game-rank.top-2 {
            background: linear-gradient(135deg, #E8E8E8, #B8B8B8);
            color: #000;
        }

        .sidebar-game-rank.top-3 {
            background: linear-gradient(135deg, #CD7F32, #A0522D);
            color: #fff;
        }

        .sidebar-game-image {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .sidebar-game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sidebar-game-info {
            flex: 1;
            min-width: 0;
        }

        .sidebar-game-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .sidebar-game-meta {
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-game-arrow {
            width: 32px;
            height: 32px;
            font-size: 16px;
            color: white;
            background: var(--primary);
            border: none;
            border-radius: 10px;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            box-shadow: 0 4px 10px rgba(0, 208, 132, 0.3);
        }

        .sidebar-game:hover .sidebar-game-arrow {
            display: flex;
            transform: scale(1.1);
            background: var(--primary-dark);
        }

        /* ===== Share Buttons - Collapsible ===== */
        .share-buttons {
            display: flex;
            position: fixed;
            right: 24px;
            bottom: 100px;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 100;
            top: auto;
            transform: none;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: none;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(20px) scale(0.8);
            pointer-events: none;
        }

        .share-buttons.active .share-btn {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .share-btn:hover {
            transform: scale(1.15);
        }

        .share-buttons.active .share-btn:hover {
            transform: scale(1.15) translateX(-5px);
        }

        .share-btn svg {
            width: 22px;
            height: 22px;
        }

        .share-btn.twitter { background: #1DA1F2; }
        .share-btn.facebook { background: #4267B2; }
        .share-btn.reddit { background: #FF4500; }
        .share-btn.telegram { background: #0088cc; }
        .share-btn.copy-link { background: var(--secondary); }

        /* Main Share Toggle Button */
        .share-toggle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #00D084;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: none;
            box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
            z-index: 101;
        }

        .share-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 208, 132, 0.5);
        }

        .share-toggle svg {
            transition: transform 0.3s ease;
        }

        .share-buttons.active .share-toggle svg {
            transform: rotate(45deg);
        }

        /* Staggered animation delays */
        .share-buttons.active .share-btn:nth-child(1) { transition-delay: 0.05s; }
        .share-buttons.active .share-btn:nth-child(2) { transition-delay: 0.1s; }
        .share-buttons.active .share-btn:nth-child(3) { transition-delay: 0.15s; }
        .share-buttons.active .share-btn:nth-child(4) { transition-delay: 0.2s; }
        .share-buttons.active .share-btn:nth-child(5) { transition-delay: 0.25s; }

        /* ===== Responsive Design ===== */
        @media (max-width: 992px) {
            .main-container {
                display: flex;
                flex-direction: column;
            }

            .content-area {
                order: 1;
            }

            .sidebar {
                order: 2;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .comments-section {
                order: 3;
            }

            .detail-hero-inner {
                grid-template-columns: 130px 1fr;
                gap: 24px;
            }

            .detail-info h1 {
                font-size: 26px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                height: 56px;
            }

            .breadcrumb {
                font-size: 12px;
                margin-bottom: 12px;
                gap: 6px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-card);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .search-box {
                display: none;
            }

            .mobile-search-box {
                display: block;
                margin: 10px 0;
            }

            .main-container {
                padding: 16px 12px;
                gap: 20px;
            }

            .sidebar {
                grid-template-columns: 1fr;
            }

            /* Mobile SEO Optimized Hero */
            .detail-hero {
                padding: 16px;
                border-radius: 16px;
                margin-bottom: 20px;
            }

            .detail-hero-inner {
                display: grid;
                grid-template-columns: 88px 1fr;
                gap: 12px 16px;
                text-align: left;
                align-items: start;
            }

            .detail-icon {
                margin: 0;
                width: 88px;
                height: 88px;
                grid-column: 1;
                grid-row: 1 / span 2;
                border-radius: 20px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            }

            .detail-info {
                display: contents;
            }

            .detail-info h1 {
                grid-column: 2;
                font-size: 18px;
                line-height: 1.35;
                margin-bottom: 4px;
                font-weight: 700;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .detail-meta {
                grid-column: 2;
                justify-content: flex-start;
                gap: 10px;
                font-size: 12px;
                margin-bottom: 0;
            }

            /* Hide less important meta items on mobile */
            .detail-meta-item:nth-child(3),
            .detail-meta-item:nth-child(4) {
                display: none;
            }

            .detail-tags {
                display: none;
            }

            .detail-actions {
                grid-column: 1 / -1;
                width: 100%;
                justify-content: center;
                margin-top: 4px;
            }

            .download-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
                font-size: 16px;
                border-radius: 12px;
            }

            .info-table {
                grid-template-columns: 1fr;
            }

            .info-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .info-value {
                text-align: left;
                width: 100%;
            }

            .related-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .content-section {
                padding: 20px;
            }

            .section-title {
                font-size: 18px;
                margin-bottom: 16px;
            }

            /* Mobile Optimized Comments */
            .comments-section {
                padding: 16px;
                border-radius: 16px;
            }

            .comment-form {
                margin-bottom: 24px;
            }

            .comment-input {
                min-height: 100px;
                padding: 14px;
                font-size: 14px;
                border-radius: 12px;
                margin-bottom: 12px;
            }

            .comment-submit {
                width: 100%;
                justify-content: center;
                padding: 12px;
                border-radius: 10px;
            }

            .comment-item {
                padding: 16px;
                border-radius: 12px;
            }

            .comment-header {
                gap: 12px;
                margin-bottom: 10px;
            }

            .comment-avatar {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .comment-author {
                font-size: 14px;
                margin-bottom: 2px;
            }

            .comment-date {
                font-size: 12px;
            }

            .comment-rating {
                font-size: 12px;
            }

            .comment-content {
                font-size: 14px;
                line-height: 1.6;
            }
            .sidebar-game-arrow {
                width: 28px;
                height: 28px;
                font-size: 14px;
                display: flex !important;
            }
        }

        @media (max-width: 480px) {
            .detail-info h1 {
                font-size: 22px;
            }

            .download-btn {
                width: 100%;
                justify-content: center;
                padding: 16px 32px;
            }

            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .screenshot-item {
                width: 260px;
            }

            .related-card {
                padding: 16px;
            }

            .related-card-image {
                width: 70px;
                height: 70px;
            }

            .comment-item {
                padding: 18px;
            }
        }

        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.5s ease forwards;
        }

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

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--bg-card);
            color: var(--text-primary);
            padding: 16px 28px;
            border-radius: 14px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            z-index: 9999;
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .toast.success {
            border-color: var(--success);
        }

        .toast.success::before {
            content: '✓';
            color: var(--success);
            font-size: 18px;
        }

        /* Screenshot Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(0, 0, 0, 0.92);
            animation: fadeIn 0.3s ease;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            position: relative;
            max-width: 80vw;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: zoomIn 0.3s ease;
        }

        .modal-content img {
            max-width: 100%;
            max-height: 85vh;
            width: auto;
            height: auto;
            border-radius: 12px;
            object-fit: contain;
            display: block;
        }

        .close {
            position: fixed;
            top: 20px;
            right: 28px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 10001;
            line-height: 1;
        }

        .close:hover,
        .close:focus {
            color: var(--primary);
            text-decoration: none;
        }

        .modal-nav {
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-nav:hover {
            background: rgba(255, 255, 255, 0.35);
        }

        .modal-counter {
            margin-top: 10px;
            text-align: center;
            color: #fff;
            font-size: 14px;
            background: rgba(0,0,0,0.5);
            padding: 4px 14px;
            border-radius: 20px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
