/* ☰ Menu Button */
    .menu-toggle {
      position: fixed;
      top: 5px;
      left: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }

    .menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background: linear-gradient(90deg, #ff6b6b, #ffa500);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: -230px;
      width: 200px;
      height: 100vh;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(6px);
      border-right: 2px solid #222;
      box-shadow: 4px 0 12px rgba(0, 0, 0, 0.4);
      transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      padding-top: 60px;
    }

    .sidebar.active {
      left: 0;
    }

    /* Sidebar Items */
    .menu-items {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .menu-item {
      padding: 12px 25px;
      display: flex;
      align-items: center;
      transition: 0.3s ease;
      cursor: pointer;
      border-left: 3px solid transparent;
    }

    .menu-item:hover {
      background: rgba(255, 255, 255, 0.05);
      border-left: 3px solid #ff6b6b;
      padding-left: 30px;
    }

    .menu-item i {
      margin-right: 12px;
      color: #ffa500;
      font-size: 18px;
    }

    .menu-item span {
      font-size: 16px;
      color: #eee;
    }

    .menu-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
      margin: 10px 20px;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 999;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Responsive */
    @media (max-width: 480px) {
      .sidebar {
        width: 180px;
      }
      .menu-item {
        padding: 10px 20px;
      }
      .menu-item span {
        font-size: 15px;
      }
    }



/*updete*/

/* --- Recent Games Section এর জন্য অতিরিক্ত ছোট কার্ডের স্টাইল --- */

/* 1. গ্রিডের কলামের আকার অতিরিক্ত ছোট করা */
#recent-section .games-grid {
    /* 140px এর বদলে 90px (প্রায় 50px কমানো) করে ছোট কার্ড */
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem; /* গ্রিডের মধ্যে দূরত্ব আরও কমানো */
}

/* 2. ইমেজের উচ্চতা অতিরিক্ত কমানো */
#recent-section .game-card-image {
    height: 60px; /* মূল 100px থেকে কমিয়ে (প্রায় 40px কমানো) */
}

/* 3. কার্ডের প্যাডিং এবং টেক্সট অতিরিক্ত ছোট করা */
#recent-section .game-card-content {
    padding: 0.35rem; /* প্যাডিং আরও কমানো */
}

/* 4. কার্ড টাইটেলের ফন্ট সাইজ ছোট করা */
#recent-section .game-card-title {
    font-size: 0.8rem; /* মূল 1.125rem থেকে কমিয়ে */
    margin-bottom: 0.25rem;
}

/* 5. ক্যাটাগরি ব্যাজ আরও ছোট করা (যদি এটি প্রদর্শিত হয়) */
#recent-section .game-card-category {
    padding: 0.1rem 0.5rem;
    font-size: 0.65rem;
}

/* 6. অপ্রয়োজনীয় টেক্সট যেমন ডেসক্রিপশন লুকিয়ে ফেলা (আগের মতোই থাকবে) */
#recent-section .game-card-description {
    display: none; 
}

/* 7. মোবাইলের জন্য আরও ছোট গ্রিড (স্ক্রিনের প্রস্থ 768px-এর নিচে) */
@media (max-width: 768px) {
    #recent-section .games-grid {
        /* মোবাইলে 100px এর বদলে 70px */
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.3rem;
    }
}