/*
Theme Name: SlotKaki
Theme URI: https://slotkaki.com
Author: SlotKaki Team
Author URI: https://slotkaki.com
Description: A modern gaming platform theme for SlotKaki - Trusted Online Slot in Malaysia. Features responsive design, game showcases, promotions, and payment methods.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: slotkaki
Tags: gaming, casino, slots, responsive, modern
*/


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

body {
  font-family: 'Manrope', sans-serif;
  background-color: #08091D;
  color: #fff;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(8,9,29,0.95) 0%, rgba(8,9,29,0.85) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  cursor: pointer;
}

.logo img {
  height: 55px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  margin-right: 10px;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.header-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.btn-login {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-signup {
  background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2,91,254,0.4);
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 70px;
  width: 220px;
  height: calc(100vh - 70px);
  background: rgba(15,16,35,0.95);
  padding: 20px 10px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(2,91,254,0.5);
  border-radius: 5px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.nav-item:hover, .nav-item.active {
  background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
  color: #fff;
}

.nav-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.nav-section-title {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 10px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Content */
.main-content {
  margin-left: 220px;
  margin-top: 90px;
  padding: 30px;
  min-height: calc(100vh - 90px);
}

/* Banner Slider */
.banner-slider {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Game Category Tabs */
.game-tabs-container {
  margin: 15px 0 25px 0;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .game-tabs-container {
    margin: 10px 0 15px 0;
    padding: 0;
  }
}

.game-tabs-row {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* 第一排：有整条背景 */
.game-tabs-row:first-child {
  background: rgba(20, 22, 45, 0.8);
  border-radius: 30px;
  padding: 10px 20px;
  display: flex;
  margin: 0 0 15px 0;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.game-tabs-row:first-child::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.game-tabs-row:first-child .game-tab {
  padding: 12px 24px;
  font-size: 14px;
  background: transparent;
  flex-shrink: 0;
}

.game-tabs-row:first-child .game-tab:hover {
  background: rgba(2, 91, 254, 0.15);
}

.game-tabs-row:first-child .game-tab.active {
  background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(2, 91, 254, 0.4);
}

.game-tabs-row:first-child .game-tab img {
  width: 22px;
  height: 22px;
}

/* 第二排：独立按钮 */
.game-tabs-row:last-child .game-tab {
  padding: 8px 16px;
  font-size: 12px;
  background: transparent;
}

.game-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(46, 48, 86, 0.6);
  border-radius: 20px;
  color: #9fa1ce;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.game-tab:hover {
  background: rgba(2, 91, 254, 0.2);
  color: #fff;
  border-color: rgba(2, 91, 254, 0.3);
}

.game-tab.active {
  color: #fff;
}

.game-tab img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .game-tabs-row:first-child {
    padding: 6px 10px;
  }
  
  .game-tabs-row:first-child .game-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .game-tabs-row:last-child .game-tab {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .game-tab img {
    width: 18px;
    height: 18px;
  }
}

.banner-slide {
  display: none;
  width: 100%;
}

.banner-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop banner images */
.banner-slide img.banner-desktop {
  display: block;
}

.banner-slide img.banner-mobile {
  display: none;
}

/* Mobile banner images */
@media (max-width: 768px) {
  .banner-slide img.banner-desktop {
    display: none;
  }
  
  .banner-slide img.banner-mobile {
    display: block;
  }
  
  /* Hide desktop-only slides on mobile */
  .banner-slide:not(.mobile-only) img.banner-desktop {
    display: none;
  }
}

/* Hide mobile-only slides on desktop */
.banner-slide.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .banner-slide.mobile-only {
    display: none;
  }
  
  .banner-slide.mobile-only.active {
    display: block;
  }
  
  /* Hide desktop dots on mobile */
  .slider-dot.desktop-dot {
    display: none;
  }
  
  /* Show mobile dots on mobile */
  .slider-dot.mobile-dot {
    display: block;
  }
}

/* Hide mobile dots on desktop */
.slider-dot.mobile-dot {
  display: none;
}

/* Show desktop dots on desktop */
.slider-dot.desktop-dot {
  display: block;
}

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

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: #025bfe;
  width: 30px;
  border-radius: 5px;
}

/* Game Tabs */
.game-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.game-tabs::-webkit-scrollbar {
  height: 5px;
}

.game-tabs::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

.game-tabs::-webkit-scrollbar-thumb {
  background: rgba(2,91,254,0.5);
  border-radius: 5px;
}

.game-tab {
  padding: 12px 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border: 1px solid transparent;
}

.game-tab:hover, .game-tab.active {
  background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
  border-color: rgba(255,255,255,0.2);
}

/* Section */
.section {
  margin-bottom: 50px;
}

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

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.view-all {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.view-all:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Game Grid */
.game-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.game-grid::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.05);
  flex: 0 0 200px;
  min-width: 200px;
  height: 250px;
  padding: 0;
  margin: 0;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(2,91,254,0.3);
}

.game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

/* Play button circle */
.game-overlay::before {
  content: '';
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

/* Play button triangle */
.game-overlay::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #2c3e50;
  position: absolute;
  margin-left: 8px;
  z-index: 1;
}

.game-card:hover .game-overlay::before {
  transform: scale(1.1);
}

.game-name {
  display: none;
}

.game-provider {
  display: none;
}

/* Promotions */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  position: relative;
}

/* Promo Slider Navigation */
.promo-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 8px;
  z-index: 10;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.promo-dot.active {
  background: #025bfe;
  width: 24px;
  border-radius: 5px;
}

.promo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 1;
  transform: none;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(2,91,254,0.3);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
}

.promo-content {
  padding: 20px;
  background: rgba(255,255,255,0.05);
}

.promo-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.promo-btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
  border-radius: 6px;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

/* Payment Methods */
.payment-section {
  background: rgba(15,16,35,0.8);
  padding: 30px 40px;
  border-radius: 15px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.payment-section .section-title {
  margin: 0;
  font-size: 20px;
  white-space: nowrap;
}

.payment-icons {
  display: flex;
  gap: 25px;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-icon {
  width: 130px;
  height: 70px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s;
  cursor: pointer;
}

.payment-icon:hover {
  background: rgba(2,91,254,0.15);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2,91,254,0.3);
}

.payment-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.payment-deposit-btn {
  white-space: nowrap;
}

/* Providers */
.provider-section {
  background: rgba(15,16,35,0.5);
  padding: 40px 0;
  border-radius: 15px;
  overflow: hidden;
}

.provider-section .section-header {
  padding-left: 30px;
}

.provider-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.provider-slider {
  display: flex;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.provider-slider:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.provider-logo {
  flex-shrink: 0;
  width: 150px;
  height: 70px;
  margin: 0 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

.provider-logo:hover {
  background: rgba(2,91,254,0.15);
  transform: scale(1.05);
}

.provider-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s;
}

.provider-logo:hover img {
  filter: brightness(1.1);
}

/* Footer */
.footer {
  background: rgba(15,16,35,0.95);
  padding: 50px 30px 30px;
  margin-left: 220px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #025bfe;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #025bfe;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 12px 15px;
  }
  
  .logo {
    margin-left: -8px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-right {
    gap: 10px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
  }
  
  /* Sidebar */
  .sidebar {
    width: 280px;
    top: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  .sidebar-overlay.active {
    display: block;
  }
  
  /* Main Content */
  .main-content {
    margin-left: 0;
    margin-top: 64px;
    padding: 15px;
  }
  
  /* Banner */
  .banner-slider {
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  /* Game Tabs */
  .game-tabs-container {
    padding: 0 15px;
  }
  
  /* 第一排：网格布局（2行4列） */
  .game-tabs-row:first-child {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: visible;
  }
  
  .game-tabs-row:first-child .game-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 8px;
    background: rgba(46, 48, 86, 0.6);
    border-radius: 12px;
    gap: 8px;
    min-height: 90px;
    transition: all 0.3s;
  }
  
  .game-tabs-row:first-child .game-tab:hover {
    background: rgba(2, 91, 254, 0.2);
    transform: translateY(-2px);
  }
  
  .game-tabs-row:first-child .game-tab.active {
    background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
    box-shadow: 0 4px 15px rgba(2, 91, 254, 0.4);
    border-radius: 12px;
  }
  
  .game-tabs-row:first-child .game-tab img {
    width: 32px;
    height: 32px;
    margin: 0;
  }
  
  .game-tabs-row:first-child .game-tab span {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
  }
  
  /* 第二排：水平筛选栏 */
  .game-tabs-row:last-child {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .game-tabs-row:last-child::-webkit-scrollbar {
    display: none;
  }
  
  .game-tabs-row:last-child .game-tab {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    gap: 8px;
    background: transparent;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 44px;
  }
  
  .game-tabs-row:last-child .game-tab.active {
    background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
    color: #fff;
  }
  
  .game-tabs-row:last-child .game-tab img {
    width: 20px;
    height: 20px;
  }
  
  .game-tab img {
    width: 14px;
    height: 14px;
  }
  
  /* Game Grid */
  .game-grid {
    gap: 12px;
    padding-bottom: 5px;
  }
  
  .game-card {
    flex: 0 0 140px;
    min-width: 140px;
    border-radius: 10px;
    height: 160px;
    padding: 0;
    margin: 0;
  }
  
  .game-card img {
    height: 160px;
    display: block;
  }
  
  /* Section */
  .section {
    margin-bottom: 30px;
  }
  
  .section-header {
    margin-bottom: 15px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .view-all {
    font-size: 13px;
  }
  
  /* Promotions - Mobile Slider */
  .promo-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 0;
    min-height: 300px;
  }
  
  .promo-card {
    flex: 0 0 100%;
    width: 100%;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
  }
  
  .promo-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
  }
  
  .promo-content {
    padding: 15px;
  }
  
  .promo-title {
    font-size: 16px;
  }
  
  .promo-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
  
  .promo-nav {
    display: flex;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 15px;
    justify-content: center;
  }
  
  .promo-dot {
    width: 6px;
    height: 6px;
  }
  
  .promo-dot.active {
    width: 20px;
  }
  
  /* Payment Section */
  .payment-section {
    padding: 20px 15px;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
  }
  
  .payment-section .section-title {
    font-size: 18px;
    margin: 0;
  }
  
  .payment-icons {
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .payment-icon {
    width: 140px;
    height: 75px;
    padding: 10px;
    flex: 0 0 calc(50% - 7.5px);
  }
  
  .payment-deposit-btn {
    width: 100%;
  }
  
  .payment-deposit-btn .btn {
    width: 100%;
    padding: 12px;
  }
  
  /* Provider Section */
  .provider-section {
    padding: 25px 0;
    border-radius: 12px;
  }
  
  .provider-section .section-header {
    padding-left: 15px;
  }
  
  .provider-logo {
    width: 120px;
    height: 60px;
    margin: 0 15px;
    padding: 12px;
  }
  
  /* Footer */
  .footer {
    margin-left: 0;
    padding: 30px 15px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-section h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .footer-bottom {
    padding-top: 20px;
    font-size: 12px;
    line-height: 1.6;
  }
  
  .social-links {
    gap: 12px;
    margin-top: 12px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link img {
    width: 20px;
    height: 20px;
  }
  
  /* Slider Navigation */
  .slider-nav {
    bottom: 15px;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 90%;
    justify-content: center;
  }
  
  .slider-dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
  }
  
  .slider-dot.active {
    width: 20px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .header {
    padding: 10px 12px;
  }
  
  .logo {
    margin-left: -6px;
  }
  
  .logo img {
    height: 35px;
  }
  
  .header-right {
    gap: 8px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .main-content {
    margin-top: 56px;
    padding: 12px;
  }
  
  .game-tabs-container {
    padding: 0 10px;
  }
  
  .game-tabs-row:first-child {
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .game-tabs-row:first-child .game-tab {
    padding: 12px 6px;
    min-height: 80px;
    gap: 6px;
  }
  
  .game-tabs-row:first-child .game-tab img {
    width: 28px;
    height: 28px;
  }
  
  .game-tabs-row:first-child .game-tab span {
    font-size: 11px;
  }
  
  .game-tabs-row:last-child {
    gap: 8px;
  }
  
  .game-tabs-row:last-child .game-tab {
    padding: 12px 18px;
    font-size: 13px;
    gap: 6px;
    background: transparent;
    min-height: 42px;
  }
  
  .game-tabs-row:last-child .game-tab img {
    width: 18px;
    height: 18px;
  }
  
  .game-card {
    flex: 0 0 120px;
    min-width: 120px;
    height: 140px;
    padding: 0;
    margin: 0;
  }
  
  .game-card img {
    height: 140px;
    display: block;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .payment-icons {
    gap: 12px;
  }
  
  .payment-icon {
    width: calc(50% - 6px);
    height: 65px;
    padding: 8px;
  }
  
  .sidebar {
    width: 260px;
  }
}

