
.body-bg {
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 165, 82, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(20, 20, 30, 0.9) 0%, transparent 40%),
    linear-gradient(135deg, #0a0a0f 0%, #121218 50%, #0c0c12 100%);
  min-height: 100vh;
  background-attachment: fixed;
}


.games-hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, 
    rgba(20, 20, 30, 0.95) 0%, 
    rgba(30, 25, 40, 0.92) 50%, 
    rgba(20, 20, 30, 0.95) 100%);
  position: relative;
  overflow: hidden;
  background-image: url(../img/games-bg);
  background-position: top;
  background-repeat: no-repeat;
}

.games-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #D4A552 25%, 
    #FFD37A 50%, 
    #D4A552 75%, 
    transparent 100%);
  animation: lightScan 3s ease-in-out infinite;
}

.games-hero-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #FFD37A, #D4A552, #FFE8B0);
  -webkit-background-clip: text;
  background-clip: text;
  color: #d4a452;
  text-shadow: 0 0 30px rgba(212, 165, 82, 0.3);
  position: relative;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.games-hero-title span {
  position: relative;
  display: inline-block;
  animation: floatText 3s ease-in-out infinite;
}

.games-hero-subtitle {
  font-size: 1.4rem;
  color: #e0e0ff;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.3s both;
}


.game-search-container {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.6s both;
}

.game-search-group {
  background: rgba(20, 20, 30, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(212, 165, 82, 0.3);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.game-search-group:hover {
  border-color: #D4A552;
  box-shadow: 0 0 20px rgba(212, 165, 82, 0.3);
}

.game-search-input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 20px;
  font-size: 1.1rem;
}

.game-search-input:focus {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: none;
}

.game-search-input::placeholder {
  color: #a0a0c0;
}

.game-search-btn,
.game-filter-btn {
  background: rgba(212, 165, 82, 0.2);
  color: #FFD37A;
  border: none;
  padding: 20px 30px;
  transition: all 0.3s ease;
}

.game-search-btn:hover,
.game-filter-btn:hover {
  background: #D4A552;
  color: #000;
}


.game-categories-section {
  padding: 100px 0;
  position: relative;
}

.category-card {
  background: rgba(15, 15, 25, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 165, 82, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: cardFloatUp 0.8s ease forwards;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: #D4A552;
  box-shadow: 
    0 20px 40px rgba(212, 165, 82, 0.2),
    0 0 80px rgba(212, 165, 82, 0.1);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(212, 165, 82, 0.1) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  font-size: 3.5rem;
  color: #D4A552;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.5s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.2) rotate(15deg);
  filter: drop-shadow(0 0 20px rgba(212, 165, 82, 0.5));
}

.category-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.game-count {
  color: #FFD37A;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.category-btn {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(212, 165, 82, 0.15);
  color: #FFD37A;
  border: 1px solid rgba(212, 165, 82, 0.3);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.category-btn:hover {
  background: #D4A552;
  color: #000;
  transform: translateY(-3px);
}

.action-card:hover .category-icon { color: #FF6B6B; }
.adventure-card:hover .category-icon { color: #4ECDC4; }
.rpg-card:hover .category-icon { color: #FFD166; }
.sports-card:hover .category-icon { color: #06D6A0; }
.racing-card:hover .category-icon { color: #118AB2; }
.strategy-card:hover .category-icon { color: #EF476F; }
.simulation-card:hover .category-icon { color: #7209B7; }
.indie-card:hover .category-icon { color: #FF9E00; }


.featured-games-section {
  padding: 100px 0;
  background: rgba(10, 10, 15, 0.7);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: #FFD37A;
  position: relative;
  animation: textPulse 2s ease-in-out infinite;
}

.view-all-btn {
  color: #D4A552;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.view-all-btn:hover {
  color: #FFD37A;
  gap: 10px;
}

.featured-game-card {
  background: rgba(20, 20, 30, 0.9);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
}

.featured-game-card:hover {
  transform: translateY(-15px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 165, 82, 0.2);
}

.game-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #D4A552;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.game-badge.best-seller {
  background: #FFD700;
}

.game-badge.exclusive {
  background: #FF6B6B;
}

.game-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-game-card:hover .game-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: #D4A552;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: #FFD37A;
  transform: scale(1.05);
}

.game-info {
  padding: 20px;
}

.game-platforms {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.platform-badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-badge.ps {
  background: rgba(0, 87, 255, 0.2);
  color: #0057FF;
  border: 1px solid #0057FF;
}

.platform-badge.xbox {
  background: rgba(16, 185, 0, 0.2);
  color: #10B900;
  border: 1px solid #10B900;
}

.platform-badge.nintendo {
  background: rgba(230, 0, 0, 0.2);
  color: #E60000;
  border: 1px solid #E60000;
}

.platform-badge.pc {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
  border: 1px solid #FF9800;
}

.game-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.featured-game-card:hover .game-title {
  color: #FFD37A;
}

.game-genre {
  color: #a0a0c0;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.game-rating i {
  color: #FFD700;
  font-size: 0.9rem;
}

.rating-text {
  color: #a0a0c0;
  font-size: 0.9rem;
  margin-left: 10px;
}

.game-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.current-price {
  color: #FFD37A;
  font-size: 1.3rem;
  font-weight: 700;
}

.current-price.free {
  color: #4CAF50;
}

.old-price {
  color: #a0a0c0;
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-right: 10px;
}

.download-btn {
  background: rgba(212, 165, 82, 0.15);
  color: #FFD37A;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.download-btn:hover {
  background: #D4A552;
  color: #000;
  transform: translateY(-2px);
}


.platform-games-section {
  padding: 100px 0;
}

.platform-card {
  background: rgba(15, 15, 25, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 165, 82, 0.2);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-10px);
  border-color: #D4A552;
  box-shadow: 
    0 20px 40px rgba(212, 165, 82, 0.2),
    0 0 80px rgba(212, 165, 82, 0.1);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.platform-icon {
  width: 60px;
  height: 60px;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 165, 82, 0.3));
}

.platform-icon i {
  font-size: 3rem;
  color: #D4A552;
}

.platform-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.platform-desc {
  color: #b0b0d0;
  margin-bottom: 20px;
  font-size: 1rem;
}

.platform-games {
  margin-bottom: 25px;
}

.platform-game-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.platform-game-item:hover {
  background: rgba(212, 165, 82, 0.1);
  transform: translateX(5px);
}

.platform-game-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.game-details h6 {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
}

.game-details p {
  color: #a0a0c0;
  margin: 0;
  font-size: 0.8rem;
}

.view-game-btn {
  margin-left: auto;
  background: rgba(212, 165, 82, 0.15);
  color: #FFD37A;
  padding: 5px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-game-btn:hover {
  background: #D4A552;
  color: #000;
}

.platform-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #D4A552, #FFD37A);
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.platform-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 165, 82, 0.4);
}


.ps-platform:hover { border-color: #0057FF; }
.xbox-platform:hover { border-color: #10B900; }
.nintendo-platform:hover { border-color: #E60000; }
.pc-platform:hover { border-color: #FF9800; }


.new-releases-section {
  padding: 100px 0;
  background: rgba(10, 10, 15, 0.7);
}

.release-filters {
  display: flex;
  gap: 10px;
}

.filter-btn {
  background: rgba(212, 165, 82, 0.1);
  color: #FFD37A;
  border: 1px solid rgba(212, 165, 82, 0.3);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #D4A552;
  color: #000;
  border-color: #D4A552;
}

.scroll-row {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scroll-inner {
  display: flex;
  gap: 25px;
  animation: scrollLeft 25s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.release-game-card {
  min-width: 280px;
  background: rgba(20, 20, 30, 0.9);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.release-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(212, 165, 82, 0.2);
}

.release-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: #FFD37A;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.release-game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.release-game-card:hover img {
  transform: scale(1.1);
}

.release-info {
  padding: 20px;
}

.release-info h5 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.release-info p {
  color: #a0a0c0;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.release-btn {
  display: inline-block;
  background: rgba(212, 165, 82, 0.15);
  color: #FFD37A;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.release-btn:hover {
  background: #D4A552;
  color: #000;
  transform: translateY(-2px);
}


.downloads-section {
  padding: 100px 0;
}

.download-card {
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(212, 165, 82, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.download-card:hover {
  transform: translateY(-10px);
  border-color: #D4A552;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(212, 165, 82, 0.15);
}

.download-icon {
  font-size: 3rem;
  color: #FF6B6B;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s ease;
}

.download-card:hover .download-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.5));
}

.download-card h5 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.download-card p {
  color: #a0a0c0;
  margin-bottom: 20px;
}

.download-file-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4A552, #FFD37A);
  color: #000;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
}

.download-file-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 165, 82, 0.3);
}


.games-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, 
    rgba(212, 165, 82, 0.1) 0%, 
    rgba(20, 20, 30, 0.9) 50%, 
    rgba(212, 165, 82, 0.1) 100%);
  border-top: 1px solid rgba(212, 165, 82, 0.2);
  border-bottom: 1px solid rgba(212, 165, 82, 0.2);
}

.games-cta-section h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.games-cta-section p {
  font-size: 1.2rem;
  color: #b0b0d0;
  max-width: 600px;
}

.btn-compare {
  padding: 15px 40px;
  background: linear-gradient(135deg, #D4A552, #FFD37A);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-compare:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 30px rgba(212, 165, 82, 0.4),
    0 0 60px rgba(212, 165, 82, 0.2);
}

.btn-compare i {
  transition: transform 0.4s ease;
}

.btn-compare:hover i {
  transform: translateX(5px);
}


.game-filter-modal {
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 165, 82, 0.3);
  color: #fff;
}

.game-filter-modal .modal-header {
  border-bottom: 1px solid rgba(212, 165, 82, 0.3);
}

.game-filter-modal .modal-title {
  color: #FFD37A;
}

.game-filter-modal .btn-close {
  filter: invert(1);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-checkbox:hover {
  color: #FFD37A;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #D4A552;
}

.game-detail-modal {
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 165, 82, 0.3);
  color: #fff;
}


@keyframes cardFloatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(212, 165, 82, 0.3), 
                   0 0 40px rgba(212, 165, 82, 0.2); }
  100% { text-shadow: 0 0 30px rgba(212, 165, 82, 0.5), 
                     0 0 60px rgba(212, 165, 82, 0.3); }
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes textPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(212, 165, 82, 0.5); }
  50% { text-shadow: 0 0 20px rgba(212, 165, 82, 0.8); }
}

@keyframes lightScan {
  0%, 100% { transform: translateX(-100%); opacity: 0.5; }
  50% { transform: translateX(100%); opacity: 1; }
}


.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
.category-card:nth-child(7) { animation-delay: 0.7s; }
.category-card:nth-child(8) { animation-delay: 0.8s; }

.featured-game-card { animation: fadeInUp 0.6s ease forwards; }
.featured-game-card:nth-child(1) { animation-delay: 0.1s; }
.featured-game-card:nth-child(2) { animation-delay: 0.2s; }
.featured-game-card:nth-child(3) { animation-delay: 0.3s; }
.featured-game-card:nth-child(4) { animation-delay: 0.4s; }

.platform-card { animation: fadeInUp 0.6s ease forwards; }
.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.2s; }
.platform-card:nth-child(3) { animation-delay: 0.3s; }
.platform-card:nth-child(4) { animation-delay: 0.4s; }

.download-card { animation: fadeInUp 0.6s ease forwards; }
.download-card:nth-child(1) { animation-delay: 0.1s; }
.download-card:nth-child(2) { animation-delay: 0.2s; }
.download-card:nth-child(3) { animation-delay: 0.3s; }


@media (max-width: 768px) {
  .games-hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .games-cta-section h3 {
    font-size: 2rem;
  }
  
  .game-search-group {
    flex-direction: column;
  }
  
  .game-search-input,
  .game-search-btn,
  .game-filter-btn {
    width: 100%;
    border-radius: 0;
  }
  
  .release-filters {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .scroll-inner {
    animation-duration: 20s;
  }
}


@media (prefers-reduced-motion: no-preference) {
  .category-card,
  .featured-game-card,
  .platform-card,
  .release-game-card,
  .download-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .category-card.visible,
  .featured-game-card.visible,
  .platform-card.visible,
  .release-game-card.visible,
  .download-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
}


.category-card,
.featured-game-card,
.platform-card {
  position: relative;
}

.category-card::after,
.featured-game-card::after,
.platform-card::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at center, 
    rgba(212, 165, 82, 0.1) 0%, 
    transparent 70%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.category-card:hover::after,
.featured-game-card:hover::after,
.platform-card:hover::after {
  opacity: 1;
}


        .game-genre-badge {
            display: inline-block;
            padding: 4px 12px;
            margin: 2px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .platform-badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 10px;
            margin: 2px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .ps-badge { background: #006FCD; color: white; }
        .xbox-badge { background: #107C10; color: white; }
        .nintendo-badge { background: #E60012; color: white; }
        .pc-badge { background: #9C27B0; color: white; }
        
        .game-rating {
            color: #ffc107;
            font-weight: bold;
        }
        
        .game-price {
            font-size: 1.25rem;
            font-weight: bold;
            color: #0d6efd;
        }
        
        .game-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .game-image {
            height: 200px;
            object-fit: cover;
            border-radius: 8px 8px 0 0;
        }
        
        .filter-btn {
            margin: 5px;
            transition: all 0.3s;
        }
        
        .filter-btn.active {
            background: #0d6efd;
            color: white;
            border-color: #0d6efd;
        }
        
        .compare-btn {
            background: linear-gradient(135deg, #198754, #20c997);
            border: none;
            color: white;
        }
        
        .compare-btn:hover {
            background: linear-gradient(135deg, #157347, #1ba87e);
            color: white;
        }
        
        .quick-view-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
        }
        
        .quick-view-btn:hover {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        
        .game-modal-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        
        .feature-list li {
            padding: 5px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            color: #0dcaf0;
            margin-right: 10px;
        }
        
        .modal-content {
            background: #1a1a1a;
            color: white;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .modal-header {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .modal-footer {
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .stat-card {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            color: #0dcaf0;
            margin: 0;
        }
        
        .stat-label {
            color: #aaa;
            margin: 0;
        }
   
        ::-webkit-scrollbar {
    width: 12px;
    background: #0a0e17;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #D4A552, #B8860B);
    border-radius: 10px;
    border: 2px solid #0a0e17;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #B8860B, #D4A552);
}
.game-card, .console-card, .category-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateX(0) rotateY(0);
}
