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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  overflow-x: hidden;
}

/* Header styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  z-index: 2;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #007bd6, #a200c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.logo-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shine 3s infinite;
}

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

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, rgba(0,123,214,0.1), rgba(162,0,201,0.1));
  color: #007bd6;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-box {
  position: relative;
  width: 200px;
}

.search-box input {
  width: 100%;
  padding: 10px 35px 10px 15px;
  border: 1px solid #eee;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #007bd6;
  box-shadow: 0 0 0 3px rgba(0,123,214,0.1);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-icon {
  font-size: 18px;
}

.login {
  background: #2a2a2a;
}

.login:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.register {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  box-shadow: 0 4px 15px rgba(0,123,214,0.3);
}

.register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,214,0.4);
}

/* Banner */
.banner {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  color: white;
  padding: 12px 20px;
  margin-top: 71px;
}

.banner-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-icon {
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.banner-text {
  flex: 1;
  font-size: 15px;
}

.banner-text strong {
  margin-right: 8px;
}

.banner-btn {
  padding: 6px 15px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: white;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin-top: 71px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  opacity: 0.5;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-title-top {
  display: block;
  font-size: 24px;
  color: #007bd6;
  margin-bottom: 15px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-title-main {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, #007bd6, #a200c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-title-sub {
  display: block;
  font-size: 20px;
  color: #999;
  margin-bottom: 25px;
  line-height: 1.4;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #999;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  color: white;
  box-shadow: 0 4px 15px rgba(0,123,214,0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,123,214,0.4);
}

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

.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 20px;
}

.feature-icon {
  font-size: 20px;
}

.feature-text {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero-image {
  position: relative;
  height: 500px;
  z-index: 2;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-cards .game-card {
  position: absolute;
  width: 140px;
  height: 180px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: float 6s infinite;
  border: 1px solid rgba(255,255,255,0.1);
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(0,123,214,0.2), rgba(162,0,201,0.2));
}

.card-2 {
  top: 5%;
  right: 15%;
  animation-delay: -1.5s;
  background: linear-gradient(135deg, rgba(162,0,201,0.2), rgba(0,123,214,0.2));
}

.card-3 {
  bottom: 15%;
  left: 15%;
  animation-delay: -3s;
  background: linear-gradient(135deg, rgba(0,123,214,0.2), rgba(162,0,201,0.2));
}

.card-4 {
  bottom: 5%;
  right: 10%;
  animation-delay: -4.5s;
  background: linear-gradient(135deg, rgba(162,0,201,0.2), rgba(0,123,214,0.2));
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -15px) rotate(5deg); }
  50% { transform: translate(0, -25px) rotate(0deg); }
  75% { transform: translate(10px, -15px) rotate(-5deg); }
}

/* Mobile menu button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-title-main {
    font-size: clamp(32px, 4vw, 42px);
  }

  .hero-title-sub {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .feature {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    height: 300px;
  }

  .game-card {
    width: 100px;
    height: 130px;
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-title-main {
    font-size: clamp(28px, 3vw, 36px);
  }

  .hero-image {
    height: 250px;
  }

  .game-card {
    width: 80px;
    height: 100px;
    font-size: 30px;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-header .gradient-text {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.section-subtext {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Games Section */
.games-section {
  padding: 80px 20px;
  background: white;
  position: relative;
  z-index: 1;
}

.games-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.games-section .section-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: #333;
  margin-bottom: 15px;
}

.games-section .section-subtext {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.games-section .games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .games-section .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .games-section .game-card {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .games-section .games-grid {
    gap: 15px;
    margin-top: 20px;
  }
  
  .games-section .game-card {
    padding: 20px 15px;
  }
}

.games-section .game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.games-section .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.games-section .game-card .game-image {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #007bd6, #a200c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.games-section .game-card:hover .game-image {
  transform: scale(1.1);
}

.games-section .game-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 15px 0 10px;
}

.games-section .game-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.games-section .game-card .play-btn {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.games-section .game-card .play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 214, 0.3);
}

/* Hero Floating Cards */
.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-cards .game-card {
  position: absolute;
  width: 140px;
  height: 180px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: float 6s infinite;
  border: 1px solid rgba(255,255,255,0.1);
}

.floating-cards .card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(0,123,214,0.2), rgba(162,0,201,0.2));
}

.floating-cards .card-2 {
  top: 5%;
  right: 15%;
  animation-delay: -1.5s;
  background: linear-gradient(135deg, rgba(162,0,201,0.2), rgba(0,123,214,0.2));
}

.floating-cards .card-3 {
  bottom: 15%;
  left: 15%;
  animation-delay: -3s;
  background: linear-gradient(135deg, rgba(0,123,214,0.2), rgba(162,0,201,0.2));
}

.floating-cards .card-4 {
  bottom: 5%;
  right: 10%;
  animation-delay: -4.5s;
  background: linear-gradient(135deg, rgba(162,0,201,0.2), rgba(0,123,214,0.2));
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -15px) rotate(5deg); }
  50% { transform: translate(0, -25px) rotate(0deg); }
  75% { transform: translate(10px, -15px) rotate(-5deg); }
}

/* Mobile menu button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-title-main {
    font-size: clamp(32px, 4vw, 42px);
  }

  .hero-title-sub {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .feature {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    height: 300px;
  }

  .game-card {
    width: 100px;
    height: 130px;
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-title-main {
    font-size: clamp(28px, 3vw, 36px);
  }

  .hero-image {
    height: 250px;
  }

  .game-card {
    width: 80px;
    height: 100px;
    font-size: 30px;
  }
}

/* How to Play Section */
.how-to-play {
  padding: 80px 20px;
  background: white;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bd6, #a200c9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.step-card p {
  color: #666;
  line-height: 1.5;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Winners Section */
.winners-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.winner-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.winner-card:hover {
  transform: translateY(-10px);
}

.winner-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0,123,214,0.1), rgba(162,0,201,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.winner-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.game-name {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.win-amount {
  color: #007bd6;
  font-weight: 600;
  font-size: 18px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.testimonial-rating {
  color: #ffd700;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  font-size: 24px;
  background: #e6f4ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  color: #333;
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  font-size: 14px;
}

/* Download App Section */
.download-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
}

.download-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.download-text h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
}

.download-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #eee;
}

.app-features {
  list-style: none;
  margin-bottom: 30px;
}

.app-features li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #eee;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.app-download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.download-image {
  font-size: 200px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Additional Media Queries */
@media (max-width: 768px) {
  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-image {
    font-size: 150px;
    margin: 0 auto;
  }

  .app-features {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .winner-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card {
    text-align: center;
  }

  .testimonial-author {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .games-section .games-grid,
  .steps-container,
  .winners-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .download-image {
    font-size: 120px;
  }

  .app-download-btn {
    display: block;
    margin: 0 auto 15px;
    max-width: 250px;
  }
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.1;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: 20px;
}

.about-hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

/* Company Overview */
.company-overview {
  padding: 80px 20px;
  background: #fff;
}

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

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-text h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
}

.overview-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

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

.achievement-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.achievement-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.achievement-info p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.about-card {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  border-radius: 20px;
  padding: 40px;
  color: white;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 30px;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat h4 {
  font-size: 24px;
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Mission & Values */
.mission-values {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.value-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 20px;
  background: white;
}

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

.team-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  font-size: 64px;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.position {
  color: #007bd6;
  font-weight: bold;
  margin-bottom: 10px;
}

.bio {
  color: #666;
  font-size: 14px;
}

/* Certifications */
.certifications {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.cert-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-10px);
}

.cert-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cert-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.cert-card p {
  color: #666;
  line-height: 1.6;
}

/* Active Navigation Link */
nav a.active {
  color: #007bd6;
  font-weight: bold;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .achievement-list li {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .achievement-icon {
    margin: 0 auto;
  }

  .card-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .values-grid,
  .team-grid,
  .cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 60px 20px;
  }

  .achievement-list li {
    margin-bottom: 30px;
  }

  .team-card,
  .cert-card {
    padding: 20px;
  }

  .team-image {
    font-size: 48px;
  }
}

/* Games Page Styles */
.games-hero {
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.games-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.1;
}

.games-hero-content {
  position: relative;
  z-index: 1;
}

.games-hero h1 {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: 20px;
}

.games-hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

/* Game Categories */
.game-categories {
  padding: 60px 20px;
  background: #fff;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 24px;
  border: none;
  background: #f0f0f0;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-tab.active {
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
}

.category-tab:hover:not(.active) {
  background: #e0e0e0;
}

/* Featured Games */
.featured-games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.featured-game-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.game-preview {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.game-info {
  padding: 30px;
}

.game-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.game-info p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.game-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.game-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

.game-stats .icon {
  font-size: 20px;
}

.play-now-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.play-now-btn:hover {
  transform: scale(1.05);
}

/* Game Meta */
.game-meta {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 14px;
  color: #666;
}

/* How to Play Games Section */
.how-to-play-games {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

/* Game Features Section */
.game-features {
  padding: 80px 20px;
  background: white;
}

/* Responsive Styles for Games Page */
@media (max-width: 768px) {
  .category-tabs {
    gap: 10px;
  }

  .category-tab {
    padding: 10px 20px;
    font-size: 14px;
  }

  .featured-games {
    grid-template-columns: 1fr;
  }

  .game-preview {
    height: 160px;
    font-size: 60px;
  }

  .game-info {
    padding: 20px;
  }

  .game-stats {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .games-hero {
    padding: 60px 20px;
  }

  .category-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .category-tab {
    text-align: center;
  }

  .game-meta {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

/* Blog Page Styles */
.blog-hero {
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.1;
}

.blog-hero-content {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

/* Featured Article */
.featured-article {
  padding: 60px 20px;
  background: #fff;
}

.article-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-card.featured .article-image {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  min-height: 400px;
}

.article-card.featured .article-content {
  padding: 40px;
}

.article-card.featured h2 {
  font-size: 32px;
  margin: 15px 0;
  color: #333;
  line-height: 1.3;
}

.article-card.featured p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Blog Categories */
.blog-categories {
  padding: 60px 20px;
  background: #f8f9fa;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-filter {
  padding: 10px 20px;
  border: none;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-filter.active {
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
}

.category-filter:hover:not(.active) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.article-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-10px);
}

.article-image {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.article-content {
  padding: 25px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.category {
  background: #f0f7ff;
  color: #007bd6;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
}

.date {
  color: #666;
  font-size: 14px;
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
}

.article-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #007bd6;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.read-more:hover {
  transform: translateX(5px);
}

/* Load More Button */
.load-more {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  padding: 12px 30px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 20px;
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  padding: 15px 30px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
}

/* Responsive Styles for Blog Page */
@media (max-width: 768px) {
  .article-card.featured {
    grid-template-columns: 1fr;
  }

  .article-card.featured .article-image {
    min-height: 300px;
    font-size: 80px;
  }

  .article-card.featured .article-content {
    padding: 30px;
  }

  .article-card.featured h2 {
    font-size: 24px;
  }

  .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .category-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .category-filter {
    text-align: center;
  }

  .article-card.featured .article-image {
    min-height: 200px;
    font-size: 64px;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Gift Codes Page Styles */
.gift-codes-hero {
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.gift-codes-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.1;
}

.gift-codes-hero-content {
  position: relative;
  z-index: 1;
}

.gift-codes-hero h1 {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: 20px;
}

.gift-codes-hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

/* Active Codes Section */
.active-codes {
  padding: 60px 20px;
  background: #fff;
}

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

.code-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.code-card:hover {
  transform: translateY(-10px);
}

.code-header {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.code-type {
  font-weight: 500;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 15px;
}

.expiry {
  font-size: 14px;
  opacity: 0.9;
}

.code-content {
  padding: 25px;
}

.code-content h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.code-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.code-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.code-value .label {
  color: #666;
  font-size: 14px;
}

.code-value .value {
  color: #007bd6;
  font-weight: bold;
  font-size: 18px;
}

.copy-code {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.copy-code:hover {
  transform: translateY(-2px);
}

/* Terms & Conditions */
.terms-conditions {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.term-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.term-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.term-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.term-card p {
  color: #666;
  line-height: 1.6;
}

/* VIP Codes Section */
.vip-codes {
  padding: 80px 20px;
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
}

.vip-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.vip-text h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
}

.vip-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.vip-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.vip-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.vip-benefits .icon {
  font-size: 24px;
}

.vip-btn {
  display: inline-block;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.vip-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.vip-image {
  position: relative;
}

.vip-card {
  width: 300px;
  height: 180px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: rotate(-5deg);
}

/* Responsive Styles for Gift Codes Page */
@media (max-width: 768px) {
  .codes-grid {
    grid-template-columns: 1fr;
  }

  .vip-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .vip-benefits li {
    justify-content: center;
  }

  .vip-card {
    width: 250px;
    height: 150px;
    font-size: 36px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .code-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .code-value {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .vip-card {
    width: 200px;
    height: 120px;
    font-size: 30px;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(to right, #004aad, #6f007d);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.1;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Information Section */
.contact-info-section {
  padding: 60px 20px;
  background: #fff;
}

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

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

.info-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.contact-info-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.info-link {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.info-link:hover {
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.contact-form-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-form-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bd6;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Contact Info Container */
.contact-info-container {
  background: linear-gradient(135deg, #004aad, #6f007d);
  border-radius: 20px;
  padding: 40px;
  color: white;
}

.contact-info-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-details .icon {
  font-size: 24px;
}

.contact-details .detail h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-details .detail p {
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: white;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.toggle-icon {
  font-size: 24px;
  color: #007bd6;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-container {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-form-container,
  .contact-info-container {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-details li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-details .icon {
    margin-bottom: 10px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Add this after the header styles */
.about-hero,
.games-hero,
.blog-hero,
.gift-codes-hero,
.contact-hero {
  margin-top: 71px;  /* Same as header height */
}

/* Update existing hero sections */
.about-hero,
.games-hero,
.blog-hero,
.gift-codes-hero,
.contact-hero {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-hero::before,
.games-hero::before,
.blog-hero::before,
.gift-codes-hero::before,
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
}

.about-hero-content,
.games-hero-content,
.blog-hero-content,
.gift-codes-hero-content,
.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1,
.games-hero h1,
.blog-hero h1,
.gift-codes-hero h1,
.contact-hero h1 {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: 20px;
}

.about-hero p,
.games-hero p,
.blog-hero p,
.gift-codes-hero p,
.contact-hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

/* Update media queries */
@media (max-width: 768px) {
  .about-hero,
  .games-hero,
  .blog-hero,
  .gift-codes-hero,
  .contact-hero {
    padding: 60px 20px;
  }
}

/* Update Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  background: linear-gradient(135deg, #007bd6, #a200c9);
  color: white;
}

.stats .card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stats .card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.stats .icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.stats h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats p {
  font-size: 16px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 50px 20px;
  }
  
  .stats .card {
    padding: 25px 15px;
  }
  
  .stats h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
  }
  
  .stats .card {
    padding: 20px 15px;
  }
  
  .stats .icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .stats h3 {
    font-size: 24px;
  }
  
  .stats p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 15px;
  }
  
  .stats .card {
    padding: 15px 10px;
  }
  
  .stats .icon {
    font-size: 28px;
  }
  
  .stats h3 {
    font-size: 20px;
  }
  
  .stats p {
    font-size: 13px;
  }
}

/* Update Features Section */
.features-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.features-section h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
  color: #333;
}

.features-subtext {
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0,123,214,0.1), rgba(162,0,201,0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

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

/* Footer Styles */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 0;
  margin-top: 80px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #007bd6, #a200c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: #999;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  transform: translateY(-3px);
}

.footer-section h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bd6;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #999;
}

.contact-info .icon {
  font-size: 20px;
}

.footer .download-buttons {
  margin-top: 20px;
}

.footer .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .download-btn:hover {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #111;
  padding: 20px 0;
  margin-top: 60px;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #666;
}

.payment-methods {
  display: flex;
  gap: 15px;
}

.payment-icon {
  font-size: 24px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }
}

/* Games Page Specific Styles */
.featured-games-section {
  padding: 80px 20px;
  background: white;
}

.featured-games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.featured-game-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.game-preview {
  background: linear-gradient(135deg, #007bd6, #a200c9);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.1;
}

.game-preview .game-icon {
  font-size: 100px;
  position: relative;
  z-index: 1;
  animation: float 6s infinite;
}

.game-info {
  padding: 30px;
}

.game-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.game-info p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.game-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.game-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

.game-stats .icon {
  font-size: 20px;
}

.play-now-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,123,214,0.3);
}

.play-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,123,214,0.4);
}

/* All Games Grid */
.all-games-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.game-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #007bd6, #a200c9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.game-card .game-image {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0,123,214,0.1), rgba(162,0,201,0.1));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.game-card:hover .game-image {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0,123,214,0.2), rgba(162,0,201,0.2));
}

.game-card h3 {
  font-size: 20px;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.game-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #666;
  font-size: 14px;
}

.game-meta .players {
  color: #007bd6;
}

.game-meta .rating {
  color: #ffd700;
}

.play-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,123,214,0.3);
}

/* Category Tabs */
.game-categories {
  padding: 40px 20px;
  background: white;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-tab {
  padding: 12px 25px;
  border: none;
  background: #f0f0f0;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #666;
}

.category-tab.active {
  background: linear-gradient(to right, #007bd6, #a200c9);
  color: white;
  box-shadow: 0 5px 15px rgba(0,123,214,0.3);
}

.category-tab:hover:not(.active) {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .featured-games {
    grid-template-columns: 1fr;
  }

  .game-preview {
    height: 200px;
  }

  .game-preview .game-icon {
    font-size: 80px;
  }

  .category-tabs {
    gap: 10px;
  }

  .category-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .game-preview {
    height: 180px;
  }

  .game-preview .game-icon {
    font-size: 60px;
  }

  .game-info {
    padding: 20px;
  }

  .game-stats {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .category-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .category-tab {
    text-align: center;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .header-container {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .featured-games {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .search-box {
    width: 180px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .featured-game-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .game-preview {
    height: 220px;
  }

  .game-info {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }

  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 20px;
  }

  nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .search-box {
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-title-main {
    font-size: clamp(32px, 5vw, 42px);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .category-tab {
    white-space: nowrap;
  }

  .featured-game-card {
    margin: 0 auto;
  }

  .game-stats {
    flex-wrap: wrap;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 24px;
  }

  .hero-title-main {
    font-size: clamp(28px, 4vw, 36px);
  }

  .hero-title-sub {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .featured-games {
    grid-template-columns: 1fr;
  }

  .game-preview {
    height: 180px;
  }

  .game-preview .game-icon {
    font-size: 80px;
  }

  .game-info h2 {
    font-size: 20px;
  }

  .game-info p {
    font-size: 14px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    padding: 20px;
  }

  .game-card .game-image {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
  .header-container {
    padding: 10px 15px;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .banner-btn {
    width: 100%;
    text-align: center;
  }

  .hero-features {
    flex-direction: column;
  }

  .feature {
    width: 100%;
  }

  .game-meta {
    flex-direction: column;
    gap: 5px;
  }

  .category-tabs {
    gap: 8px;
  }

  .category-tab {
    padding: 8px 15px;
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-subtext {
    font-size: 14px;
  }

  .feature-card {
    padding: 20px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-section {
    text-align: center;
  }

  .contact-info li {
    justify-content: center;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .nav-links a:hover,
  .btn:hover,
  .game-card:hover,
  .featured-game-card:hover,
  .play-btn:hover,
  .play-now-btn:hover,
  .category-tab:hover,
  .social-link:hover,
  .footer-links a:hover {
    transform: none;
    box-shadow: none;
  }

  .game-card:active,
  .featured-game-card:active,
  .play-btn:active,
  .play-now-btn:active,
  .category-tab:active {
    transform: scale(0.98);
  }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-title-main {
    font-size: 56px;
  }

  .featured-games {
    grid-template-columns: repeat(3, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Print Styles */
@media print {
  .header,
  .banner,
  .nav-actions,
  .play-btn,
  .play-now-btn,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .game-card,
  .featured-game-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  body {
    background: #121212;
    color: #fff;
  }

  .header {
    background: rgba(18, 18, 18, 0.95);
  }

  .nav-links a {
    color: #fff;
  }

  .search-box input {
    background: #1e1e1e;
    color: #fff;
    border-color: #333;
  }

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

  .game-card,
  .featured-game-card,
  .feature-card,
  .disclaimer-card,
  .legal-section {
    background: #1e1e1e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .game-card h3,
  .game-info h2,
  .feature-card h3,
  .disclaimer-card h2,
  .legal-section h3 {
    color: #fff;
  }

  .game-card p,
  .game-info p,
  .feature-card p,
  .disclaimer-card p,
  .legal-section p,
  .legal-section ul li {
    color: #aaa;
  }

  .category-tab {
    background: #2a2a2a;
    color: #fff;
  }

  .category-tab:hover:not(.active) {
    background: #333;
  }

  .footer {
    background: #1a1a1a;
  }

  .footer-description {
    color: #aaa;
  }

  .footer-links a {
    color: #888;
  }

  .footer-links a:hover {
    color: #007bd6;
  }

  .footer-bottom {
    background: #151515;
  }

  .footer-bottom p {
    color: #666;
  }

  .contact-info li {
    color: #888;
  }

  .social-link {
    background: rgba(255, 255, 255, 0.05);
  }

  .download-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .download-btn:hover {
    background: linear-gradient(135deg, #007bd6, #a200c9);
  }

  .legal-section ul li::before {
    color: #007bd6;
  }

  .legal-section a {
    color: #007bd6;
  }

  .legal-section a:hover {
    color: #0099ff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bd6, #a200c9);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Dark mode support for back to top button */
@media (prefers-color-scheme: dark) {
  .back-to-top {
    background: linear-gradient(135deg, #007bd6, #a200c9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  }
}

/* Disclaimer Page Styles */
.disclaimer-content {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

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

.disclaimer-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.disclaimer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.disclaimer-card h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.disclaimer-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-sections {
  display: grid;
  gap: 2rem;
}

.legal-section {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.legal-section h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.legal-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-section ul {
  list-style: none;
  padding-left: 1.5rem;
}

.legal-section ul li {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  position: relative;
}

.legal-section ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: -1.5rem;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .disclaimer-grid {
    grid-template-columns: 1fr;
  }
  
  .disclaimer-card,
  .legal-section {
    padding: 1.5rem;
  }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  /* Header fixes */
  .header-container {
    padding: 10px 15px;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  /* Navigation fixes */
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 18px;
    padding: 12px 20px;
  }
  
  .nav-actions {
    flex-direction: column;
    gap: 20px;
  }
  
  .search-box {
    width: 280px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  /* Hero section fixes */
  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }
  
  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 2;
    display: none; /* Hide floating cards on mobile */
  }
  
  .hero-title-main {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .hero-title-sub {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  
  .feature {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  /* Stats section fixes */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
  }
  
  .stats .card {
    padding: 20px 15px;
  }
  
  .stats h3 {
    font-size: 24px;
  }
  
  .stats p {
    font-size: 14px;
  }
  
  /* Features section fixes */
  .features-section {
    padding: 60px 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  /* Games section fixes */
  .games-section {
    padding: 60px 20px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .game-card {
    padding: 25px 20px;
    margin: 0;
  }
  
  .game-card .game-image {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
  
  .game-card h3 {
    font-size: 20px;
    margin: 15px 0 10px;
  }
  
  .game-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .play-btn {
    padding: 12px 24px;
    font-size: 14px;
    margin-top: 15px;
  }
  
  /* How to play section fixes */
  .how-to-play {
    padding: 60px 20px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .step-card {
    padding: 30px 20px;
  }
  
  /* Winners section fixes */
  .winners-section {
    padding: 60px 20px;
  }
  
  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .winner-card {
    padding: 20px 15px;
  }
  
  .winner-avatar {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  /* Testimonials section fixes */
  .testimonials-section {
    padding: 60px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  /* Download section fixes */
  .download-section {
    padding: 60px 20px;
  }
  
  .download-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .download-image {
    display: none; /* Hide on mobile */
  }
  
  .app-features {
    text-align: left;
    margin: 20px 0;
  }
  
  .download-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .app-download-btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
  }
  
  /* Footer fixes */
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .header-container {
    padding: 8px 12px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .hero {
    padding: 100px 15px 40px;
  }
  
  .hero-title-main {
    font-size: 28px;
  }
  
  .hero-title-sub {
    font-size: 16px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .hero-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 15px;
  }
  
  .stats .card {
    padding: 15px 10px;
  }
  
  .stats h3 {
    font-size: 20px;
  }
  
  .features-section,
  .games-section,
  .how-to-play,
  .winners-section,
  .testimonials-section,
  .download-section {
    padding: 40px 15px;
  }
  
  .games-grid {
    gap: 20px;
  }
  
  .game-card {
    padding: 20px 15px;
  }
  
  .game-card .game-image {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  
  .game-card h3 {
    font-size: 18px;
  }
  
  .game-card p {
    font-size: 13px;
  }
  
  .winners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .winner-card {
    padding: 15px 10px;
  }
  
  .winner-avatar {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .footer {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Menu button styles */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
}

/* Ensure no horizontal scroll */
body {
  overflow-x: hidden;
  width: 100%;
}

/* Fix container max-width */
.container {
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}
