@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary-green: #0b3b24;
  --light-green: #145938;
  --accent-green: #1a6b45;
  --primary-gold: #c59b4e;
  --light-gold: #e2be79;
  --dark-gold: #a67c33;
  --bg-color: #f6f8f7;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --white: #ffffff;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-gold); text-decoration: none; transition: color var(--transition-speed); }
a:hover { color: var(--light-gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ========== HEADER & NAV ========== */
.site-header {
  background-color: var(--primary-green);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { max-height: 50px; }
.logo a { display: flex; align-items: center; }

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}
.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition-speed), color var(--transition-speed);
}
.main-nav a:hover,
.main-nav a.active {
  background-color: rgba(197, 155, 78, 0.15);
  color: var(--primary-gold);
}
.nav-cta { margin-left: 12px; }
.nav-cta a {
  background: linear-gradient(to right, var(--primary-gold), var(--light-gold));
  color: var(--primary-green) !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
}
.nav-cta a:hover {
  box-shadow: 0 4px 12px rgba(197, 155, 78, 0.4);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition-speed);
}

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
  padding: 60px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; }
.hero-banner {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  margin: 0 auto 40px;
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  display: block;
}
.hero-text { margin-bottom: 40px; }
.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-gold), var(--light-gold));
  color: var(--primary-green);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(197, 155, 78, 0.3);
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 155, 78, 0.5);
  color: var(--primary-green);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-gold);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--primary-gold);
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
}
.btn-secondary:hover {
  background-color: var(--primary-gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ========== MAIN CONTENT & CARDS ========== */
.main-content {
  padding: 80px 0;
  background-color: var(--bg-color);
}
.article-container { max-width: 900px; margin: 0 auto; }
.article-header { margin-bottom: 60px; }
.main-heading {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.sub-heading {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 500;
}

.card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
  border-top: 5px solid var(--primary-gold);
}
.card h2 {
  color: var(--primary-green);
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.card h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 60px; height: 4px;
  background-color: var(--primary-gold);
  border-radius: 2px;
}
.card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 15px;
  font-weight: 600;
}
.card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}
.feature-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border-top: 4px solid var(--primary-gold);
  text-align: center;
}
.feature-item h3 { color: var(--primary-green); margin-bottom: 10px; }
.feature-item p { color: var(--text-secondary); font-size: 15px; }

/* ========== GAME CARDS ========== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 30px 0;
}
.game-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed);
}
.game-card:hover { transform: translateY(-5px); }
.game-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: var(--primary-green);
}
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 18px; color: var(--primary-green); margin-bottom: 8px; }
.game-card-body p { font-size: 14px; color: var(--text-secondary); }

/* ========== STEPS FLOW ========== */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fdfbf7;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f2eade;
}
.step-number {
  background-color: var(--primary-gold);
  color: var(--white);
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ========== TABLES ========== */
.table-responsive { overflow-x: auto; margin-bottom: 30px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th,
.data-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid #eee; }
.data-table th {
  background-color: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.data-table tbody tr:nth-child(even) { background-color: #fcfdfe; }
.data-table tbody tr:hover { background-color: #f0f7f4; }

/* ========== TIP / INFO BOXES ========== */
.tip-box {
  background-color: rgba(197, 155, 78, 0.1);
  border-left: 4px solid var(--primary-gold);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-size: 15px;
  margin: 20px 0;
}
.tip-box strong { color: var(--dark-gold); }

.info-box {
  background-color: rgba(20, 89, 56, 0.05);
  border-left: 4px solid var(--light-green);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-size: 15px;
  margin: 20px 0;
}

/* ========== PROS/CONS ========== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.pros, .cons { padding: 25px; border-radius: 8px; }
.pros { background: rgba(20, 89, 56, 0.05); border-top: 3px solid var(--light-green); }
.cons { background: rgba(200, 50, 50, 0.05); border-top: 3px solid #c83232; }
.pros h4 { color: var(--light-green); margin-bottom: 12px; }
.cons h4 { color: #c83232; margin-bottom: 12px; }
.pros ul, .cons ul { list-style: none; }
.pros li::before { content: '\2713 '; color: var(--light-green); font-weight: bold; }
.cons li::before { content: '\2717 '; color: #c83232; font-weight: bold; }
.pros li, .cons li { margin-bottom: 8px; color: var(--text-secondary); }

/* ========== FAQ ACCORDION ========== */
.faq-section {
  background-color: var(--primary-green);
  color: var(--white);
  border-top: none;
}
.faq-section h2 { color: var(--primary-gold); margin-bottom: 40px; }
.faq-section h2::after { content: none; }
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background var(--transition-speed);
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 25px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary-gold);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { background: rgba(255, 255, 255, 0.1); }
.faq-content { padding: 0 25px 25px; color: rgba(255, 255, 255, 0.8); }
.faq-content p { color: rgba(255, 255, 255, 0.8) !important; margin: 0; }

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  margin: 40px 0;
}
.cta-section h2 { color: var(--white); font-size: 32px; margin-bottom: 15px; }
.cta-section p { color: rgba(255, 255, 255, 0.8); font-size: 18px; margin-bottom: 30px; }

/* ========== RESPONSIBLE GAMBLING ========== */
.rg-section {
  background: var(--white);
  padding: 40px 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 40px 0;
  border-left: 5px solid #c83232;
}
.rg-section h2 { color: #c83232; font-size: 22px; margin-bottom: 15px; }
.rg-section h2::after { background-color: #c83232; }
.rg-section p { color: var(--text-secondary); margin-bottom: 15px; }
.rg-section ul { list-style: disc; padding-left: 20px; color: var(--text-secondary); }
.rg-section li { margin-bottom: 8px; }

/* ========== AGE VERIFICATION ========== */
.age-notice {
  background: rgba(200, 50, 50, 0.05);
  border: 1px solid rgba(200, 50, 50, 0.2);
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 20px 0;
}
.age-notice strong { color: #c83232; }

/* ========== FOOTER ========== */
.site-footer {
  background-color: #082919;
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--primary-gold);
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col .footer-heading {
  color: var(--primary-gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color var(--transition-speed);
}
.footer-col a:hover { color: var(--primary-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
}
.footer-bottom p { margin-bottom: 5px; }
.also-known {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 15px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 15px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before {
  content: '\203A';
  margin: 0 10px;
  color: var(--text-secondary);
  opacity: 0.5;
  font-size: 16px;
}
.breadcrumb a { color: var(--primary-gold); }
.breadcrumb span { margin: 0 8px; }

/* ========== SIMPLE LIST ========== */
.simple-list { list-style: none; margin-bottom: 25px; }
.simple-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.simple-list li::before {
  content: '\2713';
  position: absolute;
  left: 0; top: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 18px;
}

/* ========== 2-COL GRID ========== */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ========== HERO BANNER IMAGE ========== */
.hero-banner-wrap {
  margin-bottom: 30px;
}
.hero-banner-wrap {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.hero-banner-wrap img {
  width: 100%;
  display: block;
}

/* ========== GAME GALLERY ========== */
.game-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.game-gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed);
}
.game-gallery-item:hover {
  transform: translateY(-5px);
}
.game-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== SLOT GALLERY ========== */
.slot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.slot-gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed);
  background: var(--white);
}
.slot-gallery-item:hover {
  transform: translateY(-5px);
}
.slot-gallery-item img {
  width: 100%;
}

/* ========== SECTION BANNER ========== */
.section-banner {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 30px 0;
  overflow: hidden;
}
.section-banner img {
  width: 100%;
  display: block;
}

/* ========== PAYMENT LOGOS ========== */
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px 0;
  margin: 20px 0;
}
.payment-logos img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition-speed);
}
.payment-logos img:hover {
  opacity: 1;
}

/* ========== FOOTER EXTRAS ========== */
.footer-sponsor {
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}
.footer-sponsor img {
  max-width: 280px;
  margin: 0 auto;
}
.footer-payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 20px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}
.footer-payment-logos img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-speed);
}
.footer-payment-logos img:hover {
  opacity: 1;
}

/* ========== APP BANNER ========== */
.app-banner {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
.app-banner img {
  width: 100%;
  display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-title { font-size: 32px; }
  .main-heading { font-size: 36px; }
  .card { padding: 30px 20px; }
  .grid-2col { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .rg-section { padding: 30px 20px; }
  .game-gallery { grid-template-columns: repeat(2, 1fr); }
  .slot-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary-green);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-cta { margin-left: 0; margin-top: 10px; }
  .nav-cta a { display: block; text-align: center; }
  .nav-toggle { display: block; }
  .hero-title { font-size: 28px; }
  .hero-section { padding: 40px 0; }
  .card h2 { font-size: 22px; }
  .step-item { flex-direction: column; text-align: center; gap: 10px; }
  .step-number { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}
