        * {
            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 - Sticky */
        .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 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

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

        .content-area {
            min-width: 0;
        }

        /* Hero Slider */
        .hero-section {
            margin-bottom: 40px;
        }

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

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

        .section-title-icon {
            width: 32px;
            height: 32px;
            background: var(--gradient);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .view-all {
            color: var(--primary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.2s;
        }

        .view-all:hover {
            gap: 10px;
        }

        .hero-slider {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .hero-card {
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid var(--border);
            position: relative;
        }

        .hero-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 208, 132, 0.1);
        }

        .hero-card-image {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .hero-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

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

        .hot-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #FF6B6B, #FF8E53);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .hero-card-content {
            padding: 16px;
        }

        .hero-card-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

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

        .rating {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--star);
        }

        .category-tag {
            background: var(--secondary);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
        }

        /* Editor's Choice */
        .editors-choice {
            margin-bottom: 40px;
        }

        .choice-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .choice-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 20px;
            display: flex;
            gap: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .choice-card:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
        }

        .choice-card-image {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

        .choice-card-info {
            flex: 1;
            min-width: 0;
        }

        .choice-card-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

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

        /* Latest Updates */
        .latest-updates {
            margin-bottom: 40px;
        }

        .game-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

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

        .game-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            border: 1px solid var(--border);
            transition: all 0.2s;
            text-align: center;
        }

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

        .game-card-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

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

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

        .game-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: var(--text-secondary);
        }

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

        .download-btn {
            background: var(--gradient);
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 208, 132, 0.3);
        }

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

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

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

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

        .sidebar-game-list {
            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; /* Force flex display */
                align-items: center;
                gap: 12px;
                transition: all 0.2s;
            }

            .sidebar-game-arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                background: var(--gradient);
                border-radius: 8px;
                color: white;
                font-size: 14px;
                flex-shrink: 0;
                box-shadow: 0 4px 10px rgba(0, 208, 132, 0.3);
                transition: transform 0.2s;
            }

            .sidebar-game:hover .sidebar-game-arrow {
                transform: scale(1.1);
            }

        .sidebar-game-rank {
            width: 24px;
            height: 24px;
            background: var(--border);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            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, #C0C0C0, #A0A0A0);
            color: #000;
        }

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

        .sidebar-game-image {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

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

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

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

            .sidebar-game-arrow {
                display: none;
            }

            .sidebar-game:hover .sidebar-game-arrow {
                color: var(--primary);
            }

        /* Categories Widget */
        .category-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .category-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px;
            border-radius: 10px;
            transition: all 0.2s;
        }

        .category-item:hover {
            background: var(--bg-card-hover);
        }

        .category-item-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .category-count {
            background: var(--border);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Share Buttons - Collapsible */
        .share-buttons {
            display: flex; /* Always visible */
            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.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 {
                grid-template-columns: 1fr;
            }

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

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

            .hero-slider {
                grid-template-columns: 1fr;
            }

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

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

            .game-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .game-card {
                flex-direction: column;
                text-align: center;
            }

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

            .game-card-info {
                flex: 1;
                text-align: center;
            }

            .game-card-title {
                font-size: 16px;
            }

            .game-card-meta {
                flex-direction: column;
                gap: 4px;
                align-items: center;
            }

            .sidebar-game-arrow {
                width: 28px;
                height: 28px;
                font-size: 14px;
                display: flex !important; /* Force display */
            }
        }

        @media (max-width: 480px) {
            .game-card {
                flex-direction: column;
                text-align: center;
            }

            .game-card-meta {
                justify-content: center;
            }
        }
