:root {
  --brand-primary: #c8a84b;
  --brand-primary-dark: #a8882e;
  --brand-secondary: #1a1a2e;
  --brand-accent: #e63946;
  --brand-header-bg: #0f0f1a;
  --brand-nav-bg: #16213e;
  --brand-hero-bg: #0f0f1a;
  --brand-card-bg: #1a1a2e;
  --brand-card-border: #2a2a4a;
  --brand-text: #e8e8e8;
  --brand-text-muted: #a0a0b8;
  --brand-text-light: #ffffff;
  --brand-border: #3a3a5c;
  --brand-gray-border: #cccccc;
  --brand-success: #2ecc71;
  --brand-warning: #f39c12;
  --brand-footer-bg: #0a0a14;
  --brand-footer-text: #8888aa;
  --font-main: 'Segoe UI', Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.7);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--brand-secondary);
  color: var(--brand-text);
  line-height: 1.7;
  min-height: 100vh;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-text-light);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  margin-bottom: 1rem;
  color: var(--brand-text);
}

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

/* =========================================
   STICKY HEADER & NAV
   ========================================= */

.site-header {
  background-color: var(--brand-header-bg);
  border-bottom: 2px solid var(--brand-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.site-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.main-nav ul li a {
  display: block;
  padding: 8px 16px;
  color: var(--brand-text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background-color: rgba(200, 168, 75, 0.15);
  color: var(--brand-primary);
  text-decoration: none;
}

.header-cta {
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-primary-dark), #8a6a1a);
  color: #000;
}

.btn-hero {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #000000;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(200, 168, 75, 0.4);
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero:hover {
  background: linear-gradient(135deg, #e8c860, var(--brand-primary));
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 168, 75, 0.6);
  text-decoration: none;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-accent), #b02030);
  color: #fff;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #b02030, #800020);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 10px 24px;
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #000;
}

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

.btn-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
}

/* Floating sticky CTA button */
.sticky-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #000;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(200, 168, 75, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  animation: pulse-btn 2.5s infinite;
}

.sticky-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200, 168, 75, 0.8);
  color: #000;
  text-decoration: none;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 24px rgba(200, 168, 75, 0.6); }
  50% { box-shadow: 0 4px 36px rgba(200, 168, 75, 0.9); }
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
  background: linear-gradient(160deg, #0f0f1a 0%, #1a1a3e 40%, #0f0f1a 100%);
  border-bottom: 1px solid var(--brand-border);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200, 168, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--brand-text-light);
  line-height: 1.25;
}

.hero-content h1 span {
  color: var(--brand-primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--brand-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

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

.hero-trust-line {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--brand-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.hero-game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.hero-game-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-3px);
}

.hero-game-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.hero-game-card .card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-text);
}

.hero-bonus-box {
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.1), rgba(200, 168, 75, 0.05));
  border: 1px solid rgba(200, 168, 75, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  width: 100%;
  text-align: center;
}

.hero-bonus-box .bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.hero-bonus-box .bonus-desc {
  font-size: 0.9rem;
  color: var(--brand-text-muted);
}

/* =========================================
   MAIN CONTENT
   ========================================= */

.main-content {
  padding: 60px 0;
}

.section {
  padding: 50px 0;
  border-bottom: 1px solid var(--brand-card-border);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-text-light);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--brand-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--brand-text-muted);
  margin-bottom: 32px;
  max-width: 640px;
}

.section-header {
  margin-bottom: 36px;
}

/* =========================================
   CARDS & GRIDS
   ========================================= */

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

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

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

.info-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.info-card .card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--brand-text-light);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--brand-text-muted);
  margin-bottom: 0;
}

/* Bonus card */
.bonus-card {
  background: linear-gradient(135deg, var(--brand-card-bg), #22223a);
  border: 1px solid var(--brand-card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.bonus-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 168, 75, 0.2);
}

.bonus-card .bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.bonus-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.bonus-card .bonus-amount-big {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 8px 0;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--brand-text-muted);
}

.bonus-card .bonus-tag {
  display: inline-block;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.4);
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
}

/* Game category cards */
.game-cat-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.game-cat-card:hover {
  border-color: var(--brand-primary);
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.08), var(--brand-card-bg));
}

.game-cat-card .cat-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.game-cat-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.game-cat-card span {
  font-size: 0.82rem;
  color: var(--brand-text-muted);
}

/* Payment method cards */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.payment-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
}

.payment-item:hover {
  border-color: var(--brand-primary);
}

.payment-item .pay-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.payment-item span {
  font-size: 0.75rem;
  color: var(--brand-text-muted);
  display: block;
}

/* =========================================
   NOTICE / ALERT BOXES
   ========================================= */

.notice-box {
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
}

.notice-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--brand-text);
}

.notice-box strong {
  color: var(--brand-primary);
}

.info-box {
  background: rgba(46, 204, 113, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-left: 4px solid var(--brand-success);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 20px;
}

.info-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--brand-text);
}

/* =========================================
   SECURITY BADGE ROW
   ========================================= */

.security-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--brand-card-border);
  border-bottom: 1px solid var(--brand-card-border);
  margin-bottom: 32px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--brand-text-muted);
  font-weight: 600;
}

.security-badge .badge-icon {
  font-size: 1.1rem;
  color: var(--brand-success);
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.data-table th {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  color: var(--brand-primary);
  font-weight: 700;
}

.data-table td {
  border: 1px solid var(--brand-card-border);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--brand-text);
}

.data-table tr:nth-child(even) td {
  background: rgba(26, 26, 46, 0.5);
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.1), rgba(200, 168, 75, 0.03));
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--brand-text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background-color: var(--brand-footer-bg);
  border-top: 2px solid var(--brand-primary);
  padding: 50px 0 24px;
  margin-top: 60px;
}

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

.footer-brand h4 {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--brand-footer-text);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-nav h5 {
  font-size: 0.95rem;
  color: var(--brand-text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  font-size: 0.85rem;
  color: var(--brand-footer-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--brand-primary);
  text-decoration: none;
}

.footer-security {
  margin-bottom: 28px;
}

.footer-security h5 {
  font-size: 0.85rem;
  color: var(--brand-text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-security-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ssl-badge, .visa-badge, .mc-badge, .gamcare-badge, .age-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ssl-badge { color: var(--brand-success); border-color: rgba(46, 204, 113, 0.3); }
.visa-badge { color: #1a73e8; border-color: rgba(26, 115, 232, 0.3); }
.mc-badge { color: #eb4d3d; border-color: rgba(235, 77, 61, 0.3); }
.gamcare-badge { color: var(--brand-warning); border-color: rgba(243, 156, 18, 0.3); }
.age-badge { color: var(--brand-accent); border-color: rgba(230, 57, 70, 0.3); font-size: 0.75rem; }

.footer-bottom {
  border-top: 1px solid var(--brand-card-border);
  padding-top: 24px;
}

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

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

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--brand-footer-text);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--brand-footer-text);
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--brand-footer-text);
  text-align: right;
  margin-bottom: 0;
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-page {
  padding: 50px 0;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--brand-text-light);
}

.legal-page .last-updated {
  font-size: 0.85rem;
  color: var(--brand-text-muted);
  margin-bottom: 32px;
  display: block;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--brand-primary);
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

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

.legal-page ul li, .legal-page ol li {
  color: var(--brand-text);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-page ol {
  list-style: decimal;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--brand-primary); }
.text-muted { color: var(--brand-text-muted); }
.text-success { color: var(--brand-success); }
.text-accent { color: var(--brand-accent); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 16px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }
.font-bold { font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--brand-card-border); margin: 32px 0; }
.highlight { color: var(--brand-primary); font-weight: 700; }
.checkmark-list { list-style: none; padding-left: 0; }
.checkmark-list li { padding-left: 24px; position: relative; margin-bottom: 10px; font-size: 0.95rem; color: var(--brand-text); }
.checkmark-list li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-success); font-weight: 700; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1100px) {
  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .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 20px rgba(0,0,0,0.5);
    border-top: 1px solid var(--brand-border);
    z-index: 999;
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    order: -1;
  }

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

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

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

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

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

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

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

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

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

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 32px 22px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-legal-links {
    justify-content: center;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

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

  .security-row {
    justify-content: center;
  }

  .data-table {
    font-size: 0.8rem;
  }

  .data-table th, .data-table td {
    padding: 8px 10px;
  }
}

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

  .hero-content h1 {
    font-size: 1.45rem;
  }

  .btn-hero {
    font-size: 0.95rem;
    padding: 14px 28px;
  }

  .card-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

  .sticky-float-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .bonus-card .bonus-amount-big {
    font-size: 1.7rem;
  }

  .footer-security-logos {
    gap: 8px;
  }
}