
    :root {
      --primary: #FF6B1A;
      --secondary: #00F5FF;
      --tertiary: #FF0080;
      --bg-base: #08080E;
      --text-main: #F0F0F0;
      --text-muted: #888888;
      --card-bg: rgba(255, 255, 255, 0.04);
      --card-border: rgba(255, 255, 255, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scrollbar-color: var(--primary) #111;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #111;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: 'Nunito', sans-serif;
      overflow-x: hidden;
      position: relative;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .bebas {
      font-family: 'Bebas Neue', cursive;
    }

    /* Background blobs */
    .bg-blobs {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 26, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.08) 0%, transparent 40%);
      background-size: 200% 200%;
      animation: bgShift 15s ease-in-out infinite alternate;
    }

    @keyframes bgShift {
      0% {
        background-position: 0% 0%;
      }

      100% {
        background-position: 100% 100%;
      }
    }

    /* Navbar */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(20px);
      background: rgba(8, 8, 14, 0.85);
      border-bottom: 1px solid rgba(255, 107, 26, 0.2);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 5%;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Bebas Neue', cursive;
      font-size: 28px;
      color: var(--primary);
      text-decoration: none;
      text-shadow: 0 0 20px var(--primary), 0 0 60px rgba(255, 107, 26, 0.4);
      letter-spacing: 2px;
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-links a {
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .search-container {
      display: flex;
      align-items: center;
      position: relative;
      gap: 10px;
    }

    #genreFilter, #searchInput {
      padding: 8px 16px;
      border-radius: 20px;
      border: 1px solid rgba(255, 107, 26, 0.4);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      outline: none;
      transition: all 0.3s;
    }
    
    #genreFilter {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
    }
    
    #genreFilter option {
      background: var(--bg-base);
      color: var(--text-main);
    }

    #searchInput {
      width: 150px;
    }

    #genreFilter:focus, #searchInput:focus {
      border-color: var(--primary);
      box-shadow: 0 0 10px rgba(255, 107, 26, 0.3);
      background: rgba(255, 255, 255, 0.1);
    }

    #searchInput:focus {
      width: 220px;
    }

    .cta-btn {
      background: linear-gradient(135deg, var(--primary), #FF4500);
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 25px;
      font-family: 'Bebas Neue', cursive;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(255, 107, 26, 0.5);
      animation: pulse 2s infinite;
      transition: transform 0.3s ease;
      letter-spacing: 1px;
    }

    .cta-btn:hover {
      transform: scale(1.05);
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 20px rgba(255, 107, 26, 0.5);
      }

      50% {
        box-shadow: 0 0 40px rgba(255, 107, 26, 0.9);
      }
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      color: var(--text-main);
      font-size: 28px;
      cursor: pointer;
    }

    /* Mobile Nav Overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(8, 8, 14, 0.98);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .mobile-nav.active {
      display: flex;
    }

    .mobile-nav a {
      font-family: 'Bebas Neue', cursive;
      font-size: 48px;
      color: var(--text-main);
      text-decoration: none;
      letter-spacing: 2px;
    }

    .mobile-nav a:hover {
      color: var(--primary);
    }

    .close-nav {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: var(--text-main);
      font-size: 36px;
      cursor: pointer;
    }

    /* Hero */
    #home {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      position: relative;
    }

    .hero-title {
      font-size: clamp(48px, 10vw, 120px);
      background: linear-gradient(135deg, #FF6B1A 0%, #FF0080 50%, #FF6B1A 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200%;
      animation: gradientShift 3s ease infinite;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: 4px;
    }

    @keyframes gradientShift {

      0%,
      100% {
        background-position: 0%;
      }

      50% {
        background-position: 100%;
      }
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-top: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #FF4500);
      color: white;
      border: none;
      padding: 16px 40px;
      border-radius: 30px;
      font-family: 'Bebas Neue', cursive;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(255, 107, 26, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      letter-spacing: 1px;
    }

    .btn-secondary {
      background: transparent;
      color: var(--secondary);
      border: 2px solid var(--secondary);
      padding: 16px 40px;
      border-radius: 30px;
      font-family: 'Bebas Neue', cursive;
      font-size: 22px;
      cursor: pointer;
      transition: transform 0.3s ease, background 0.3s ease;
      letter-spacing: 1px;
      position: relative;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
      transform: scale(1.05);
    }

    .btn-secondary:hover {
      background: rgba(0, 245, 255, 0.1);
    }

    .tooltip {
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      color: #000;
      padding: 4px 12px;
      border-radius: 4px;
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      font-weight: 700;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .tooltip.show {
      opacity: 1;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      color: var(--primary);
      font-size: 24px;
      animation: bounce 1.5s infinite;
      text-decoration: none;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(10px);
      }
    }

    /* Games Section */
    #games {
      padding: 40px 5% 80px 5%;
    }

    .section-label {
      text-transform: uppercase;
      color: var(--primary);
      letter-spacing: 4px;
      font-size: 13px;
      font-weight: 800;
      text-align: center;
      display: block;
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 56px;
      text-align: center;
      text-shadow: 0 0 20px var(--primary), 0 0 60px rgba(255, 107, 26, 0.4);
      margin-bottom: 40px;
      letter-spacing: 2px;
    }

    /* Featured Game Card */
    .featured-card {
      width: 100%;
      max-width: 700px;
      margin: 40px auto;
      background: var(--card-bg);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 107, 26, 0.4);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 30px rgba(255, 107, 26, 0.15);
    }

    .featured-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 0 60px rgba(255, 107, 26, 0.4);
      border-color: rgba(255, 107, 26, 0.8);
    }

    .featured-thumb {
      height: 280px;
      background: linear-gradient(135deg, #1a0a00 0%, #2d1200 40%, #0a0a1a 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .play-circle {
      width: 80px;
      height: 80px;
      background: rgba(255, 107, 26, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      z-index: 2;
      transition: transform 0.3s;
      color: white;
    }

    .featured-card:hover .play-circle {
      transform: scale(1.2);
    }

    .thumb-blob-1 {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      background: rgba(255, 107, 26, 0.3);
      width: 150px;
      height: 150px;
      top: -20px;
      left: -20px;
    }

    .thumb-blob-2 {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      background: rgba(0, 245, 255, 0.2);
      width: 120px;
      height: 120px;
      bottom: -20px;
      right: -20px;
    }

    .thumb-blob-3 {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      background: rgba(255, 0, 128, 0.15);
      width: 200px;
      height: 200px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .badge-top-left {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(255, 107, 26, 0.9);
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 800;
      z-index: 3;
    }

    .badge-top-right {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(0, 245, 255, 0.15);
      border: 1px solid var(--secondary);
      color: var(--secondary);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 800;
      z-index: 3;
    }

    .featured-body {
      padding: 24px;
    }

    .featured-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .featured-title {
      font-size: 32px;
      color: white;
      text-shadow: 0 0 10px var(--primary);
      letter-spacing: 1px;
    }

    .featured-rating {
      color: #FFD700;
      font-size: 14px;
      font-weight: 700;
    }

    .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .tag {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 12px;
      color: #aaa;
      font-weight: 600;
    }

    .featured-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .featured-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--primary), #FF4500);
      border: none;
      border-radius: 12px;
      color: white;
      font-family: 'Bebas Neue', cursive;
      font-size: 24px;
      cursor: pointer;
      margin-top: 20px;
      letter-spacing: 2px;
      box-shadow: 0 0 20px rgba(255, 107, 26, 0.4);
      transition: all 0.3s;
    }

    .featured-btn:hover {
      box-shadow: 0 0 40px rgba(255, 107, 26, 0.8);
      transform: scale(1.02);
    }

    /* Coming Soon Grid */
    .more-label {
      font-size: 36px;
      text-align: center;
      margin-top: 0;
      letter-spacing: 2px;
      display: block;
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .coming-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      opacity: 0.7;
    }

    .coming-card:hover {
      opacity: 1;
      transform: translateY(-4px);
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
    }

    .coming-thumb {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .coming-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #0a0a1a;
      transition: transform 0.5s ease;
    }

    .coming-card:hover .coming-thumb img {
      transform: scale(1.1);
    }

    .overlay-play {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-size: 32px;
      color: white;
    }

    .coming-card:hover .overlay-play {
      opacity: 1;
    }

    .c-bg-1 {
      background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
    }

    .c-bg-2 {
      background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
    }

    .c-bg-3 {
      background: linear-gradient(135deg, #1a1a2a, #0a0a1a);
    }

    .c-bg-4 {
      background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
    }

    .coming-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .coming-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .coming-title {
      font-size: 20px;
      letter-spacing: 1px;
    }

    .coming-badge {
      background: rgba(255, 0, 128, 0.15);
      border: 1px solid var(--tertiary);
      color: var(--tertiary);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 800;
      align-self: flex-start;
    }

    .coming-btn {
      width: 100%;
      padding: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #555;
      font-family: 'Bebas Neue', cursive;
      font-size: 18px;
      cursor: not-allowed;
      margin-top: 12px;
      letter-spacing: 1px;
    }

    /* About Section */
    #about {
      padding: 80px 5%;
      text-align: center;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .about-card {
      background: var(--card-bg);
      backdrop-filter: blur(12px);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 30px 20px;
      transition: all 0.3s ease;
    }

    .about-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .about-icon {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .about-title {
      font-size: 24px;
      margin-bottom: 12px;
      color: var(--text-main);
      letter-spacing: 1px;
    }

    .about-desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.5;
    }

    /* Footer */
    footer {
      background: rgba(255, 255, 255, 0.02);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 40px 5%;
      text-align: center;
    }

    .footer-logo {
      font-size: 24px;
      color: var(--primary);
      letter-spacing: 2px;
    }

    .footer-tagline {
      color: #555;
      font-size: 14px;
      margin: 8px 0 20px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 16px;
    }

    .footer-links a {
      color: #555;
      font-size: 13px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-copy {
      color: #333;
      font-size: 12px;
      margin-top: 16px;
    }

    .footer-disc {
      color: #2a2a2a;
      font-size: 11px;
      margin-top: 8px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===== SKELETON LOADING CARDS ===== */
    .skeleton-card {
      pointer-events: none;
      opacity: 1 !important;
    }

    .skeleton-thumb {
      height: 140px;
      background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
      background-size: 200% 100%;
      animation: skeletonShimmer 1.5s infinite;
    }

    .skeleton-line {
      border-radius: 6px;
      background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
      background-size: 200% 100%;
      animation: skeletonShimmer 1.5s infinite;
    }

    @keyframes skeletonShimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ===== GAME LOADING SPINNER ===== */
    .game-spinner {
      width: 64px;
      height: 64px;
      border: 5px solid rgba(255, 107, 26, 0.15);
      border-top-color: #FF6B1A;
      border-radius: 50%;
      animation: spinRing 0.9s linear infinite;
    }

    @keyframes spinRing {
      to { transform: rotate(360deg); }
    }

    .loader-shimmer {
      width: 180px;
      height: 3px;
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      margin-top: 20px;
      overflow: hidden;
    }

    .loader-shimmer::after {
      content: '';
      display: block;
      height: 100%;
      width: 40%;
      background: linear-gradient(90deg, transparent, #FF6B1A, transparent);
      border-radius: 2px;
      animation: shimmerSlide 1.4s ease-in-out infinite;
    }

    @keyframes shimmerSlide {
      0%   { transform: translateX(-250%); }
      100% { transform: translateX(350%); }
    }

    /* Game Overlay */
    #gameOverlay {
      user-select: none;
    }

    /* ===== GAME DETAILS PANEL ===== */
    #gameDetailsPanel {
      width: 100%;
    }

    /* Tab Buttons */
    .game-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 0;
      border-bottom: 2px solid rgba(255,255,255,0.07);
      padding-bottom: 0;
    }

    .tab-btn {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-bottom: none;
      color: #888;
      padding: 10px 22px;
      border-radius: 10px 10px 0 0;
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: all 0.25s ease;
      position: relative;
      bottom: -2px;
    }

    .tab-btn:hover {
      background: rgba(255,255,255,0.08);
      color: #ccc;
    }

    .tab-btn.active {
      background: rgba(255,107,26,0.1);
      border-color: rgba(255,107,26,0.4);
      color: #FF6B1A;
      border-bottom: 2px solid #08080E;
    }

    /* Tab Content Panes */
    .tab-content {
      display: none;
      padding: 28px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.07);
      border-top: none;
      border-radius: 0 0 14px 14px;
      animation: tabFadeIn 0.3s ease;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes tabFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Wiki Content Typography */
    .game-wiki-content {
      color: #ccc;
      font-size: 15px;
      line-height: 1.85;
    }

    .game-wiki-content h2 {
      margin-top: 0;
    }

    .game-wiki-content h3 {
      font-family: 'Nunito', sans-serif;
    }

    .game-wiki-content p {
      margin-bottom: 14px;
    }

    .game-wiki-content strong {
      color: #eee;
    }

    .game-wiki-content em {
      color: #aaa;
      font-style: normal;
      background: rgba(255,255,255,0.05);
      padding: 1px 6px;
      border-radius: 4px;
    }

    /* Details element FAQ styling */
    details summary::-webkit-details-marker { display: none; }
    details[open] summary span { transform: rotate(180deg); }

    @media (max-width: 768px) {
      .game-tabs {
        gap: 4px;
      }
      .tab-btn {
        padding: 8px 14px;
        font-size: 12px;
      }
      .tab-content {
        padding: 18px;
      }
      .game-wiki-content {
        font-size: 14px;
      }
    }

    /* Splash Screen */
    #splash {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #08080E;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s ease;
    }

    .splash-title {
      font-family: 'Bebas Neue', cursive;
      font-size: 52px;
      color: #FF6B1A;
      text-shadow: 0 0 30px rgba(255, 107, 26, 0.8);
      letter-spacing: 4px;
      animation: fadeInUp 0.6s ease;
      will-change: transform, opacity;
    }

    .splash-sub {
      color: #555;
      font-size: 14px;
      margin-top: 8px;
      font-family: 'Nunito', sans-serif;
    }

    .loader-container {
      width: 200px;
      height: 3px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 2px;
      margin-top: 24px;
      overflow: hidden;
    }

    .loader-bar {
      height: 100%;
      background: linear-gradient(90deg, #FF6B1A, #FF0080);
      border-radius: 2px;
      animation: loadBar 2s ease forwards;
    }

    @keyframes loadBar {
      from {
        width: 0%;
      }

      to {
        width: 100%;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        flex-wrap: wrap;
        padding: 12px 5%;
      }

      .logo {
        font-size: 24px;
      }

      .nav-links,
      .cta-btn {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .search-container {
        order: 3;
        width: 100%;
        margin-top: 16px;
        justify-content: center;
      }

      #searchInput {
        flex: 1;
        width: auto;
      }

      #searchInput:focus {
        width: auto;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .featured-card {
        max-width: 100%;
      }

      #gameFrame {
        width: 95vw !important;
        height: 70vh !important;
      }

      .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }

      .hero-title {
        font-size: clamp(40px, 10vw, 80px);
      }
    }

    @media (max-width: 480px) {
      .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .coming-thumb {
        height: 100px;
      }

      .coming-body {
        padding: 10px;
        gap: 4px;
      }

      .coming-title {
        font-size: 14px;
      }

      .coming-badge {
        font-size: 9px;
        padding: 3px 6px;
      }

      .section-title {
        font-size: 36px;
      }

      .more-label {
        font-size: 24px;
        margin-top: 40px;
      }

      #genreFilter, #searchInput {
        font-size: 12px;
        padding: 8px 10px;
      }

      #gameTitleOverlay {
        font-size: 16px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
      }

      #fullscreenBtn {
        font-size: 12px !important;
        padding: 6px 10px !important;
      }

      #infoContent {
        padding: 15px !important;
        font-size: 14px !important;
      }
    }

  