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

:root {
  --primary: #192d55;
  --secondary: #ffd700;
  --accent: #1a3a66;
  --light: #f5f5f5;
  --dark: #0a1929;
  --text: #333;
  --border: #e0e0e0;
  --success: #4caf50;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

a:hover {
  color: var(--secondary);
}

/* Header */
header {
  background: var(--primary);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--secondary);
}

.cta-button {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 10px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 3rem 0;
}

section h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--secondary);
  padding-bottom: 1rem;
}

section h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.game-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

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

.game-card-content {
  padding: 1.5rem;
}

.game-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.game-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.game-card a {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s;
}

.game-card a:hover {
  background: #ffed4e;
  transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--light);
  padding: 1rem 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  color: #999;
  margin: 0 0.5rem;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.payment-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 8px;
  transition: all 0.3s;
}

.payment-item:hover {
  background: #e8e8e8;
  transform: scale(1.05);
}

.payment-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.payment-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Reviews */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.reviewer-info h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.reviewer-info p {
  color: #999;
  font-size: 0.85rem;
}

.stars {
  color: var(--secondary);
  font-size: 1.1rem;
}

.review-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ */
.faq-item {
  background: var(--light);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: var(--accent);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--primary);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: #555;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* License Badge */
.license-section {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.license-badge {
  display: inline-block;
  margin: 1rem 0;
}

.license-badge img {
  max-width: 200px;
  height: auto;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

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

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: #ddd;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.payment-icons img {
  height: 30px;
  object-fit: contain;
  opacity: 0.8;
}

.age-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  text-align: center;
  font-weight: bold;
}

/* Responsible Gaming */
.responsible-gaming {
  background: #e3f2fd;
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.responsible-gaming h3 {
  color: var(--primary);
  margin-top: 0;
}

.responsible-gaming ul {
  margin-left: 1.5rem;
}

.responsible-gaming li {
  margin-bottom: 0.8rem;
}

.responsible-gaming a {
  color: var(--primary);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

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

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

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

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

  .header-container {
    padding: 0 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 0;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .reviews-container {
    grid-template-columns: 1fr;
  }
}
