/* ============================================================
   BigPirate Casino — Main Stylesheet
   Brand: Dark Teal & Gold Nautical Theme
   ============================================================ */

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

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --brand-primary:     #0a4a3a;
  --brand-secondary:   #1a8a6a;
  --brand-accent:      #f5b731;
  --brand-bg:          #0c3028;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0a3a2e;
  --brand-btn-bg:      #f5b731;
  --brand-btn-text:    #5a3000;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Bangers', cursive;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #0d3d2e;
  --brand-card-border: #1a6a50;
  --brand-overlay:     rgba(10, 48, 40, 0.85);
  --transition-base:   0.25s ease;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:         0 8px 40px rgba(0,0,0,0.5);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  background-color: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: #ffd166;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

p {
  margin-bottom: 1rem;
  font-size: var(--brand-body-size);
  line-height: 1.7;
}

/* ============================================================
   Layout — Container
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ============================================================
   Skip to Content (Accessibility)
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 10px;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid rgba(245, 183, 49, 0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav {
  position: relative;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: background var(--transition-base), color var(--transition-base);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(245, 183, 49, 0.15);
  color: var(--brand-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.mobile-menu-btn:hover {
  background: rgba(245, 183, 49, 0.15);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #f5b731 0%, #e8a020 50%, #d4900a 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 15px rgba(245, 183, 49, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 183, 49, 0.55);
  color: var(--brand-btn-text);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
}

.btn-secondary:hover {
  background: rgba(245, 183, 49, 0.1);
  transform: translateY(-2px);
  color: var(--brand-accent);
}

.btn-hero {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: var(--brand-btn-radius);
  background: linear-gradient(135deg, #f5b731 0%, #e8a020 50%, #d4900a 100%);
  color: var(--brand-btn-text);
  font-weight: 700;
  box-shadow: 0 6px 30px rgba(245, 183, 49, 0.5);
  letter-spacing: 1px;
  font-family: var(--brand-head-font);
  font-size: 22px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(245, 183, 49, 0.65);
  color: var(--brand-btn-text);
}

.btn-cta {
  padding: 14px 32px;
  font-size: 16px;
  background: linear-gradient(135deg, #f5b731 0%, #d4900a 100%);
  color: var(--brand-btn-text);
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--brand-btn-text);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ============================================================
   Floating CTA Button
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f5b731 0%, #d4900a 100%);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.2);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  color: var(--brand-btn-text);
}

.floating-cta:focus {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
  background: linear-gradient(135deg, #041e16 0%, #0a4a3a 40%, #0c3028 70%, #041e16 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,183,49,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,138,106,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(10,74,58,0.2) 0%, transparent 40%);
  pointer-events: none;
}

.hero-nautical-left {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245,183,49,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-nautical-right {
  position: absolute;
  right: -60px;
  bottom: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,138,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text {
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,183,49,0.15);
  border: 1px solid rgba(245,183,49,0.4);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--brand-accent);
  display: block;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-number {
  font-family: var(--brand-head-font);
  font-size: 26px;
  color: var(--brand-accent);
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-bonus-card {
  background: linear-gradient(145deg, #0d4535 0%, #0a3a2e 100%);
  border: 2px solid rgba(245,183,49,0.4);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  max-width: 340px;
  width: 100%;
}

.hero-bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
}

.bonus-coin-icon {
  font-size: 60px;
  margin-bottom: 16px;
  display: block;
}

.bonus-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.bonus-card-amount {
  font-family: var(--brand-head-font);
  font-size: 52px;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(245,183,49,0.4);
}

.bonus-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.bonus-card-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* ============================================================
   Section Base Styles
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: rgba(10, 48, 40, 0.5);
}

.section-dark {
  background: #041e16;
}

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

.section-header h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--brand-accent);
}

.section-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: rgba(245,183,49,0.12);
  border: 1px solid rgba(245,183,49,0.3);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ============================================================
   Features / Stats Bar — Full Width
   ============================================================ */
.stats-bar {
  background: linear-gradient(90deg, #041e16, #0a4a3a, #041e16);
  border-top: 1px solid rgba(245,183,49,0.2);
  border-bottom: 1px solid rgba(245,183,49,0.2);
  padding: 24px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-x: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(245,183,49,0.15);
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--brand-head-font);
  font-size: 28px;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   Bonus Section — Two Column Asymmetric
   ============================================================ */
.bonus-section {
  padding: 80px 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.bonus-main-card {
  background: linear-gradient(145deg, #0d4535, #0a3228);
  border: 1px solid rgba(245,183,49,0.25);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.bonus-main-card::after {
  content: '🏴‍☠️';
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 120px;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(-15deg);
}

.bonus-main-card h3 {
  font-family: var(--brand-head-font);
  font-size: 36px;
  color: #fff;
  margin-bottom: 8px;
}

.bonus-main-card .bonus-highlight {
  font-family: var(--brand-head-font);
  font-size: 64px;
  color: var(--brand-accent);
  line-height: 1;
  margin: 16px 0;
  text-shadow: 0 0 40px rgba(245,183,49,0.3);
}

.bonus-main-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 24px;
}

.bonus-details-list {
  margin: 24px 0;
}

.bonus-details-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

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

.bonus-check {
  color: var(--brand-accent);
  font-size: 16px;
  flex-shrink: 0;
}

.bonus-sidebar-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-side-card {
  background: linear-gradient(145deg, #0d4535, #083020);
  border: 1px solid rgba(26,138,106,0.3);
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.bonus-side-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245,183,49,0.4);
}

.bonus-side-card .side-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.bonus-side-card h4 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  color: var(--brand-accent);
  margin-bottom: 6px;
}

.bonus-side-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ============================================================
   Games Section — Three Column Cards
   ============================================================ */
.games-section {
  padding: 80px 0;
  background: #041e16;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.game-category-card {
  background: linear-gradient(145deg, #0d4535, #083020);
  border: 1px solid rgba(26,138,106,0.25);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.game-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.game-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(245,183,49,0.35);
}

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

.game-icon {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
}

.game-category-card h3 {
  font-family: var(--brand-head-font);
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.game-category-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  line-height: 1.6;
}

.game-count {
  display: inline-block;
  background: rgba(245,183,49,0.12);
  border: 1px solid rgba(245,183,49,0.25);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

/* ============================================================
   Payments Section — Four Column Grid
   ============================================================ */
.payments-section {
  padding: 80px 0;
  background: rgba(10, 48, 40, 0.4);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.payment-card {
  background: #0d3d2e;
  border: 1px solid rgba(26,138,106,0.2);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.payment-card:hover {
  border-color: rgba(245,183,49,0.35);
  transform: translateY(-2px);
}

.payment-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.payment-card h4 {
  font-family: var(--brand-head-font);
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.payment-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

.payment-speed {
  display: inline-block;
  margin-top: 10px;
  background: rgba(26,138,106,0.2);
  color: #4dc9a0;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

/* ============================================================
   Content Section — Asymmetric 1/3 + 2/3
   ============================================================ */
.about-section {
  padding: 80px 0;
  background: #041e16;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 80px;
}

.about-sidebar-card {
  background: linear-gradient(145deg, #0d4535, #083020);
  border: 1px solid rgba(245,183,49,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 20px;
}

.about-sidebar-card h4 {
  font-family: var(--brand-head-font);
  font-size: 22px;
  color: var(--brand-accent);
  margin-bottom: 14px;
}

.about-sidebar-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.license-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,138,106,0.15);
  border: 1px solid rgba(26,138,106,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.license-badge .badge-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.license-badge-text {
  display: flex;
  flex-direction: column;
}

.license-badge-text strong {
  font-size: 13px;
  color: #fff;
}

.license-badge-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.about-content h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(26px, 3.5vw, 40px);
  color: #fff;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--brand-accent);
}

.about-content h3 {
  font-family: var(--brand-head-font);
  font-size: 26px;
  color: var(--brand-accent);
  margin: 32px 0 14px;
}

.about-content p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ============================================================
   Support Section — Full Width Split
   ============================================================ */
.support-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a4a3a 0%, #0c3028 100%);
}

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-text h2 {
  font-family: var(--brand-head-font);
  font-size: 40px;
  margin-bottom: 16px;
  color: #fff;
}

.support-text h2 span {
  color: var(--brand-accent);
}

.support-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.support-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.support-channel {
  background: rgba(10,48,40,0.6);
  border: 1px solid rgba(26,138,106,0.25);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.channel-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.channel-info h5 {
  font-family: var(--brand-head-font);
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.channel-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.support-visual {
  display: flex;
  justify-content: center;
}

.support-box {
  background: rgba(10,48,40,0.7);
  border: 2px solid rgba(245,183,49,0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.support-box .support-big-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.support-box h3 {
  font-family: var(--brand-head-font);
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.support-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* ============================================================
   CTA Banner — Full Width Single Column
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #041e16 0%, #0a4a3a 50%, #041e16 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,183,49,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.cta-banner h2 span {
  color: var(--brand-accent);
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner .btn-hero {
  position: relative;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #030f0a;
  border-top: 1px solid rgba(245,183,49,0.15);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--brand-head-font);
  font-size: 18px;
  color: var(--brand-accent);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--brand-accent);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 40px 0 24px;
}

.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-logo-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-logo-badge span {
  font-size: 16px;
}

.age-restriction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cc2233;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  margin-top: 24px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  transition: color var(--transition-base);
}

.footer-legal-links a:hover {
  color: var(--brand-accent);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.help-line {
  background: rgba(245,183,49,0.07);
  border: 1px solid rgba(245,183,49,0.15);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.help-line p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

.help-line strong {
  color: var(--brand-accent);
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #041e16 0%, #0a4a3a 100%);
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  margin-bottom: 10px;
}

.legal-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 26px;
  color: var(--brand-accent);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-last-updated {
  background: rgba(245,183,49,0.08);
  border: 1px solid rgba(245,183,49,0.2);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  display: inline-block;
}

/* ============================================================
   Responsible Gambling Section
   ============================================================ */
.rg-section {
  padding: 60px 0;
  background: rgba(10,48,40,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.rg-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.rg-text h3 {
  font-family: var(--brand-head-font);
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
}

.rg-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.rg-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.rg-link {
  background: rgba(26,138,106,0.15);
  border: 1px solid rgba(26,138,106,0.3);
  color: #4dc9a0;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition-base);
}

.rg-link:hover {
  background: rgba(26,138,106,0.25);
  color: #4dc9a0;
}

.rg-hotline {
  background: rgba(204,34,51,0.1);
  border: 1px solid rgba(204,34,51,0.3);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.rg-hotline .hotline-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.rg-hotline h4 {
  font-family: var(--brand-head-font);
  font-size: 22px;
  color: #ff6b7a;
  margin-bottom: 8px;
}

.rg-hotline p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.hotline-number {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 28px;
  color: #fff;
  margin-bottom: 4px;
}

.hotline-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   FAQ / Info Accordion
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: #041e16;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: #0d3d2e;
  border: 1px solid rgba(26,138,106,0.2);
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(245,183,49,0.3);
}

.faq-item h4 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.text-accent { color: var(--brand-accent); }
.text-muted { color: rgba(255,255,255,0.5); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   Mobile Menu Styles
   ============================================================ */
.mobile-menu-btn {
  display: none;
}

/* ============================================================
   Responsive — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ============================================================
   Responsive — 992px (Tablet / Mobile Menu)
   ============================================================ */
@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    gap: 4px;
    border-bottom: 2px solid rgba(245,183,49,0.2);
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 60px 0;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

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

  .bonus-sidebar-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bonus-side-card {
    flex: 1;
    min-width: 200px;
  }

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

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

  .about-sidebar {
    position: static;
  }

  .support-inner {
    grid-template-columns: 1fr;
  }

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

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

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-channels {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

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

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

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logos-row {
    justify-content: center;
  }

  .support-channels {
    grid-template-columns: 1fr;
  }

  .hero-bonus-card {
    max-width: 280px;
  }

  .bonus-main-card {
    padding: 32px 24px;
  }

  .bonus-main-card .bonus-highlight {
    font-size: 48px;
  }
}

/* ============================================================
   Responsive — 480px (Small phones)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

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

  .payments-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .bonus-sidebar-cards {
    flex-direction: column;
  }
}

/* ============================================================
   Focus States — Accessibility
   ============================================================ */
a:focus,
button:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}

/* ============================================================
   Scrollbar Styling
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #041e16;
}

::-webkit-scrollbar-thumb {
  background: #1a6a50;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-accent);
}