/* =============================================
   Rolling Slots 24 – Complete Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600&display=swap');

/* =============================================
   CSS Variables
   ============================================= */
:root {
  --brand-primary:     #1a1a3e;
  --brand-secondary:   #f5a623;
  --brand-accent:      #e94e1b;
  --brand-bg:          #12123a;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0e0e2c;
  --brand-btn-bg:      #f5a623;
  --brand-btn-text:    #1a1a3e;
  --brand-btn-radius:  20px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #1e1e4a;
  --brand-border:      rgba(245, 166, 35, 0.25);
  --brand-glow:        rgba(245, 166, 35, 0.15);
  --transition:        0.3s ease;
}

/* =============================================
   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.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--brand-accent);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.25;
  color: var(--brand-text);
}

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

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

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-hero {
  display: inline-block;
  padding: 18px 48px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand-secondary), #ffc744);
  color: var(--brand-btn-text);
  box-shadow: 0 6px 30px rgba(245, 166, 35, 0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

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

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--brand-secondary);
  transition: all var(--transition);
  text-decoration: none;
  background: transparent;
  color: var(--brand-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-cta:hover {
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-secondary), #ffc744);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

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

.btn-accent {
  background: linear-gradient(135deg, var(--brand-accent), #ff6b35);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(233, 78, 27, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 78, 27, 0.55);
  color: #ffffff;
}

/* =============================================
   Sticky Floating CTA Button
   ============================================= */
.sticky-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--brand-secondary), #ffc744);
  color: var(--brand-btn-text);
  padding: 16px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(245, 166, 35, 0.6);
  animation: pulse-glow 2.5s infinite;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition);
}

.sticky-float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  color: var(--brand-btn-text);
}

.sticky-float-btn .btn-icon {
  font-size: 18px;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 30px rgba(245, 166, 35, 0.6); }
  50%       { box-shadow: 0 6px 45px rgba(245, 166, 35, 0.9); }
}

/* =============================================
   Header / Navigation
   ============================================= */
.site-header {
  background: var(--brand-header-bg);
  border-bottom: 2px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 20px;
  color: var(--brand-secondary);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: var(--brand-body-font);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Main Nav */
.main-nav {
  position: relative;
}

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

.main-nav ul li a {
  color: rgba(255,255,255,0.8);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav ul li a:hover {
  color: var(--brand-secondary);
  background: rgba(245, 166, 35, 0.1);
}

.main-nav ul li a.nav-cta {
  background: linear-gradient(135deg, var(--brand-secondary), #ffc744);
  color: var(--brand-btn-text);
  border-radius: var(--brand-btn-radius);
  padding: 9px 20px;
  font-weight: 700;
}

.main-nav ul li a.nav-cta:hover {
  background: linear-gradient(135deg, #ffc744, var(--brand-secondary));
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
  font-size: 22px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  line-height: 1;
}

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

/* =============================================
   Hero Section
   ============================================= */
.hero-section {
  background: linear-gradient(135deg, #0a0a28 0%, #1a1a3e 40%, #12123a 70%, #0e0e2c 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(233, 78, 27, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(26, 26, 62, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), var(--brand-accent), var(--brand-secondary), transparent);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 6s ease-in-out infinite;
}

.hero-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  top: -80px; right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(233, 78, 27, 0.07) 0%, transparent 70%);
  bottom: -50px; left: 15%;
  animation-delay: 3s;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--brand-secondary);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
  font-family: var(--brand-head-font);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--brand-secondary);
  border-radius: 50%;
  animation: blink-dot 1.5s infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--brand-text);
}

.hero-headline .highlight {
  color: var(--brand-secondary);
  display: block;
}

.hero-headline .highlight-accent {
  color: var(--brand-accent);
}

.hero-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
}

.hero-bonus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.bonus-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bonus-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.bonus-value {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  color: var(--brand-secondary);
}

.bonus-divider {
  height: 1px;
  background: var(--brand-border);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Hero visual column */
.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-card {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(233, 78, 27, 0.05));
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 380px;
}

.visual-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.visual-icon-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.visual-icon-item:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--brand-secondary);
  transform: translateY(-2px);
}

.visual-icon-item .icon {
  font-size: 24px;
}

.visual-icon-item .label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-stat-row {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--brand-border);
  padding-top: 20px;
  gap: 10px;
}

.hero-stat {
  text-align: center;
}

.stat-num {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 22px;
  color: var(--brand-secondary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* =============================================
   Section Styles
   ============================================= */
.section {
  padding: 70px 20px;
}

.section-sm {
  padding: 50px 20px;
}

.section-alt {
  background: var(--brand-primary);
}

.section-dark {
  background: var(--brand-header-bg);
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--brand-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title .gold {
  color: var(--brand-secondary);
}

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

.section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

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

.section-header-centered .section-subtitle {
  margin: 0 auto 0;
}

/* =============================================
   Bonus Section
   ============================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 28px;
  transition: all 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-secondary), var(--brand-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.bonus-card:hover {
  border-color: rgba(245, 166, 35, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card.featured {
  border-color: rgba(245, 166, 35, 0.45);
  background: linear-gradient(135deg, var(--brand-card-bg), #22224e);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.15);
}

.bonus-card.featured::before {
  opacity: 1;
}

.bonus-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(233, 78, 27, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  border: 1px solid var(--brand-border);
}

.bonus-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--brand-secondary);
}

.bonus-card .bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 28px;
  color: var(--brand-text);
  margin-bottom: 12px;
  line-height: 1;
}

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

.badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
  color: var(--brand-btn-text);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--brand-head-font);
}

/* Bonus Terms */
.bonus-terms-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 30px;
}

.bonus-terms-box p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   Game Library / Provider Section
   ============================================= */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

.provider-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.provider-card:hover {
  border-color: rgba(245, 166, 35, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  background: rgba(245, 166, 35, 0.06);
}

.provider-card .provider-icon {
  font-size: 30px;
  margin-bottom: 8px;
  display: block;
}

.provider-card .provider-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* Game Category Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.category-tab {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  color: rgba(255,255,255,0.7);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--brand-head-font);
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-tab.active,
.category-tab:hover {
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  border-color: var(--brand-secondary);
}

.game-count-badge {
  background: rgba(0,0,0,0.2);
  padding: 1px 7px;
  border-radius: 50px;
  font-size: 11px;
}

/* =============================================
   Info / Feature Cards
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(233, 78, 27, 0.08));
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--brand-text);
}

.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.65;
}

/* =============================================
   Payment Methods
   ============================================= */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}

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

.payment-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.05);
}

.payment-card .pay-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.payment-card .pay-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  font-family: var(--brand-head-font);
}

.payment-card .pay-time {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Payment info table */
.payment-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.payment-info-table th,
.payment-info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--brand-border);
  font-size: 13px;
}

.payment-info-table th {
  font-family: var(--brand-head-font);
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(245, 166, 35, 0.05);
}

.payment-info-table td {
  color: rgba(255,255,255,0.75);
}

.payment-info-table tr:last-child td {
  border-bottom: none;
}

.payment-info-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* =============================================
   Security / License
   ============================================= */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 20px;
  transition: all var(--transition);
}

.security-item:hover {
  border-color: rgba(245, 166, 35, 0.35);
}

.security-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(26, 26, 62, 0.5));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--brand-border);
}

.security-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--brand-text);
}

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

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, #1a1a3e 0%, #0e0e2c 50%, #12123a 100%);
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  font-size: clamp(24px, 4vw, 38px);
  margin-bottom: 14px;
  position: relative;
}

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

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =============================================
   Info List
   ============================================= */
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.info-list li::before {
  content: '✓';
  color: var(--brand-secondary);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   Two-Column Layout Helpers
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col-60-40 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: start;
}

/* =============================================
   Divider
   ============================================= */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-border), transparent);
  margin: 0;
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background: var(--brand-header-bg);
  border-top: 2px solid var(--brand-border);
  padding: 60px 20px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 40px;
}

.footer-brand .logo-title {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}

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

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Trust Logos Row */
.trust-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 30px 0;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 30px;
}

.trust-logo-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-family: var(--brand-head-font);
  white-space: nowrap;
}

.trust-logo-badge .badge-icon {
  font-size: 20px;
}

/* Payment Logos */
.footer-payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.pay-logo-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pay-logo-visa    { color: #1a73e8; }
.pay-logo-mc      { color: #eb001b; }
.pay-logo-amex    { color: #007bc1; }
.pay-logo-btc     { color: #f7931a; }
.pay-logo-eth     { color: #627eea; }
.pay-logo-ltc     { color: #bfbbbb; }
.pay-logo-usdt    { color: #26a17b; }
.pay-logo-skrill  { color: #862165; }
.pay-logo-pp      { color: #003087; }

/* Gambling Responsibility Badges */
.responsible-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.resp-badge {
  background: rgba(233, 78, 27, 0.1);
  border: 1px solid rgba(233, 78, 27, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-family: var(--brand-head-font);
  display: flex;
  align-items: center;
  gap: 6px;
}

.resp-badge .badge-18 {
  background: var(--brand-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* =============================================
   Legal Pages
   ============================================= */
.legal-page {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 20px 80px;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 20px;
  color: var(--brand-secondary);
  margin: 32px 0 12px;
}

.legal-page h3 {
  font-size: 16px;
  color: var(--brand-text);
  margin: 24px 0 8px;
}

.legal-page p,
.legal-page li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

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

.legal-hero {
  padding: 60px 20px 0;
}

/* =============================================
   Alerts / Info boxes
   ============================================= */
.info-box {
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-left: 4px solid var(--brand-secondary);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.warning-box {
  background: rgba(233, 78, 27, 0.08);
  border: 1px solid rgba(233, 78, 27, 0.25);
  border-left: 4px solid var(--brand-accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* =============================================
   Loyalty / VIP Table
   ============================================= */
.loyalty-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
}

.loyalty-table th {
  background: rgba(245, 166, 35, 0.1);
  color: var(--brand-secondary);
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brand-border);
}

.loyalty-table td {
  padding: 13px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.loyalty-table tr:last-child td {
  border-bottom: none;
}

.loyalty-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.level-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
}

.level-bronze  { background: rgba(205, 127, 50, 0.2); color: #cd7f32; border: 1px solid rgba(205, 127, 50, 0.3); }
.level-silver  { background: rgba(192, 192, 192, 0.15); color: #c0c0c0; border: 1px solid rgba(192, 192, 192, 0.3); }
.level-gold    { background: rgba(245, 166, 35, 0.2); color: var(--brand-secondary); border: 1px solid rgba(245, 166, 35, 0.4); }
.level-plat    { background: rgba(229, 228, 226, 0.15); color: #e5e4e2; border: 1px solid rgba(229, 228, 226, 0.3); }
.level-diamond { background: rgba(185, 242, 255, 0.15); color: #b9f2ff; border: 1px solid rgba(185, 242, 255, 0.3); }

/* =============================================
   Responsive Breakpoints
   ============================================= */
@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.4);
    z-index: 999;
    gap: 4px;
    border-bottom: 2px solid var(--brand-border);
  }

  .mobile-nav-active ul li a {
    display: block;
    padding: 11px 16px;
    font-size: 14px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-col {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-60-40 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .section {
    padding: 50px 20px;
  }

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

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

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

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

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

  .cta-banner {
    padding: 40px 24px;
  }

  .trust-logos-row {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 16px;
  }

  .logo-title {
    font-size: 16px;
  }

  .logo-sub {
    display: none;
  }

  .hero-headline {
    font-size: 28px;
  }

  .btn-hero {
    font-size: 15px;
    padding: 15px 30px;
  }

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

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

  .category-tabs {
    gap: 6px;
  }

  .category-tab {
    padding: 7px 13px;
    font-size: 12px;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}