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

        :root {
            --primary: #00D084;
            --primary-dark: #00B871;
            --secondary: #6C5CE7;
            --bg-dark: #0F0F23;
            --bg-card: #1A1A2E;
            --bg-card-hover: #252542;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0B0;
            --text-muted: #6B6B80;
            --border: #2A2A40;
            --star: #FFD700;
            --danger: #FF6B6B;
            --gradient: linear-gradient(135deg, #00D084 0%, #00B871 100%);
        }

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

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

        /* Header */
        .header {
            position: sticky;
            top: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            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: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .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 20px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s;
            color: var(--text-secondary);
        }

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

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

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

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

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

        /* Breadcrumb */
        .breadcrumb {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px 20px 0;
        }

        .breadcrumb-inner {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: color 0.2s;
        }

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

        .breadcrumb-sep {
            color: var(--text-muted);
        }

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

        /* Content Section */
        .content-section {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--border);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
        }



        /* Category Navigation */
        .category-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--bg-dark);
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .category-item {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            background: var(--bg-card);
            color: var(--text-secondary);
            transition: all 0.2s;
            cursor: pointer;
            border: 1px solid var(--border);
        }

        .category-item:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .category-item.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* Game Grid */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .game-card {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            padding: 16px;
            gap: 16px;
        }

        .game-card:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
            box-shadow: 0 8px 16px rgba(0, 208, 132, 0.1);
        }

        .game-card-link {
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
        }

        .game-card-image {
            position: relative;
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }

        .game-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid var(--border);
            transition: transform 0.3s;
        }

        .game-card:hover .game-card-image img {
            transform: scale(1.05);
        }

        .game-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .game-card-content {
            flex: 1;
            min-width: 0;
        }

        .game-card-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        .game-rating {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .rating-stars {
            color: var(--star);
            font-size: 12px;
        }

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

        .game-card-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.4;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .game-card-actions {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .btn {
            width: 100%;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--bg-card);
            color: var(--text-primary);
            border-color: var(--primary);
        }

        /* Pagination */
        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .pagination-btn {
            width: 40px;
            height: 40px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pagination-btn:hover {
            background: var(--bg-card);
            color: var(--text-primary);
            border-color: var(--primary);
        }

        .pagination-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-secondary);
        }

        .empty-state-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .empty-state-text {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .empty-state-sub {
            font-size: 14px;
            color: var(--text-muted);
        }

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

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

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

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

        .sidebar-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .sidebar-game {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            transition: all 0.2s;
        }

        .sidebar-game:last-child {
            border-bottom: none;
        }

        .sidebar-game:hover {
            transform: translateX(5px);
        }

        .sidebar-game-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

        .sidebar-game-info {
            flex: 1;
        }

        .sidebar-game-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .sidebar-game-meta {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }

            .sidebar {
                flex-direction: column;
                overflow-x: visible;
                padding-bottom: 0;
            }

            .sidebar-section {
                width: 100%;
                min-width: 0;
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .sidebar-game {
                background: var(--bg-dark);
                border: 1px solid var(--border);
                border-radius: 12px;
                padding: 12px;
                display: flex !important;
                align-items: center;
                gap: 12px;
                border-bottom: 1px solid var(--border);
                margin-bottom: 0;
            }

            .sidebar-game:last-child {
                border-bottom: 1px solid var(--border);
            }

            /* Add download arrow container */
            .sidebar-game::after {
                content: '';
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: center;
                width: 36px;
                height: 36px;
                background-color: #00D084;
                background-color: var(--primary);
                background-color: #00D084;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: auto;
                flex-shrink: 0;
                box-shadow: 0 4px 10px rgba(0, 208, 132, 0.3);
            }
        }

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

            .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);
            }

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

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

            .search-box {
                display: none;
            }

            .mobile-search-box {
                display: block;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .category-nav {
                padding: 15px;
                margin-bottom: 20px;
                gap: 8px;
            }

            .category-item {
                padding: 6px 12px;
                font-size: 13px;
            }

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

            .content-section {
                padding: 20px;
            }

            .game-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .game-card {
                padding: 12px;
                gap: 12px;
            }

            .game-card-image {
                width: 60px;
                height: 60px;
            }

            .game-badge {
                padding: 2px 8px;
                font-size: 10px;
                right: -4px;
                top: -4px;
            }

            .game-card-title {
                font-size: 15px;
                margin-bottom: 4px;
            }

            .game-card-meta {
                font-size: 11px;
                margin-bottom: 6px;
            }

            .game-card-desc {
                font-size: 12px;
                margin-bottom: 8px;
                line-height: 1.3;
            }

            .btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .pagination {
                flex-wrap: nowrap;
                justify-content: center;
                gap: 5px;
            }

            .pagination-btn {
                flex-shrink: 0;
                width: 32px;
                height: 32px;
                font-size: 13px;
            }
        }
