 /* New Color Palette */
    :root {
      --primary: #1a237e;           /* Dunkles Blau */
      --secondary: #3949ab;         /* Helleres Blau */
      --accent: #fbc02d;            /* Goldgelb */
      --light-accent: #ffeb3b;
      --background: #e8eaf6;        /* Leicht graublau */
      --card-bg: #ffffff;
      --header-gradient: linear-gradient(90deg, var(--primary), var(--secondary));
      --card-gradient: linear-gradient(135deg, var(--secondary), var(--accent));
    }
    
    /* Background Decorative Elements */
    .background-decor {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at top left, rgba(251, 192, 45, 0.15), transparent 70%), 
                  radial-gradient(circle at bottom right, rgba(57, 73, 171, 0.15), transparent 70%);
      z-index: -1;
      pointer-events: none;
    }
    
    /* Global Reset & Fonts */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--background);
      color: var(--primary);
      line-height: 1.6;
      padding-bottom: 40px;
    }
    
    /* Header */
    header {
      background: var(--header-gradient);
      padding: 40px 20px;
      text-align: center;
      color: #fff;
      box-shadow: 0 4px 6px rgba(0,0,0,0.15);
      position: relative;
      z-index: 2;
    }
    
    header h1 {
      font-size: 3em;
      margin-bottom: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    
    /* Navigation Menu Bar */
    .menu-bar {
      background-color: var(--secondary);
    }
    .menu-bar ul {
      list-style: none;
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 10px 0;
    }
    .menu-bar ul li {
      margin: 0 15px;
    }
    .menu-bar ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    .menu-bar ul li a:hover {
      color: var(--accent);
    }
    
    /* Casino Cards Block */
    #casino-cards {
      padding: 40px 20px;
      background-color: var(--card-bg);
      margin: 40px auto;
      max-width: 1200px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
      overflow: hidden;
    }
    #casino-cards h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.4em;
      color: var(--primary);
      position: relative;
    }
    #casino-cards h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent);
      margin: 10px auto;
      border-radius: 2px;
    }
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .card {
      background-color: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      position: relative;
    }

    .card-header {
      background: var(--card-gradient);
      padding: 20px;
      text-align: center;
      border-bottom: 2px solid var(--secondary);
    }
    .card-header img {
      max-height: 80px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
      transition: transform 0.4s ease;
    }

    .card-content {
      padding: 20px;
    }
    .card-content h3 {
      margin-bottom: 15px;
      color: var(--primary);
      font-size: 1.5em;
    }
    .card-content ul {
      list-style: none;
      margin-bottom: 15px;
      font-size: 0.95em;
    }
    .card-content ul li {
      margin-bottom: 8px;
      position: relative;
      padding-left: 24px;
    }
    .card-content ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-size: 1em;
    }
    /* Review Stars */
    .review-stars {
      color: var(--accent);
      font-size: 1.2em;
      margin-top: 10px;
      transition: transform 0.3s ease;
    }
    .card-button {
      display: inline-block;
      background: var(--secondary);
      color: #fff;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .card-button:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    /* Main Content Container */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 12px 12px 0 0;
}

/* Headings Hierarchy */
main h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 30px 0;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

main h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

main h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #2d3748;
  margin: 40px 0 25px 0;
  line-height: 1.3;
  position: relative;
  padding-left: 20px;
}

main h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 3px;
}

main h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #4a5568;
  margin: 30px 0 20px 0;
  line-height: 1.4;
  position: relative;
  padding-left: 15px;
}

main h3::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #667eea;
  font-size: 0.8em;
}

main h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #718096;
  margin: 25px 0 15px 0;
  line-height: 1.4;
}

main h5 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #a0aec0;
  margin: 20px 0 12px 0;
  line-height: 1.4;
}

main h6 {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 600;
  color: #cbd5e0;
  margin: 15px 0 10px 0;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Paragraphs and Text */
main p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 20px;
  text-align: justify;
}

main p:last-child {
  margin-bottom: 0;
}

/* Enhanced Lists */
main ul {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

main ul li {
  position: relative;
  padding: 12px 0 12px 35px;
  margin-bottom: 8px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #4a5568;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

main ul li::before {
  content: '✓';
  position: absolute;
  left: 8px;
  top: 12px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

main ul li:hover {
  background-color: #f7fafc;
  border-left-color: #667eea;
  padding-left: 40px;
}

/* Ordered Lists */
main ol {
  margin: 25px 0;
  padding-left: 35px;
  counter-reset: custom-counter;
}

main ol li {
  position: relative;
  padding: 12px 0 12px 15px;
  margin-bottom: 12px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #4a5568;
  counter-increment: custom-counter;
  list-style: none;
}

main ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: -35px;
  top: 12px;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

/* Nested Lists */
main ul ul,
main ol ol,
main ul ol,
main ol ul {
  margin: 15px 0;
  padding-left: 25px;
}

main ul ul li::before,
main ol ul li::before {
  content: '→';
  background: linear-gradient(135deg, #a0aec0, #cbd5e0);
  font-size: 10px;
}


/* Strong emphasis in content */
main strong,
main b {
  font-weight: 700;
  color: #2d3748;
}

main em,
main i {
  font-style: italic;
  color: #667eea;
}

/* Links within main content */
main a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

main a:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  main {
    margin: 15px 10px 30px 10px;
    padding: 25px 15px;
    border-radius: 8px;
  }
  
  main h1 {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  
  main h1::after {
    width: 60px;
  }
  
  main h2 {
    margin: 30px 0 20px 0;
    padding-left: 15px;
  }
  
  main h3 {
    margin: 25px 0 15px 0;
    padding-left: 12px;
  }
  
  main ul li {
    padding: 10px 0 10px 30px;
  }
  
  main ul li::before {
    left: 5px;
    top: 10px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  
  main ol {
    padding-left: 30px;
  }
  
  main ol li::before {
    left: -30px;
    top: 10px;
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
  

}

@media screen and (max-width: 480px) {
  main {
    margin: 10px 5px 20px 5px;
    padding: 20px 12px;
  }
  
  main p {
    text-align: left;
  }
  
 
}

/* Print Styles */
@media print {
  main {
    box-shadow: none;
    margin: 0;
    padding: 20px;
    background: white;
  }
  
  main::before {
    display: none;
  }
  
  main h1,
  main h2,
  main h3 {
    page-break-after: avoid;
  }
  
 
 
}
    
    /* Footer */
    footer {
      background-color: var(--primary);
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      font-size: 0.9em;
    }
    
    /* Responsive */
    @media (max-width: 600px) {
      header h1 {
        font-size: 2em;
      }
      .content-section h2 {
        font-size: 1.6em;
      }
      .indicator span {
        width: 150px;
      }
      .menu-bar ul {
        flex-direction: column;
      }
      .menu-bar ul li {
        margin: 8px 0;
      }
    }
    
    
    
    
    
    
    /*───────────────────────────────────
  1) Wrapper for horizontal scrolling
───────────────────────────────────*/
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/*───────────────────────────────────
  2) Base table styling
───────────────────────────────────*/
table {
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

thead {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

th,
td {
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #e5e7eb;
}

th:first-child,
td:first-child {
  min-width: 140px;
  padding-left: 1.25rem;
}

th:last-child,
td:last-child {
  padding-right: 1.25rem;
}

tbody tr:nth-child(even) {
  background: #f9fafb;
}

tbody tr:hover {
  background: #f1f5f9;
}

/*───────────────────────────────────
  3) Responsive “stacked” cards
───────────────────────────────────*/
@media (max-width: 640px) {
  thead {
    display: none;
  }
  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }
  tr {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
  }
  td {
    position: relative;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    white-space: normal;
  }
  td:last-child {
    border-bottom: none;
  }
  td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.25rem;
  }
}
