/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: auto;
}

/* Top Navigation */
.top-nav {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

.nav-center {
  flex: 1;
  max-width: 400px;
  margin: 0 1rem;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 0.9rem;
  color: #333;
}

.search-input::placeholder {
  color: #666;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
}

.nav-right {
  display: flex;
  align-items: center;
}

/* User button styles removed - no login functionality */

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 2000;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.menu-logo-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.close-menu:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.menu-content {
  padding: 1rem 0;
}

.menu-section {
  margin-bottom: 2rem;
}

.menu-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.menu-item:hover,
.menu-item.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.menu-text {
  font-weight: 500;
}

/* Main Content */
.main-content {
  margin-top: 70px;
  padding-bottom: 80px;
}

/* Featured Banner */
.featured-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-bottom: 2rem;
  z-index: 1;
  perspective: 1000px;
}

.banner-slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  width: 100%;
  pointer-events: auto;
  user-select: none;
  touch-action: pan-y pinch-zoom;
  will-change: transform;
  cursor: grab;
  position: relative;
}

.banner-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.banner-image {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 2rem;
}

.banner-content {
  color: white;
  max-width: 400px;
}

.banner-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.banner-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s;
}

.banner-btn:hover {
  transform: translateY(-2px);
}

.banner-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

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

.banner-dot.active {
  background: white;
}

/* Banner navigation arrows */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 20;
}

.banner-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
  left: 20px;
}

.banner-nav.next {
  right: 20px;
}

/* Banner navigation arrows - show on desktop, hide on mobile */
.banner-nav {
  display: flex;
}

@media (max-width: 768px) {
  .banner-nav {
    display: none;
  }
}

/* Quick Categories */
.quick-categories {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.category-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-decoration: none;
  color: white;
  min-width: 80px;
  transition: transform 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-icon {
  font-size: 2rem;
}

.category-name {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.view-more {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.view-more:hover {
  color: white;
}

/* Hot Games */
.hot-games {
  margin-bottom: 2rem;
}

.games-horizontal-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  margin: 0 -1rem;
}

/* Add fade effect to indicate scrollable content */
.games-horizontal-container::before,
.games-horizontal-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 5;
}

.games-horizontal-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
}

.games-horizontal-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
}

/* Hide fade effects on mobile */
@media (max-width: 767px) {
  .games-horizontal-container::before,
  .games-horizontal-container::after {
    display: none;
  }
  
  .games-horizontal-container {
    padding: 0;
    margin: 0;
    gap: 0.5rem;
  }
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.15);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.scroll-btn:active {
  transform: translateY(-50%) scale(0.9);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.scroll-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-left {
  left: -10px;
}

.scroll-right {
  right: -10px;
}

/* Hide scroll buttons on mobile */
@media (max-width: 767px) {
  .scroll-btn {
    display: none;
  }
  
  .games-horizontal-container {
    padding: 0;
  }
}

/* Enhanced scroll button animations */
.scroll-btn span {
  display: block;
  transition: transform 0.2s ease;
}

.scroll-btn:hover span {
  transform: scale(1.2);
}

.scroll-btn:active span {
  transform: scale(0.9);
}

/* Add pulse animation for better visibility */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
}

.scroll-btn {
  animation: pulse 2s infinite;
}

.scroll-btn:hover {
  animation: none;
}

.games-horizontal {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem;
  scroll-behavior: smooth;
  position: relative;
}

/* Show scrollbar on PC for better UX */
@media (min-width: 768px) {
  .games-horizontal {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }
  
  .games-horizontal::-webkit-scrollbar {
    display: block;
    height: 6px;
  }
  
  .games-horizontal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }
  
  .games-horizontal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
  }
  
  .games-horizontal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}

/* Hide scrollbar on mobile */
@media (max-width: 767px) {
  .games-horizontal {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .games-horizontal::-webkit-scrollbar {
    display: none;
  }
}

.game-item {
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-item:hover {
  transform: translateY(-5px);
}

.game-link {
  text-decoration: none;
  color: inherit;
}

.game-thumb {
  position: relative;
  height: 120px;
  overflow: hidden;
}

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

.game-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.game-item:hover .game-play {
  opacity: 1;
}

.hot-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.game-details {
  padding: 1rem;
}

.game-name {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #ffd700;
  font-size: 0.8rem;
}

.rating-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

/* Advertisement Section */
.ad-section {
  margin: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ad-label {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.ad-content {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

/* New Games */
.new-games {
  margin-bottom: 2rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.game-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

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

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

.play-icon {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.new-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(45deg, #00b894, #00a085);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.game-info {
  padding: 1rem;
}

.game-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.game-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-type {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}

.game-plays {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* Popular Categories */
.popular-categories {
  margin-bottom: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.category-card {
  position: relative;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.action-bg {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.puzzle-bg {
  background: linear-gradient(45deg, #a29bfe, #6c5ce7);
}

.racing-bg {
  background: linear-gradient(45deg, #fd79a8, #e84393);
}

.soccer-bg {
  background: linear-gradient(45deg, #00b894, #00a085);
}

.category-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 1rem;
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Call to Action */
.cta-section {
  margin: 3rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.cta-btn.primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
  padding: 0.5rem;
  border-radius: 10px;
}

.nav-item:hover,
.nav-item.active {
  color: #667eea;
}

.nav-icon {
  font-size: 1.2rem;
}

.nav-text {
  font-size: 0.7rem;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 2rem 1rem 1rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
  
  .banner-title {
    font-size: 1.5rem;
  }
  
  .banner-desc {
    font-size: 0.9rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .banner-overlay {
    padding: 1rem;
  }
  
  .banner-title {
    font-size: 1.3rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
} 

/* About Page Styles */
.about-content {
  padding: 2rem 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-text:last-child {
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

.banner-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  .banner-stats {
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 0.8rem 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .banner-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 0.6rem 1rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
} 

/* Contact Page Styles */
.contact-content {
  padding: 2rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  padding: 2rem;
}

.contact-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateX(5px);
}

.method-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.method-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.method-content p {
  color: #666;
  margin-bottom: 0.3rem;
}

.response-time {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

.contact-form {
  padding: 2rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.faq-section {
  padding: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-method {
    padding: 0.8rem;
  }
  
  .method-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-content {
    padding: 1rem 0;
  }
  
  .contact-info,
  .contact-form,
  .faq-section {
    padding: 1rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .method-icon {
    align-self: center;
  }
} 

/* Search Page Styles */
.search-form-container {
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-form {
  width: 100%;
}

.search-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.search-form-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1.1rem;
  background: transparent;
}

.search-form-input::placeholder {
  color: #999;
}

.search-form-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-form-btn:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-1px);
}

.search-results {
  padding: 2rem 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.results-header {
  text-align: center;
  margin-bottom: 3rem;
}

.results-count {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}

.results-desc {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Responsive adjustments for search page */
@media (max-width: 768px) {
  .search-form-container {
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  
  .search-input-group {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .search-form-input {
    padding: 1rem;
    border-radius: 15px 15px 0 0;
  }
  
  .search-form-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 15px 15px;
  }
  
  .search-results {
    padding: 1.5rem 0;
  }
  
  .results-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .search-form-container {
    margin-top: 1rem;
  }
  
  .search-form-input {
    font-size: 1rem;
  }
  
  .search-form-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  
  .results-header {
    margin-bottom: 1.5rem;
  }
  
  .results-count,
  .results-desc {
    font-size: 1rem;
  }
} 

/* Privacy Page Styles */
.privacy-content {
  padding: 2rem 0;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.privacy-text:last-child {
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
}

.info-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.info-item p {
  color: #666;
  line-height: 1.6;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.privacy-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: #666;
  line-height: 1.6;
}

.privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  color: #666;
}

.contact-info strong {
  color: #333;
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
  .privacy-content {
    padding: 1.5rem 0;
  }
  
  .privacy-section {
    margin-bottom: 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-item {
    padding: 1.2rem;
  }
  
  .privacy-list li {
    padding-left: 1.5rem;
  }
  
  .contact-info {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 1rem 0;
  }
  
  .privacy-text {
    font-size: 1rem;
  }
  
  .info-item h3 {
    font-size: 1.1rem;
  }
  
  .privacy-list li {
    padding-left: 1.2rem;
    font-size: 0.95rem;
  }
} 

/* Game Detail Page Styles */
.game-header {
  padding: 2rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.game-info-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.game-image-large {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-main-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.game-image-large:hover .game-overlay-large {
  opacity: 1;
}

.play-button-large {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button-large:hover {
  transform: scale(1.05);
}

.game-details-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.game-title-large {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.game-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.game-type-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.game-rating-large {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars-large {
  font-size: 1.2rem;
}

.rating-score {
  font-weight: 600;
  font-size: 1.1rem;
}

.game-description-short {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.game-stats-header {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.game-content {
  padding: 3rem 0;
}

.game-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.game-description {
  grid-column: 1 / -1;
}

.game-description-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.game-description-content h1,
.game-description-content h2,
.game-description-content h3 {
  color: #333;
  margin: 1.5rem 0 1rem 0;
}

.game-description-content p {
  margin-bottom: 1rem;
}

.game-description-content ul,
.game-description-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.game-description-content li {
  margin-bottom: 0.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #666;
}

.features-list li:last-child {
  border-bottom: none;
}

.instructions {
  color: #666;
  line-height: 1.6;
}

.related-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.related-game-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-game-item:hover {
  transform: translateY(-3px);
}

.related-game-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.related-game-info {
  padding: 1rem;
}

.related-game-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.related-game-type {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive adjustments for game detail page */
@media (max-width: 768px) {
  .game-info-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .game-title-large {
    font-size: 2rem;
  }
  
  .game-meta {
    gap: 1rem;
  }
  
  .game-stats-header {
    gap: 1rem;
  }
  
  .game-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .related-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .game-header {
    padding: 1.5rem 0;
  }
  
  .game-title-large {
    font-size: 1.5rem;
  }
  
  .game-description-short {
    font-size: 1rem;
  }
  
  .game-content {
    padding: 2rem 0;
  }
  
  .related-games-grid {
    grid-template-columns: 1fr;
  }
} 