/* ============================================================
   Lucky7even Casino – Complete Stylesheet
   Brand: Dark Navy/Purple/Gold Casino Theme
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --brand-primary:     #7B2FBE;
  --brand-secondary:   #1A1A2E;
  --brand-accent:      #FFD700;
  --brand-bg:          #0D0D1A;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #0A0A18;
  --brand-btn-bg:      #7B2FBE;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  20px;
  --brand-head-font:   'Impact', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 900;
  --brand-body-size:   14px;
  --border-color:      #2a2a3e;
  --card-bg:           #13132a;
  --glow-purple:       0 0 20px rgba(123, 47, 190, 0.4);
  --glow-gold:         0 0 15px rgba(255, 215, 0, 0.3);
  --transition:        all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
  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);
  color: #ccccdd;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9b4fde;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(123, 47, 190, 0.2);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brand-primary), #9b4fde);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--glow-purple);
}

.logo-text {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 22px;
  color: var(--brand-text);
  letter-spacing: 1px;
}

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

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

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

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: #ccccdd;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--brand-accent);
  background: rgba(123, 47, 190, 0.2);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: var(--brand-primary);
  color: var(--brand-text);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1100;
}

.mobile-menu-btn:hover {
  background: #9b4fde;
}

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

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), #9b4fde);
  color: var(--brand-btn-text);
  box-shadow: var(--glow-purple);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9b4fde, var(--brand-primary));
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(123, 47, 190, 0.6);
  text-decoration: none;
  color: var(--brand-btn-text);
}

.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--brand-accent), #e6b800);
  color: #0D0D1A;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-gold);
  transition: var(--transition);
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  text-decoration: none;
  color: #0D0D1A;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--brand-primary), #9b4fde);
  color: var(--brand-btn-text);
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-purple);
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(123, 47, 190, 0.7);
  text-decoration: none;
  color: var(--brand-btn-text);
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--brand-accent);
  color: #0D0D1A;
  text-decoration: none;
}

/* --- Sticky Floating CTA Button --- */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: pulse-glow 2.5s infinite;
  border-radius: var(--brand-btn-radius);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
  50%       { box-shadow: 0 0 35px rgba(255, 215, 0, 0.8); }
}

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

.hero-section {
  padding-top: 80px;
  min-height: 520px;
  background: linear-gradient(135deg, #0A0A18 0%, #1A0A2E 40%, #0D0D1A 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123,47,190,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), #9b4fde);
  color: var(--brand-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 58px);
  color: var(--brand-text);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(123, 47, 190, 0.5);
}

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

.hero-subtitle {
  font-size: 16px;
  color: #aaaacc;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 480px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888899;
}

.trust-icon {
  width: 20px;
  height: 20px;
  background: rgba(123, 47, 190, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--brand-accent);
}

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

.hero-card-display {
  width: 360px;
  height: 280px;
  background: linear-gradient(135deg, #1A1A3E, #2a1a4e);
  border-radius: 20px;
  border: 1px solid rgba(123, 47, 190, 0.4);
  box-shadow: var(--glow-purple), inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

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

.dice-row {
  display: flex;
  gap: 16px;
}

.dice {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #fff, #eee);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  animation: float-dice 3s ease-in-out infinite;
}

.dice:nth-child(2) { animation-delay: 0.5s; }
.dice:nth-child(3) { animation-delay: 1s; }

@keyframes float-dice {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-card-label {
  font-family: var(--brand-head-font);
  font-size: 18px;
  color: var(--brand-accent);
  letter-spacing: 2px;
}

.hero-card-sub {
  font-size: 12px;
  color: #888899;
  letter-spacing: 1px;
}

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

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

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--brand-text);
  position: relative;
  padding-left: 16px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--brand-primary);
  border-radius: 2px;
}

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

/* Info Blocks */
.content-section {
  margin-bottom: 48px;
  padding: 36px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--glow-purple);
  position: relative;
  overflow: hidden;
}

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

.content-section h2 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--brand-text);
  margin-bottom: 16px;
}

.content-section h3 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--brand-accent);
  margin-bottom: 12px;
  margin-top: 24px;
}

.content-section p {
  font-size: 14px;
  color: #bbbbcc;
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-section ul,
.content-section ol {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.content-section ul li,
.content-section ol li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: #bbbbcc;
  line-height: 1.6;
}

.content-section ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-size: 10px;
  top: 8px;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.feature-card {
  background: #0f0f22;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #888899;
  line-height: 1.5;
}

/* Games Row */
.games-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  margin-bottom: 32px;
}

.games-row::-webkit-scrollbar {
  height: 4px;
}

.game-card {
  flex: 0 0 180px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

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

.game-thumb {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  background: linear-gradient(135deg, #1A1A3E, #2a1a4e);
}

.game-info {
  padding: 12px;
}

.game-name {
  font-family: var(--brand-head-font);
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.game-type {
  font-size: 11px;
  color: #666677;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, #1A1A3E, #0f0f22);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-family: var(--brand-head-font);
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: #888899;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1A0A2E 0%, #0f0f22 50%, #1A1A3E 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(123, 47, 190, 0.3);
  box-shadow: var(--glow-purple);
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.cta-section h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--brand-text);
  margin-bottom: 14px;
}

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

.cta-section p {
  font-size: 15px;
  color: #aaaacc;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Info Table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
}

.info-table th {
  background: rgba(123, 47, 190, 0.15);
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.info-table td {
  color: #bbbbcc;
}

.info-table tr:hover td {
  background: rgba(123, 47, 190, 0.05);
}

/* Bonus Banner */
.bonus-banner {
  background: linear-gradient(135deg, #1A0A2E, #2a1a4e);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0;
  flex-wrap: wrap;
  box-shadow: var(--glow-gold);
}

.bonus-text h3 {
  font-family: var(--brand-head-font);
  font-size: 22px;
  color: var(--brand-accent);
  margin-bottom: 6px;
}

.bonus-text p {
  font-size: 13px;
  color: #aaaacc;
  margin: 0;
}

/* Accordion / FAQ */
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  background: var(--card-bg);
  cursor: pointer;
  font-family: var(--brand-head-font);
  font-size: 14px;
  color: var(--brand-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(123, 47, 190, 0.1);
  color: var(--brand-accent);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 13px;
  color: #aaaacc;
  line-height: 1.7;
  background: #0f0f22;
}

.faq-answer.open {
  max-height: 300px;
  padding: 16px 20px;
}

.faq-toggle {
  font-size: 18px;
  color: var(--brand-primary);
  line-height: 1;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--brand-accent);
}

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

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

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

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

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

.footer-brand p {
  font-size: 12px;
  color: #666677;
  line-height: 1.7;
}

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

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

.footer-col ul li a {
  font-size: 13px;
  color: #666677;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Security Logos */
.security-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 47, 190, 0.1);
  border: 1px solid rgba(123, 47, 190, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  color: #aaaacc;
  font-weight: 600;
}

.security-badge .badge-icon {
  font-size: 16px;
}

.ssl-badge .badge-icon { color: #00cc66; }
.visa-badge .badge-icon { color: var(--brand-accent); }

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

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

.footer-legal-links a {
  font-size: 12px;
  color: #555566;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-copyright {
  font-size: 12px;
  color: #444455;
}

/* Responsible gambling note */
.responsible-note {
  background: rgba(123, 47, 190, 0.08);
  border: 1px solid rgba(123, 47, 190, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 12px;
  color: #666677;
  line-height: 1.6;
  text-align: center;
}

.responsible-note strong {
  color: #888899;
}

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

.legal-page {
  padding: 100px 0 60px;
  min-height: 80vh;
}

.legal-page .page-title {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.legal-page .page-subtitle {
  font-size: 13px;
  color: #666677;
  margin-bottom: 40px;
}

.legal-body h2 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  color: var(--brand-accent);
  margin-bottom: 12px;
  margin-top: 32px;
}

.legal-body h3 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  color: var(--brand-text);
  margin-bottom: 10px;
  margin-top: 20px;
}

.legal-body p {
  font-size: 14px;
  color: #aaaacc;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.legal-body ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 14px;
  color: #aaaacc;
  line-height: 1.7;
}

.legal-body ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--brand-primary);
  font-size: 9px;
}

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

.text-center { text-align: center; }
.text-accent  { color: var(--brand-accent); }
.text-muted   { color: #666677; }
.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 40px 0;
}

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

@media (max-width: 1200px) {
  .hero-visual { flex: 0 0 300px; }
  .hero-card-display { width: 280px; height: 240px; }
}

@media (max-width: 992px) {
  /* Mobile burger menu */
  .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 10px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
  }

  .header-cta .btn-primary { display: none; }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .hero-content { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 24px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { flex: none; width: 100%; }
  .hero-card-display { width: 280px; height: 220px; margin: 0 auto; }

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

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

@media (max-width: 768px) {
  .content-section { padding: 24px 20px; }
  .cta-section { padding: 32px 20px; }
  .bonus-banner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-cta { right: 16px; bottom: 20px; font-size: 14px; padding: 12px 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .stat-number { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .btn-hero { padding: 14px 28px; font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .header-inner { padding: 10px 16px; }
  .games-row { gap: 10px; }
  .game-card { flex: 0 0 150px; }
  .info-table th, .info-table td { padding: 10px 12px; font-size: 12px; }
}

/* Touch targets */
button, a, input, select, textarea {
  min-height: 44px;
  min-width: 44px;
}

nav a, .btn, .btn-hero, .btn-cta, .btn-outline {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
