/* ========================================
   OPTIMIZED CSS - DARK THEME ONLY
   ========================================== */

:root {
  /* ============ Primitive Color Tokens ============ */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-orange-400: rgba(230, 129, 97, 1);

  /* ============ RGB versions for opacity ============ */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-400-rgb: 230, 129, 97;

  /* ============ Semantic Color Tokens (Dark Mode) ============ */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-warning: var(--color-orange-400);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);

  /* ============ Common style patterns ============ */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* ============ Typography ============ */
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-family-mono: 'Berkeley Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* ============ Spacing ============ */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* ============ Border Radius ============ */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* ============ Shadows ============ */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);

  /* ============ Animation ============ */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* ============ Layout ============ */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* ========================================
   BASE STYLES
   ========================================== */

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

html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family-base);
  background: linear-gradient(135deg, #0a0010 0%, #1a001a 100%);
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: #FF006E;
  letter-spacing: var(--letter-spacing-tight);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* ========================================
   COMPONENTS
   ========================================== */

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--duration-normal) var(--ease-standard);
}

.btn-primary {
  background: #FF006E;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
  background: #FF1D8E;
  box-shadow: 0 6px 20px rgba(255, 29, 142, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Utility classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-8 { gap: var(--space-8); }
.gap-16 { gap: var(--space-16); }
.m-0 { margin: 0; }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }
.p-0 { padding: 0; }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.px-16 { padding-left: var(--space-16); padding-right: var(--space-16); }
.block { display: block; }
.hidden { display: none; }

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

/* ========================================
   LAYOUT
   ========================================== */

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) { .container { max-width: var(--container-sm); } }
@media (min-width: 768px) { .container { max-width: var(--container-md); } }
@media (min-width: 1024px) { .container { max-width: var(--container-lg); } }
@media (min-width: 1280px) { .container { max-width: var(--container-xl); } }

/* ============ HEADER ============ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1a0020 0%, #0a0010 100%);
  border-bottom: 1px solid rgba(255, 0, 110, 0.2);
  box-shadow: 0 2px 10px rgba(255, 0, 110, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1920px;
  margin: 0 auto;
  gap: 2rem;
}

/* Hamburger Menu (для мобильного) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #FF006E;
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-standard);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.logo-icon {
  font-size: 2rem;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
  font-weight: 500;
}

.nav-link.active {
  color: #FF006E;
}

.nav-link:hover {
  color: #FF1D8E;
  background: rgba(255, 0, 110, 0.1);
}

/* Badge для уведомлений */
.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #FF006E;
  color: #ffffff;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-secondary,
.btn-primary {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--duration-normal) var(--ease-standard);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
  background: #FF006E;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
  background: #FF1D8E;
  box-shadow: 0 6px 20px rgba(255, 29, 142, 0.4);
  transform: translateY(-2px);
}

/* Icon Buttons */
.icon-btn {
  background: transparent;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-standard);
}

.icon-btn:hover {
  background: rgba(255, 0, 110, 0.1);
  color: #FF006E;
}

.flag {
  font-size: 1.2rem;
}

/* Адаптив для хедера */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  
  .btn-secondary {
    display: none;
  }
}


/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 73px;
  width: 240px;
  height: calc(100vh - 73px);
  background: linear-gradient(180deg, #2a0a30 0%, #1a0020 100%);
  border-right: 1px solid rgba(255, 0, 110, 0.2);
  overflow-y: auto;
  transition: transform var(--duration-normal) var(--ease-standard);
  z-index: 999;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  color: #e0e0e0;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-standard);
  border-left: 3px solid transparent;
}

.sidebar-link:hover {
  background: rgba(255, 0, 110, 0.1);
  border-left-color: #FF006E;
  color: #FF1D8E;
}

.sidebar-link.active {
  background: rgba(255, 0, 110, 0.15);
  border-left-color: #FF006E;
  color: #FF006E;
}

/* Main Content */
.main-content {
  margin-left: 240px;
  padding: 2rem;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2a0a40 0%, #1a0020 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
}

.hero-subtitle {
  font-size: 2.5rem;
  color: #FF006E;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-btn {
  background: #FF006E;
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
}

.hero-btn:hover {
  background: #FF1D8E;
  box-shadow: 0 6px 30px rgba(255, 29, 142, 0.6);
  transform: translateY(-3px);
}

.slot-machine {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #3a1050 0%, #2a0a40 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FF006E;
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
}

.slot-display { font-size: 5rem; }

/* Game Cards */
.game-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.game-card {
  background: linear-gradient(135deg, #2a0a40 0%, #1a0020 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-decoration: none;
  color: #ffffff;
  transition: all var(--duration-normal) var(--ease-standard);
  border: 1px solid rgba(255, 0, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-standard);
}

.game-card:hover::before { opacity: 1; }
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
  border-color: #FF006E;
}

.game-card h2 { font-size: 2rem; font-weight: 700; }
.game-icon { font-size: 4rem; }

/* Content Article */
.content-article {
  background: rgba(26, 0, 32, 0.6);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 0, 110, 0.1);
}

.article-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.content-article h2 {
  font-size: 2rem;
  color: #FF006E;
  margin: 2.5rem 0 1.5rem;
  border-bottom: 2px solid rgba(255, 0, 110, 0.3);
  padding-bottom: 0.5rem;
}

.content-article h3 {
  font-size: 1.5rem;
  color: #FF1D8E;
  margin: 2rem 0 1rem;
}

.content-article p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #e0e0e0;
}

/* Tables */
.info-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-base);
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.15);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(42, 10, 64, 0.5);
}

.info-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  background: rgba(255, 0, 110, 0.1);
  color: #FF1D8E;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 0, 110, 0.15);
}

.info-table td {
  padding: 1rem 1.5rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 0, 110, 0.15);
}

.info-table tbody tr:hover { background: rgba(255, 0, 110, 0.05); }

/* Lists */
.features-list {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}

.features-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
}

.features-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF006E;
  font-weight: 700;
  font-size: 1.2rem;
}

.features-list strong { color: #FF1D8E; }

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a0020 0%, #0a0010 100%);
  border-top: 1px solid rgba(255, 0, 110, 0.2);
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.footer-section h3 {
  color: #FF006E;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section ul {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: #e0e0e0; text-decoration: none; transition: color var(--duration-normal) var(--ease-standard); }
.footer-section a:hover { color: #FF006E; }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 0, 110, 0.2);
  color: #a0a0a0;
  font-size: 0.9rem;
}

/* ========================================
   CASINO COMPONENTS
   ========================================== */

/* Slots Grid */
.slots-grid-section { margin-bottom: 3rem; }

.section-title {
  font-size: 2rem;
  color: #FF006E;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.slot-card {
  background: linear-gradient(135deg, #2a0a40 0%, #1a0020 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 0, 110, 0.2);
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
  overflow: hidden;
}

.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-standard);
}

.slot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
  border-color: #FF006E;
}

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

.slot-image { font-size: 4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.slot-card h3 { font-size: 1.1rem; color: #ffffff; margin: 0.8rem 0 0.5rem; font-weight: 600; position: relative; z-index: 1; }
.slot-card .provider { font-size: 0.9rem; color: #FF1D8E; margin: 0.3rem 0; font-weight: 500; position: relative; z-index: 1; }
.slot-card .rtp { font-size: 0.85rem; color: #a0a0a0; margin: 0.3rem 0 1rem; position: relative; z-index: 1; }

.play-btn {
  background: #FF006E;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  width: 100%;
  position: relative;
  z-index: 1;
}

.play-btn:hover {
  background: #FF1D8E;
  box-shadow: 0 4px 15px rgba(255, 29, 142, 0.5);
  transform: translateY(-2px);
}

/* Bonus Display */
.bonus-display {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #3a1050 0%, #2a0a40 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #FF006E;
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.6);
  gap: 0.5rem;
}

.bonus-icon {
  font-size: 5rem;
  animation: float 3s ease-in-out infinite;
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF006E;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

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

/* Bonus Offers */
.bonus-offers-section { margin-bottom: 3rem; }

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.bonus-offer-card {
  background: linear-gradient(135deg, #2a0a40 0%, #1a0020 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 0, 110, 0.3);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-standard);
}

.bonus-offer-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-standard);
}

.bonus-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.4);
  border-color: #FF006E;
}

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

.bonus-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #FF006E;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.bonus-card-icon { font-size: 4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.bonus-offer-card h3 { font-size: 1.5rem; color: #ffffff; margin-bottom: 1rem; position: relative; z-index: 1; }
.bonus-percentage { font-size: 2.5rem; font-weight: 900; color: #FF006E; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.bonus-max { font-size: 1.3rem; color: #FF1D8E; margin-bottom: 1.5rem; font-weight: 600; position: relative; z-index: 1; }

.bonus-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.bonus-features li { padding: 0.6rem 0; color: #e0e0e0; font-size: 0.95rem; line-height: 1.5; }

.claim-btn {
  background: #FF006E;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  width: 100%;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.claim-btn:hover {
  background: #FF1D8E;
  box-shadow: 0 6px 25px rgba(255, 29, 142, 0.6);
  transform: translateY(-2px);
}

/* Comparison Table */
.comparison-section { margin-bottom: 3rem; }

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #2a0a40 0%, #1a0020 100%);
}

.comparison-table thead { background: rgba(255, 0, 110, 0.2); }

.comparison-table th {
  padding: 1.2rem;
  text-align: left;
  color: #FF006E;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(255, 0, 110, 0.3);
}

.comparison-table td {
  padding: 1rem 1.2rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 0, 110, 0.1);
}

.comparison-table tbody tr:hover { background: rgba(255, 0, 110, 0.05); }
.comparison-table strong { color: #FF1D8E; font-weight: 700; }

/* Calculator */
.calculator-section { margin-bottom: 3rem; }

.calculator-container {
  max-width: 600px;
  margin: 0 auto;
}

.calculator-card {
  background: linear-gradient(135deg, #2a0a40 0%, #1a0020 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid rgba(255, 0, 110, 0.3);
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.2);
}

.calculator-input-group { margin-bottom: 1.5rem; }
.calculator-input-group label { display: block; color: #FF1D8E; font-weight: 600; margin-bottom: 0.5rem; font-size: 1rem; }

.calculator-input-group input, .calculator-input-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 0, 110, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(26, 0, 32, 0.6);
  color: #e0e0e0;
  font-size: 1rem;
  transition: all var(--duration-normal) var(--ease-standard);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-dark);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2rem;
}

.calculator-input-group input:focus, .calculator-input-group select:focus {
  outline: none;
  border-color: #FF006E;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.3);
}

.calculate-btn {
  background: #FF006E;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  width: 100%;
  margin-bottom: 1.5rem;
}

.calculate-btn:hover {
  background: #FF1D8E;
  box-shadow: 0 6px 25px rgba(255, 29, 142, 0.6);
  transform: translateY(-2px);
}

.calculator-results {
  background: rgba(255, 0, 110, 0.05);
  border-radius: var(--radius-base);
  padding: 1.5rem;
  border: 1px solid rgba(255, 0, 110, 0.2);
}

.result-row { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid rgba(255, 0, 110, 0.1); }
.result-row:last-child { border-bottom: none; }
.result-row.highlight { background: rgba(255, 0, 110, 0.1); margin: 0 -1rem; padding: 1rem; border-radius: var(--radius-sm); margin-top: 0.5rem; }
.result-row span { color: #e0e0e0; font-size: 0.95rem; }
.result-row strong { color: #FF006E; font-size: 1.1rem; font-weight: 700; }
.result-row.highlight strong { font-size: 1.3rem; }

/* Claiming Steps */
.claiming-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.claim-step {
  background: linear-gradient(135deg, #2a0a40 0%, #1a0020 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 0, 110, 0.2);
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
}

.claim-step:hover {
  border-color: #FF006E;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF006E, #FF1D8E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.claim-step h3 { font-size: 1.3rem; color: #FF006E; margin-bottom: 1rem; }
.claim-step p { color: #e0e0e0; line-height: 1.6; font-size: 0.95rem; }

/* Lists */
.bullet-list {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.bullet-list li {
  padding: 0.7rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.7;
  color: #e0e0e0;
  font-size: 0.98rem;
}

.bullet-icon {
  position: absolute;
  left: 0;
  color: #FF006E;
  font-weight: 700;
  font-size: 1rem;
  width: 2rem;
  text-align: center;
}

.info-box {
  background: rgba(255, 0, 110, 0.05);
  border: 2px solid #FF006E;
  border-left: 5px solid #FF006E;
  border-radius: var(--radius-base);
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.info-box h4 {
  color: #FF006E;
  font-size: 1.15rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.info-box ul { margin: 0; }

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

@media (max-width: 1024px) {
  .main-content { margin-left: 0; padding: 1rem; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.active { transform: translateX(0); }
  .hero-title { font-size: 4rem; }
  .hero-subtitle { font-size: 2rem; }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-container { padding: 1rem; }
  .main-nav { display: none; }
  .hero { padding: 2rem; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.5rem; }
  .hero-image { margin-top: 2rem; }
  .game-sections { grid-template-columns: 1fr; }
  .content-article { padding: 1.5rem; }
  .article-title { font-size: 1.8rem; }
  .content-article h2 { font-size: 1.5rem; }
  .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-btn { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
  .slot-machine { width: 150px; height: 150px; }
  .slot-display { font-size: 4rem; }
  .game-card { padding: 2rem; }
  .game-card h2 { font-size: 1.5rem; }
  .game-icon { font-size: 3rem; }
  .info-table th, .info-table td { padding: 0.8rem; font-size: 0.9rem; }
}

/* Scrollbar */
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255, 0, 110, 0.5); border-radius: 3px; }
.sidebar::-webkit-scrollbar-thumb:hover { background: rgba(255, 0, 110, 0.7); }
