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

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899;
  --secondary-light: #f472b6;
  --accent-color: #8b5cf6;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: 16px;
}

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

.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

.main-content {
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
}

.content-article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-article section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}

.content-article section[id] {
  position: relative;
}

.content-article h2 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.content-article h3 {
  font-size: 1.5rem;
  color: #4338ca;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.content-article p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  text-align: justify;
}

.intro-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border-left: 4px solid var(--primary-color);
}

.intro-section h2 {
  color: #1e3a8a;
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.casino-table,
.pokies-table,
.process-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.95rem;
}

.casino-table thead,
.pokies-table thead,
.process-table thead {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
  color: white;
}

.casino-table th,
.pokies-table th,
.process-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-table td,
.pokies-table td,
.process-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.casino-table tbody tr:hover,
.pokies-table tbody tr:hover,
.process-table tbody tr:hover {
  background-color: var(--bg-secondary);
  transition: background-color 0.2s ease;
}

.casino-table tbody tr:last-child td,
.pokies-table tbody tr:last-child td,
.process-table tbody tr:last-child td {
  border-bottom: none;
}

.step-list,
.bonus-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.step-list li,
.bonus-list li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.benefits-list,
.jackpot-benefits,
.accuracy-features {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style: none;
}

.benefits-list li,
.jackpot-benefits li,
.accuracy-features li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.8;
}

.benefits-list li::before,
.jackpot-benefits li::before,
.accuracy-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.deposit-section,
.transaction-section,
.withdrawal-section,
.verification-section,
.gameplay-section,
.features-section,
.mobile-section,
.jackpot-section,
.bonus-section,
.analysis-section {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.deposit-section h2,
.deposit-section h3,
.transaction-section h2,
.transaction-section h3,
.withdrawal-section h2,
.withdrawal-section h3,
.verification-section h2,
.verification-section h3,
.gameplay-section h2,
.gameplay-section h3,
.features-section h2,
.features-section h3,
.mobile-section h2,
.mobile-section h3,
.jackpot-section h2,
.jackpot-section h3,
.bonus-section h2,
.bonus-section h3,
.analysis-section h2,
.analysis-section h3 {
  color: #1e3a8a;
}

.faq-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  color: #1e3a8a;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.faq-item p {
  color: var(--text-primary);
  margin-bottom: 0;
}

.footer {
  background: var(--text-primary);
  color: white;
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

.footer p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.disclaimer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.lang-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.lang-link:hover,
.lang-link:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

.lang-separator {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0.25rem;
}

@media (max-width: 768px) {
  .site-title {
    font-size: 1.75rem;
  }

  .site-subtitle {
    font-size: 1rem;
  }

  .content-article h2 {
    font-size: 1.5rem;
  }

  .content-article h3 {
    font-size: 1.25rem;
  }

  .content-article {
    padding: 0 15px;
  }

  .intro-section,
  .deposit-section,
  .transaction-section,
  .withdrawal-section,
  .verification-section,
  .gameplay-section,
  .features-section,
  .mobile-section,
  .jackpot-section,
  .bonus-section,
  .analysis-section,
  .faq-section {
    padding: 1.5rem;
  }

  .table-container {
    margin: 1rem 0;
  }

  .casino-table,
  .pokies-table,
  .process-table {
    font-size: 0.85rem;
  }

  .casino-table th,
  .pokies-table th,
  .process-table th,
  .casino-table td,
  .pokies-table td,
  .process-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.5rem;
  }

  .content-article h2 {
    font-size: 1.35rem;
  }

  .content-article h3 {
    font-size: 1.15rem;
  }
}

