/* ===================================
   MobileWin DE - Main Stylesheet
   Mobile-First Design | Core Web Vitals Optimized
   =================================== */

/* Design Tokens */
:root {
  /* Colors - Premium Palette */
  --color-primary: #00d26a;
  --color-primary-dark: #00b85a;
  --color-primary-light: #33dc88;
  --color-secondary: #1a1f36;
  --color-accent: #ff6b35;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-border: #e2e8f0;
  --color-success: #00d26a;
  --color-warning: #fbbf24;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', var(--font-primary);

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;

  /* Shadows - Subtle & Premium */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions - Optimized for INP */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-tooltip: 1050;
}

/* ===================================
   Reset & Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent CLS - Reserve space for images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

/* ===================================
   Typography
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 1.75rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-sm);
}

strong {
  font-weight: 600;
  color: var(--color-secondary);
}

/* ===================================
   Layout Container
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.container-narrow {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* ===================================
   Header & Navigation
   =================================== */
/* Header */
.site-header {
  background: white;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  /* Consistent height */
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-secondary);
  /* Assuming --color-heading is meant to be --color-secondary or similar */
  gap: 0.5rem;
}

.logo img,
.logo-img {
  height: 40px;
  /* Perfect for toolbar */
  width: auto;
  display: block;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--color-heading);
  /* Fixed: Dark color for white header */
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
  transition: opacity var(--transition-fast);
}

.menu-toggle:hover {
  opacity: 0.8;
}

/* Navigation */
.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

@media (min-width: 768px) {
  .main-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    /* Fixed: Transparent on desktop */
  }

  .menu-toggle {
    display: none;
  }

  .main-nav ul {
    display: flex;
    gap: var(--space-md);
    padding: 0;
    margin: 0;
  }

  /* Desktop Links */
  .main-nav a {
    color: var(--color-heading);
    /* Fixed: Dark text on desktop */
  }

  .main-nav a:hover {
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.05);
  }
}

.main-nav.is-open {
  max-height: 500px;
  box-shadow: var(--shadow-lg);
}

.main-nav ul {
  list-style: none;
  padding: var(--space-sm);
}

.main-nav li {
  margin-bottom: var(--space-xs);
  position: relative;
}

@media (min-width: 768px) {
  .main-nav li {
    margin-bottom: 0;
  }
}

.main-nav a {
  display: block;
  padding: var(--space-sm);
  color: white;
  /* Mobile default */
  border-radius: var(--radius-sm);
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .main-nav a {
    color: var(--color-heading);
    /* Desktop override: Dark text */
  }

  .main-nav a:hover,
  .main-nav a:focus {
    background: rgba(0, 0, 0, 0.05);
    /* Subtle grey hover for desktop */
    color: var(--color-primary);
  }
}

/* Dropdown Menu */
/* Dropdown Menu - Improved */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  /* Stronger shadow */
  min-width: 240px;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  z-index: 2000;
  /* Ensure it's on top */
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5px;
  /* Separation from header */
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown li {
  margin: 0;
  width: 100%;
}

.dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
  /* Prevent wrapping */
  border-left: 2px solid transparent;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-left-color: var(--color-primary);
  padding-left: 1.25rem;
  /* Slide effect */
}

@media (max-width: 767px) {
  .dropdown {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    padding-left: var(--space-md);
  }

  .has-dropdown.active .dropdown {
    display: block;
  }
}

/* Main Nav Link Hover - Cleanup */
.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
  color: white;
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}


.hero h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.hero-highlight {
  color: var(--color-primary);
  font-weight: 800;
  display: inline-block;
  border-bottom: 3px solid var(--color-primary);
  line-height: 1;
  padding: 0 2px;
}

.hero-update-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-update-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 210, 106, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 106, 0);
  }
}


.hero img {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===================================
   CTA Buttons
   =================================== */

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-primary);
  line-height: 1;
  /* Minimum tap target for mobile */
  min-height: 44px;
  min-width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===================================
   TOP-10 Casino Table
   =================================== */

.casino-table-wrapper {
  margin: var(--space-xl) 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.casino-table-header {
  background: var(--color-secondary);
  color: white;
  padding: var(--space-md);
  text-align: center;
}

.casino-table-header h2 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.casino-table thead {
  background: var(--color-bg-alt);
}

.casino-table th {
  padding: var(--space-sm);
  text-align: left;
  font-weight: 600;
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

.casino-table th.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: var(--space-lg);
}

.casino-table th.sortable:hover {
  background: var(--color-border);
}

.casino-table th.sortable::after {
  content: '⇅';
  position: absolute;
  right: var(--space-sm);
  opacity: 0.5;
}

.casino-table td {
  padding: var(--space-md) var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.casino-table tbody tr {
  transition: background-color var(--transition-fast);
}

.casino-table tbody tr:hover {
  background: var(--color-bg-alt);
}

/* Rank Badge */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.rank-badge.rank-1 {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1f36;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.rank-badge.rank-2 {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  color: #1a1f36;
}

.rank-badge.rank-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #e9ac7c 100%);
  color: white;
}

.rank-badge.rank-other {
  background: var(--color-bg-alt);
  color: var(--color-text-light);
}

/* Casino Info Cell */
.casino-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.casino-logo {
  width: 90px;
  height: 60px;
  object-fit: contain;
  /* Prevent CLS */
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}


.card-logo {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.casino-name {
  font-weight: 600;
  color: var(--color-secondary);
}

/* Features List */
.features-list {
  list-style: none;
  font-size: 0.85rem;
  line-height: 1.8;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.features-list li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
}


/* Star Rating */
.star-rating {
  color: #fbbf24;
  font-size: 1.125rem;
  letter-spacing: 2px;
}

/* Fix for list items overflowing containers */
.content-section ul {
  padding-left: 0;
  margin-bottom: var(--space-sm);
  list-style: none;
  /* Remove redundant dots as we use emojis */
}

.content-section ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.content-section li {
  margin-bottom: 0.75rem;
}

/* Flex alignment for ul with icons/emojis */
.content-section ul li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}


/* ===================================
   Content Sections
   =================================== */

.content-section {
  padding: var(--space-xl) 0;
}

.content-section:nth-child(even) {
  background: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

/* Info Box */
.info-box {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 210, 106, 0.1);
  /* Primary color with opacity */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.card {
  display: flex;
  flex-direction: column;
}

.card .btn,
.card .btn-secondary {
  margin-top: auto;
  width: 100%;
}

.card-center {
  text-align: center;
  align-items: center;
}

.card-promo {
  background: var(--color-secondary);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  padding: var(--space-xl);
}

.card-promo .card-title {
  color: white;
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

/* Article Grid Layout */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.article-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.article-image {
  height: 180px;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.article-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  text-indent: -9999px;
  overflow: hidden;
}


.article-card {
  position: relative;
}

.article-card:hover .article-title {
  color: var(--color-primary);
}


.article-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  transform: scale(1);
  transition: transform var(--transition-slow);
}

.article-card:hover .article-icon {
  transform: scale(1.1);
}

.article-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
  font-weight: 700;
}

.article-excerpt {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.article-link {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.article-link:hover {
  color: var(--color-primary-dark);
}

/* Specific Card Gradients */
.bg-payment {
  background: linear-gradient(135deg, #00d26a, #00b85a);
}

.bg-crypto {
  background: linear-gradient(135deg, #F7931A, #c87612);
}

.bg-app {
  background: linear-gradient(135deg, #1a1f36, #2d3748);
}

.bg-security {
  background: linear-gradient(135deg, #059669, #047857);
}

.bg-legal {
  background: linear-gradient(135deg, #4B5563, #374151);
}

.bg-bonus {
  background: linear-gradient(135deg, #D97706, #B45309);
}

.bg-speed {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.bg-warning {
  background: linear-gradient(135deg, #DC2626, #B91C1C);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-width: auto;
}

.info-box.warning {
  border-color: var(--color-warning);
  background: #fffbeb;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
  margin: var(--space-xl) 0;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.faq-question::before {
  content: 'Q:';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  color: var(--color-text);
  line-height: 1.7;
  padding-left: calc(var(--space-sm) + 1.5rem);
}

/* ===================================
   Footer
   =================================== */

.site-footer {
  background: var(--color-secondary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-section h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-sm);
}

/* ===================================
   Sticky Mobile CTA
   =================================== */

.sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  padding: var(--space-sm);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: var(--z-fixed);
  text-align: center;
}

.sticky-cta .btn {
  width: 100%;
  max-width: 400px;
}

/* ===================================
   Affiliate Box Styling
   =================================== */

.affiliate-box {
  background: white;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.affiliate-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.affiliate-content {
  flex: 1;
}

.affiliate-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.affiliate-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}


/* ===================================
   Comparison Table Styling
   =================================== */

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.comparison-table thead {
  background: var(--color-heading);
  /* Dark header */
  color: white;
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--color-text);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
  background-color: #f1f3f5;
}

/* Specific Column Styling */
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-heading);
}

.comparison-table td .btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

.affiliate-btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .affiliate-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.25rem;
    gap: 1rem;
  }

  .affiliate-title {
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .affiliate-btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .affiliate-btn .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}

/* ===================================
   Card Alignment Fix
   =================================== */

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card .btn {
  margin-top: auto;
}



/* ===================================
   Bonus Card (Premium Dark)
   =================================== */
.bonus-card {
  background: #0f172a;
  /* Dark Slate 900 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Subtle gloss effect */
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.bonus-label {
  color: #fbbf24;
  /* Amber 400 */
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
  font-family: var(--font-heading);
}

.bonus-amount {
  color: white;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.bonus-sub {
  color: #94a3b8;
  /* Slate 400 */
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.bonus-btn {
  background: #e11d48;
  /* Rose 600 */
  color: white;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  /* Pill shape */
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.4);
}

.bonus-btn:hover {
  background: #be123c;
  /* Rose 700 */
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(225, 29, 72, 0.5);
  color: white;
}

/* ===================================
   Bonus Card Red (Roulette Style)
   =================================== */
.bonus-card-red {
  background: radial-gradient(circle at center, #d00000 0%, #800000 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Decoration (Abstract Roulette) */
.bonus-card-red::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: repeating-conic-gradient(from 0deg,
      rgba(0, 0, 0, 0.1) 0deg 10deg,
      transparent 10deg 20deg);
  opacity: 0.3;
  z-index: 1;
}

.bonus-card-red .bonus-frame {
  border: 4px solid white;
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(160, 0, 0, 0.6);
  /* Semi-transparent backing for readability */
  backdrop-filter: blur(2px);
  width: 100%;
  max-width: 500px;
}

.bonus-card-red .bonus-label {
  color: #00ff00;
  /* Neon Green */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-card-red .bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.bonus-card-red .bonus-sub {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

/* ===================================
   Bonus Card Blue (FeliceBet Style)
   =================================== */
.bonus-card-blue {
  background: radial-gradient(circle at center, #1e3a8a 0%, #0f172a 100%);
  /* Blue to Dark Slate */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Decoration */
.bonus-card-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03));
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.2;
  z-index: 1;
}

.bonus-card-blue .bonus-frame {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(30, 58, 138, 0.4);
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.bonus-card-blue .bonus-label {
  color: #60a5fa;
  /* Light Blue */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
}

.bonus-card-blue .bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bonus-card-blue .bonus-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
}

/* ===================================
   Bonus Card Gold (GrandWin Style)
   =================================== */
.bonus-card-gold {
  background: radial-gradient(circle at center, #ffd700 0%, #b8860b 100%);
  /* Gold to Dark Goldenrod */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Decoration */
.bonus-card-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
  opacity: 0.15;
  z-index: 1;
}

.bonus-card-gold .bonus-frame {
  border: 3px solid rgba(255, 255, 255, 0.5);
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  /* Dark backing for contrast against gold */
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.bonus-card-gold .bonus-label {
  color: #ffd700;
  /* Gold */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-card-gold .bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.bonus-card-gold .bonus-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
}

/* ===================================
   Bonus Card Pandido (Ocean/Fun Style)
   =================================== */
.bonus-card-pandido {
  background: radial-gradient(circle at center, #00c6ff 0%, #0072ff 100%);
  /* Bright Ocean Blue */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 114, 255, 0.3);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Bubbles/Decoration */
.bonus-card-pandido::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px),
    radial-gradient(rgba(255, 255, 255, 0.1) 4px, transparent 4px);
  background-size: 30px 30px, 50px 50px;
  background-position: 0 0, 25px 25px;
  opacity: 0.6;
  z-index: 1;
}

.bonus-card-pandido .bonus-frame {
  /* No border, just a clean look or a capsule */
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
}

.bonus-card-pandido .bonus-label {
  background: #ffd700;
  /* Gold Pill */
  color: #5d4037;
  /* Brown/Dark text */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  /* Pill */
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-family: var(--font-heading);
}

.bonus-card-pandido .bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 3px 0 #0056b3, 0 6px 1px rgba(0, 0, 0, 0.2);
  /* Cartoonish shadow */
}

.bonus-card-pandido .bonus-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e0f7fa;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Bonus Card Silver (SilverPlay Style)
   =================================== */
.bonus-card-silver {
  background: radial-gradient(circle at center, #d7d7d7 0%, #a9a9a9 100%);
  /* Light Silver to Dark Gray */
  color: #333;
  /* Dark text for contrast on silver */
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Metallic Shine */
.bonus-card-silver::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transform: rotate(30deg);
  animation: shine 6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translate(-30%, -30%) rotate(30deg);
  }

  100% {
    transform: translate(30%, 30%) rotate(30deg);
  }
}

.bonus-card-silver .bonus-frame {
  border: 3px solid rgba(255, 255, 255, 0.8);
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.bonus-card-silver .bonus-label {
  color: #2d3748;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bonus-card-silver .bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1a202c;
  /* Very Dark Gray */
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 1px 0 white;
}

.bonus-card-silver .bonus-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
}

/* ===================================
   Bonus Card Dragon (Spin Dragons Style)
   =================================== */
.bonus-card-dragon {
  background: linear-gradient(135deg, #800000 0%, #ff4500 100%);
  /* Maroon to Orange Red */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(128, 0, 0, 0.4);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fire/Scales Decoration */
.bonus-card-dragon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 69, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  z-index: 1;
  opacity: 0.5;
}

.bonus-card-dragon .bonus-frame {
  border: 2px solid rgba(255, 215, 0, 0.3);
  /* faint gold border */
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
}

.bonus-card-dragon .bonus-label {
  color: #ffd700;
  /* Gold */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.bonus-card-dragon .bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.bonus-card-dragon .bonus-sub {
  font-size: 1.25rem;
  /* Slightly smaller to fit details */
  font-weight: 700;
  color: #ffdab9;
  /* Peach Puff / Light Orange */
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
}

/* ===================================
   Bonus Card Slotz (TheSlotz Style)
   =================================== */
.bonus-card-slotz {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
  /* Deep Purple to Violet */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(76, 29, 149, 0.4);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Neon Grid Decoration */
.bonus-card-slotz::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  opacity: 0.3;
}

.bonus-card-slotz .bonus-frame {
  border: 2px solid #a78bfa;
  /* Light Purple border */
  padding: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(17, 24, 39, 0.6);
  /* Dark background */
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3), inset 0 0 20px rgba(124, 58, 237, 0.1);
}

.bonus-card-slotz .bonus-label {
  color: #c4b5fd;
  /* Soft Purple */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}

.bonus-card-slotz .bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
  /* Neon Glow */
}

.bonus-card-slotz .bonus-sub {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e9d5ff;
  /* Very Light Purple */
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
}

/* ===================================
   Bonus Card Viking (VikingLuck Style)
   =================================== */
.bonus-card-viking {
  background: linear-gradient(135deg, #2c3e50 0%, #4a6c8a 100%);
  /* Nordic Slate Blue */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.5);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #8d6e63;
  /* Rustic Border */
}

/* Runes/Frost Decoration */
.bonus-card-viking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  background-size: 20px 20px;
  z-index: 1;
  opacity: 0.3;
}

.bonus-card-viking .bonus-frame {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card-viking .bonus-label {
  color: #ffb74d;
  /* Amber/Meade Color */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.bonus-card-viking .bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 4px 0 #3e2723;
  /* Dark shadow for depth */
}

.bonus-card-viking .bonus-sub {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e0f2f1;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px black;
}

/* ===================================
   Bonus Card Viper (ViperWin Style)
   =================================== */
.bonus-card-viper {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  /* Dark Green */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(27, 67, 50, 0.4);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #40916c;
}

/* Snake Skin Pattern Decoration */
.bonus-card-viper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(#52b788 15%, transparent 16%),
    radial-gradient(#52b788 15%, transparent 16%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.1;
  z-index: 1;
}

.bonus-card-viper .bonus-frame {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(82, 183, 136, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.bonus-card-viper .bonus-label {
  color: #d8f3dc;
  /* Very Light Mint */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-card-viper .bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bonus-card-viper .bonus-sub {
  font-size: 1.25rem;
  font-weight: 700;
  color: #95d5b2;
  /* Light Green */
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
}

/* ===================================
   Bonus Card Winolot (Nature/Jungle Style)
   =================================== */
.bonus-card-winolot {
  background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
  /* Forest Green to Light Green */
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.4);
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Leaf Pattern Decoration */
.bonus-card-winolot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 235, 59, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 20%);
  background-size: 100% 100%;
  z-index: 1;
}

.bonus-card-winolot .bonus-frame {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 235, 59, 0.5);
  /* Yellow border */
  backdrop-filter: blur(2px);
}

.bonus-card-winolot .bonus-label {
  color: #fff176;
  /* Light Yellow */
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-heading);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.bonus-card-winolot .bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
}

.bonus-card-winolot .bonus-sub {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fdd835;
  /* Bright Yellow */
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* ===================================
   Utility Classes
   =================================== */

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-muted {
  color: var(--color-text-light);
}

.mb-0 {
  margin-bottom: 0;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* ===================================
   Tablet Breakpoint (768px+)
   =================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    max-height: none;
    background: transparent;
  }

  .main-nav ul {
    display: flex;
    gap: var(--space-sm);
    padding: 0;
  }

  .main-nav li {
    margin: 0;
  }

  .hero {
    padding: var(--space-xxl) 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .casino-table {
    font-size: 1rem;
  }

  /* Hide mobile sticky CTA on tablet+ */
  .sticky-cta {
    display: none;
  }
}

/* ===================================
   Desktop Breakpoint (1024px+)
   =================================== */

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================================
   Print Styles
   =================================== */

@media print {

  .site-header,
  .sticky-cta,
  .site-footer {
    display: none;
  }
}

/* ===================================
   Responsive Utilities
   =================================== */

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===================================
   Mobile Table Optimization
   =================================== */
@media (max-width: 768px) {

  /* Hide less important columns on mobile */
  .casino-table th:nth-child(4),
  .casino-table td:nth-child(4),
  /* Rating */
  .casino-table th:nth-child(5),
  .casino-table td:nth-child(5) {
    /* Features */
    display: none;
  }

  /* Adjust padding for mobile */
  .casino-table th,
  .casino-table td {
    padding: 0.5rem 0.25rem;
  }

  /* Stack Casino Logo and Name */
  .casino-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .casino-logo {
    width: 50px;
    height: 33px;
    margin-bottom: 0.1rem;
  }

  .casino-name {
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: normal;
    /* Allow wrapping */
  }

  /* Optimize Bonus Column */
  .casino-table td:nth-child(3) {
    font-size: 0.8rem;
    line-height: 1.3;
    min-width: 100px;
    /* Ensure some width */
  }

  /* Optimize Button */
  .casino-table .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-width: auto;
    /* Remove large min-width */
    width: auto;
  }

  /* Adjust Header */
  .casino-table-header h2 {
    font-size: 1.2rem;
  }
}