/* ============================================
   REALZ CASINO CANADA - MAIN STYLESHEET
   ============================================ */

/* CSS VARIABLES */
:root {
  --bg-primary: #0f0a06;
  --bg-secondary: #1a1410;
  --bg-tertiary: #241c15;
  --bg-card: #1f1812;
  --bg-hover: #2a221a;
  
  --accent-gold: #d4a853;
  --accent-gold-light: #e8c678;
  --accent-gold-dark: #b8923f;
  --accent-cyan: #4fd1c5;
  --accent-red: #ef4444;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-green: #22c55e;
  
  --text-primary: #f5f2ed;
  --text-secondary: #a8a095;
  --text-muted: #6b6560;
  
  --border-color: rgba(212, 168, 83, 0.15);
  --border-light: rgba(212, 168, 83, 0.25);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(212, 168, 83, 0.2);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --header-height: 64px;
  --sidebar-width: 220px;
  --content-max: 1440px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(26, 20, 16, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.menu-btn:hover { background: var(--bg-hover); }

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.logo-text .accent {
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(212, 168, 83, 0.5);
}

.search-box {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .search-box { display: flex; }
}

.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
}

.search-box input {
  width: 280px;
  height: 40px;
  padding: 0 16px 0 42px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.2s;
}

.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--bg-card);
}

.header-btn {
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  white-space: nowrap;
}

.header-btn:not(.primary) {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

.header-btn:not(.primary):hover {
  background: var(--bg-hover);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.header-btn.primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--bg-primary);
}

.header-btn.primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: var(--shadow-gold);
  color: var(--bg-primary);
}

/* APP WRAPPER */
.app-wrapper {
  display: flex;
  min-height: 100vh;
  padding-top: var(--header-height);
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  left: 0;
  top: var(--header-height);
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar.active { transform: translateX(0); }

@media (min-width: 1024px) {
  .sidebar { transform: translateX(0); }
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  margin-bottom: 4px;
}

.nav-item:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.nav-item.active {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  color: var(--accent-gold);
  border: 1px solid var(--border-color);
}

.nav-icon {
  font-size: 18px;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.2s;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  filter: grayscale(0%) brightness(1);
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border-color);
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.footer-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.flag { font-size: 18px; }

/* MAIN CONTENT */
.main-content {
  flex: 1;
  padding: 24px 20px 60px;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .main-content {
    margin-left: var(--sidebar-width);
    padding: 32px 40px 80px;
  }
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 380px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(79, 209, 197, 0.05) 0%, transparent 40%);
}

.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-gold);
  opacity: 0.3;
}

.hero-corner--tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.hero-corner--tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.hero-corner--bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.hero-corner--br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  max-width: 500px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.2) 0%, rgba(212, 168, 83, 0.1) 100%);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 36px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: var(--shadow-gold), 0 4px 20px rgba(212, 168, 83, 0.4);
  transform: translateY(-2px);
  color: var(--bg-primary);
}

.hero-visual {
  position: relative;
  width: 300px;
  height: 300px;
  display: none;
}

@media (min-width: 900px) {
  .hero-visual { display: block; }
}

.hero-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}

.graphic-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  opacity: 0.8;
  animation: pulse 3s ease-in-out infinite;
}

.graphic-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  opacity: 0.4;
  animation: spin 20s linear infinite;
}

.graphic-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.3) 0%, transparent 70%);
  animation: glow 4s ease-in-out infinite;
}

.hero-graphic.alt .graphic-circle { background: linear-gradient(135deg, var(--accent-cyan) 0%, #38b2ac 100%); }
.hero-graphic.alt .graphic-ring { border-color: var(--accent-cyan); }
.hero-graphic.alt .graphic-glow { background: radial-gradient(circle, rgba(79, 209, 197, 0.3) 0%, transparent 70%); }

.hero-graphic.vip .graphic-circle { background: linear-gradient(135deg, var(--accent-purple) 0%, #7c3aed 100%); }
.hero-graphic.vip .graphic-ring { border-color: var(--accent-purple); }
.hero-graphic.vip .graphic-glow { background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%); }

.hero-graphic.crypto .graphic-circle { background: linear-gradient(135deg, #f7931a 0%, #f59e0b 100%); }
.hero-graphic.crypto .graphic-ring { border-color: #f7931a; }
.hero-graphic.crypto .graphic-glow { background: radial-gradient(circle, rgba(247, 147, 26, 0.3) 0%, transparent 70%); }

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

@keyframes glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 20, 16, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-primary);
  transition: all 0.2s;
  z-index: 10;
}

.hero-nav:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.hero-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.hero-nav--prev { left: 16px; }
.hero-nav--next { right: 16px; }

.hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot:hover { background: var(--text-secondary); }

.hero-dot.active {
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
}

/* CATEGORY NAV */
.category-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar { display: none; }

.cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.2s;
}

.cat-btn:hover {
  background: var(--bg-hover);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.cat-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.cat-icon.cyan { fill: var(--accent-cyan); }

/* GAMES SECTION */
.games-section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

.section-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.see-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-gold);
  transition: color 0.2s;
}

.see-all:hover { color: var(--accent-gold-light); }

.nav-arrows {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.nav-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
}

.nav-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

@media (min-width: 640px) {
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

.game-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.game-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.game-placeholder.live { background: linear-gradient(145deg, #1f1418 0%, #2a1a1f 100%); }
.game-placeholder.exclusive { background: linear-gradient(145deg, #1a1525 0%, #251a30 100%); }
.game-placeholder.bonus { background: linear-gradient(145deg, #1f1520 0%, #2a1a28 100%); }

.placeholder-icon {
  font-size: 40px;
  opacity: 0.6;
}

.game-num {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
}

.game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.game-badge.jackpot {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--bg-primary);
}

.game-badge.live {
  background: linear-gradient(135deg, var(--accent-red) 0%, #dc2626 100%);
}

.game-badge.exclusive {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7c3aed 100%);
}

.game-badge.bonus {
  background: linear-gradient(135deg, var(--accent-pink) 0%, #db2777 100%);
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(15, 10, 6, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.game-card:hover .game-overlay {
  opacity: 1;
  visibility: visible;
}

.game-card:hover .game-placeholder {
  border-color: var(--accent-gold);
}

.game-btn {
  width: 100px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.game-btn.play {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--bg-primary);
}

.game-btn.play:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: var(--bg-primary);
}

.game-btn.demo {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-secondary);
}

.game-btn.demo:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* CONTENT SECTION */
.content-section {
  max-width: 1000px;
  margin: 0 auto 48px;
}

.content-header {
  text-align: center;
  margin-bottom: 40px;
}

.content-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.content-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.content-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* CONTENT BLOCK */
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
}

.block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.block-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.block-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

.block-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

.block-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.block-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* FEATURES LIST */
.features-list {
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child { border-bottom: none; }

.feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--accent-green);
}

.feature-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-text strong {
  color: var(--text-primary);
}

/* DATA TABLE */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  background: var(--bg-tertiary);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  color: var(--text-secondary);
}

.data-table tr:hover td {
  background: rgba(212, 168, 83, 0.03);
}

.winner-amount {
  font-weight: 700;
  color: var(--accent-green);
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(212, 168, 83, 0.02) 100%);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.highlight-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  margin: 48px 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 48px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: var(--shadow-gold), 0 6px 24px rgba(212, 168, 83, 0.4);
  transform: translateY(-3px);
  color: var(--bg-primary);
}

/* FAQ SECTION */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-hover); }

.faq-question-text {
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 20px;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  transition: transform 0.3s;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* RESPONSIBLE SECTION */
.responsible-section {
  max-width: 1000px;
  margin: 48px auto;
}

.responsible-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .responsible-tools { grid-template-columns: repeat(4, 1fr); }
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.tool-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.tool-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

.tool-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.tool-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 32px;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .footer { margin-left: var(--sidebar-width); }
}

.footer-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

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

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 2fr; }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 640px) {
  .footer-links { grid-template-columns: repeat(4, 1fr); }
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.footer-column a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-column a:hover { color: var(--accent-gold); }

.footer-payments {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.footer-payments h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-icon {
  height: 32px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2;
}

.social-link:hover svg { stroke: var(--bg-primary); }

.footer-legal {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
}

/* MOBILE OVERLAY */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track { background: var(--bg-secondary); }

::-webkit-scrollbar-thumb {
  background: var(--bg-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* SELECTION */
::selection {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FOCUS STYLES */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .header, .sidebar, .hero-slider, .games-section { display: none; }
  .main-content { margin: 0; padding: 20px; }
  .content-block { break-inside: avoid; }
}

/* INFO GRID - Crypto Section */
.info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 32px 0;
}

@media (min-width: 640px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .info-grid { grid-template-columns: repeat(4, 1fr); }
}

.info-card {
  background: linear-gradient(145deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.info-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.info-card h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* BONUS COMPARISON TABLE */
.bonus-comparison {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 28px 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.header {
  background: var(--bg-card);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.comparison-row span {
  font-size: 14px;
  color: var(--text-secondary);
}

.comparison-row span:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-row span.highlight {
  color: var(--accent-green);
  font-weight: 600;
}

/* PROVINCE TABLE */
.province-table {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 28px 0;
}

.province-table .table-row {
  display: grid;
  grid-template-columns: 1fr 0.6fr 1.2fr 1fr;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .province-table .table-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .province-table .table-row span:nth-child(3),
  .province-table .table-row span:nth-child(4) {
    display: none;
  }
}

.province-table .table-row:last-child {
  border-bottom: none;
}

.province-table .table-row.header {
  background: var(--bg-card);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.province-table .table-row span:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* RTP EXAMPLES SECTION */
.rtp-examples {
  margin: 32px 0;
}

.rtp-examples h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.rtp-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .rtp-grid { grid-template-columns: repeat(3, 1fr); }
}

.rtp-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.rtp-card:hover {
  transform: translateY(-4px);
}

.rtp-card.low {
  border-top: 3px solid var(--accent-cyan);
}

.rtp-card.medium {
  border-top: 3px solid var(--accent-gold);
}

.rtp-card.high {
  border-top: 3px solid var(--accent-red);
}

.vol-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.rtp-card.low .vol-label {
  background: rgba(79, 209, 197, 0.15);
  color: var(--accent-cyan);
}

.rtp-card.medium .vol-label {
  background: rgba(212, 168, 83, 0.15);
  color: var(--accent-gold);
}

.rtp-card.high .vol-label {
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-red);
}

.rtp-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 8px 0;
}

.vol-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* SECURITY METHODS */
.security-methods {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 28px 0;
}

@media (min-width: 768px) {
  .security-methods { grid-template-columns: repeat(3, 1fr); }
}

.method-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.method-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.method-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.method-card h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.method-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* TIPS GRID */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .tips-grid { grid-template-columns: repeat(4, 1fr); }
}

.tip-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.tip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 12px;
}

.tip-item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* STEPS CONTAINER */
.steps-container {
  margin: 32px 0;
}

.step-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.step-card:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-primary);
}

.step-content h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* DASHBOARD FEATURES */
.dashboard-features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (min-width: 640px) {
  .dashboard-features { grid-template-columns: repeat(2, 1fr); }
}

.dash-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.dash-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.dash-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ENHANCED CONTENT BLOCK STYLES */
.content-block .block-content h4 {
  position: relative;
  padding-left: 16px;
}

.content-block .block-content h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* ANIMATED BORDERS */
@keyframes borderGlow {
  0%, 100% { border-color: var(--border-color); }
  50% { border-color: var(--accent-gold); }
}

.info-card:hover,
.method-card:hover,
.rtp-card:hover {
  animation: borderGlow 2s ease-in-out infinite;
}

/* SECTION DIVIDERS */
.content-section + .content-section {
  position: relative;
}

.content-section + .content-section::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 640px) {
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  
  .comparison-row.header {
    display: none;
  }
  
  .comparison-row span::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  
  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-bottom: 8px;
  }
}

/* PRINT STYLES FOR NEW SECTIONS */
@media print {
  .info-grid,
  .security-methods,
  .rtp-grid,
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-card,
  .method-card,
  .rtp-card,
  .step-card {
    break-inside: avoid;
  }
}

/* DARK MODE ENHANCEMENTS */
@media (prefers-color-scheme: dark) {
  .info-card,
  .method-card,
  .dash-item {
    background: linear-gradient(145deg, rgba(36, 28, 21, 0.8) 0%, rgba(31, 24, 18, 0.8) 100%);
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
.step-number,
.tip-num {
  font-variant-numeric: tabular-nums;
}

.info-card:focus-within,
.method-card:focus-within,
.rtp-card:focus-within {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* LOADING STATES */
.info-card.loading,
.method-card.loading,
.rtp-card.loading {
  position: relative;
  overflow: hidden;
}

.info-card.loading::after,
.method-card.loading::after,
.rtp-card.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 168, 83, 0.1),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% { left: 100%; }
}