/* =====================================================
   bestewettanbieter.de.com - Minimalistisches Theme
   ===================================================== */

/* CSS Variables */
:root {
  --primary: #0D5C63;
  --primary-dark: #094549;
  --secondary: #F4A261;
  --secondary-light: #F7BE8F;
  --accent: #E9C46A;
  --background: #FAFAFA;
  --surface: #FFFFFF;
  --text: #2D3436;
  --text-light: #636E72;
  --text-muted: #B2BEC3;
  --border: #DFE6E9;
  --success: #00B894;
  --warning: #FDCB6E;
  --error: #D63031;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.875rem; margin-bottom: 1.25rem; margin-top: 2.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; margin-top: 2rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--text);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Wettanbieter Card */
.provider-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.provider-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.provider-rank {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.provider-rank.gold { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.provider-rank.silver { background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%); }
.provider-rank.bronze { background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%); }

.provider-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.provider-logo {
  max-width: 160px;
  height: 40px;
  object-fit: contain;
}

.provider-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.provider-bonus {
  color: var(--success);
  font-weight: 600;
}

.provider-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.provider-rating .stars {
  color: var(--accent);
}

.provider-rating .score {
  font-weight: 600;
  margin-left: 0.5rem;
}

.provider-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--secondary-light);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Table Styles */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th, td {
  padding: 1rem 1.25rem;
  text-align: left;
}

th {
  background: var(--primary);
  color: white;
  font-weight: 600;
  white-space: nowrap;
}

tr:nth-child(even) {
  background: var(--background);
}

tr:hover {
  background: #F0F4F5;
}

/* FAQ Section */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Author Box */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.author-bio {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pros, .cons {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pros h4, .cons h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pros h4 { color: var(--success); }
.cons h4 { color: var(--error); }

.pros ul, .cons ul {
  list-style: none;
}

.pros li, .cons li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: bold;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
}

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

.breadcrumbs span {
  margin: 0 0.5rem;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Responsible Gaming Banner */
.responsible-gaming {
  background: var(--warning);
  color: var(--text);
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
}

.responsible-gaming a {
  color: var(--text);
  text-decoration: underline;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-top: 0;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-new { background: var(--success); color: white; }
.badge-hot { background: var(--error); color: white; }
.badge-top { background: var(--secondary); color: var(--text); }

/* Mobile Responsive */
@media (max-width: 768px) {
  html { font-size: 15px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 2rem; }

  .nav { display: none; }
  .mobile-menu-btn { display: block; }

  .provider-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .provider-rank {
    margin: 0 auto;
  }

  .provider-cta {
    align-items: center;
    width: 100%;
  }

  .provider-cta .btn {
    width: 100%;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .btn {
    width: 100%;
    justify-content: center;
  }

  th, td {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}

/* Print Styles */
@media print {
  .header, .footer, .btn, .mobile-menu-btn {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .card, .provider-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none; }
.visible { display: block; }

/* =====================================================
   NEW ELEMENTS - Dropdowns, Quick Nav, Content Sections
   ===================================================== */

/* Dropdown Navigation */
.nav-item {
  position: relative;
}

.nav-item > a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-item:hover > a::after,
.nav-item > a.active::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text);
  font-weight: 400;
  font-size: 0.9375rem;
}

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

/* Quick Navigation */
.quick-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.quick-nav span {
  font-weight: 600;
  color: var(--text-light);
}

.quick-nav a {
  padding: 0.375rem 0.75rem;
  background: var(--background);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.quick-nav a:hover {
  background: var(--primary);
  color: white;
}

/* Content Section */
.content-section {
  margin: 3rem 0;
}

.content-section h2:first-child {
  margin-top: 0;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.highlight-box h4 {
  color: white;
  margin-bottom: 1rem;
}

.highlight-box ul {
  list-style: none;
  margin: 0;
}

.highlight-box li {
  padding: 0.375rem 0;
}

.highlight-box a {
  color: var(--secondary);
}

.highlight-box a:hover {
  color: var(--secondary-light);
}

/* CTA Box */
.cta-box {
  background: var(--background);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-box h3 {
  margin-top: 0;
  color: var(--primary);
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Provider Card Extended */
.provider-card.featured {
  border: 2px solid var(--secondary);
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.05) 0%, rgba(244, 162, 97, 0.02) 100%);
}

.provider-details {
  flex: 1;
}

.provider-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.provider-highlights li {
  white-space: nowrap;
}

.provider-highlights a {
  color: var(--primary);
}

/* Payment Grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.payment-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.payment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.payment-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.payment-card h3 a {
  color: var(--text);
}

.payment-card h3 a:hover {
  color: var(--primary);
}

.payment-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.payment-card > a {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Sports Grid */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sport-card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
}

.sport-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--secondary);
}

.sport-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.sport-card h3 {
  margin-top: 0;
  color: var(--text);
  font-size: 1.25rem;
}

.sport-card p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Comparison Table Extended */
.comparison-table th {
  font-size: 0.875rem;
}

.comparison-table td {
  vertical-align: middle;
}

.highlight-row {
  background: rgba(244, 162, 97, 0.1) !important;
}

.highlight-row:hover {
  background: rgba(244, 162, 97, 0.15) !important;
}

/* Hero Links */
.hero a {
  color: var(--secondary);
}

.hero a:hover {
  color: var(--secondary-light);
}

/* FAQ Answer Links */
.faq-answer a {
  color: var(--primary);
  font-weight: 500;
}

.faq-answer a:hover {
  color: var(--secondary);
}

/* Mobile Responsive - New Elements */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: var(--background);
    border-radius: 0;
    margin-top: 0.5rem;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  .quick-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .quick-nav a {
    width: 100%;
    text-align: center;
  }

  .provider-info {
    display: block;
  }

  .provider-logo {
    margin-bottom: 0.75rem;
  }

  .provider-highlights {
    flex-direction: column;
    gap: 0.25rem;
  }

  .payment-grid,
  .sports-grid {
    grid-template-columns: 1fr;
  }
}

/* Lists in Content */
.content-section ul:not(.provider-highlights) {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}
