/* Reset Standard-Stile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Globale Stile */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: white;
  background-color: #121212;
}

h2 {
  font-size: 22px;
  text-align: center;
  background: linear-gradient(to right, #ffcc00, #ff8800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.7);
  transition: 0.3s;
}

h2:hover {
  text-shadow: 0px 0px 20px rgba(255, 140, 0, 1);
}

a {
  text-decoration: none;
  color: #ffd700;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 8px 0;
  color: #bbb;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}

ul li::before {
  content: "⚡";
  margin-right: 10px;
  color: #ffcc00;
  font-size: 18px;
  transition: 0.3s ease-in-out;
}

ul li:hover {
  color: #fff;
  transform: translateX(5px);
}

ul li::before {
  content: "⚡";
  margin-right: 12px;
  color: #ffcc00;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 200, 50, 0.7);
  transition: 0.3s ease-in-out;
}

@keyframes glow {
  0% { transform: rotate(0deg); opacity: 0.5; }
  50% { transform: rotate(180deg); opacity: 0.7; }
  100% { transform: rotate(360deg); opacity: 0.5; }
}

p{
  margin-top: 10px;
  text-align: justify;
    color: #ddd;
    transition: 0.3s ease-in-out;
}

/* Header */
header {
  background-color: #000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
}

#header {
  background-color: #1e1e1e;
  padding: 15px 20px;
  border-bottom: 2px solid #a57c00;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-wrap {
  width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  justify-content: space-between;
  align-items: center;
}
#header .header-wrap .logo-wrap {
  width: 160px;
  transition: all 0.3s ease-out;
}
#header .header-wrap .logo-wrap .logo {
  width: 100%;
}
#header .header-wrap nav {
  justify-self: end;
}
#header .header-wrap nav .nav-link {
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  margin: 1rem;
  transition: all 0.6s ease;
}
#header .header-wrap nav .nav-link:hover {
  color: #a57c00;
}

.header-min #header {
  padding: 16px 0;
  transition: all 0.3s ease-out;
}
.header-min #header .logo-wrap {
  width: 120px;
  transition: all 0.3s ease-out;
}

@media (max-width: 1300px) {
  #header .header-wrap {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  #header {
    padding: 20px 0;
  }
  #header .header-wrap .logo-wrap {
    width: 150px;
    z-index: 100;
  }
  #header .header-wrap nav {
    display: flex;
    flex-direction: column;
    justify-self: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0vh;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.36s ease-out;
  }
  #header .header-wrap nav .nav-link {
    display: block;
    font-size: 30px;
    justify-self: center;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
  }
  #header .header-wrap nav .nav-link:hover {
    color: #00e474;
  }
  #header .header-wrap #burger {
    cursor: pointer;
    justify-self: end;
    align-self: center;
  }
  #header .header-wrap #burger .slices {
    position: relative;
    width: 4rem;
    height: 3rem;
  }
  #header .header-wrap #burger .slices .slice {
    position: absolute;
    width: 100%;
    height: 0.6rem;
    background-color: #444444;
    border-radius: 5px;
    transition: all 0.6s ease;
  }
  #header .header-wrap #burger .slices .slice:first-child {
    top: 0;
  }
  #header .header-wrap #burger .slices .slice:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  #header .header-wrap #burger .slices .slice:last-child {
    bottom: 0;
  }
  #header .header-wrap #burger.burger-close-btn .slice:first-child {
    width: 98%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform-origin: 7% 50%;
  }
  #header .header-wrap #burger.burger-close-btn .slice:nth-child(2) {
    width: 0%;
  }
  #header .header-wrap #burger.burger-close-btn .slice:last-child {
    width: 98%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: 7% 50%;
  }
  #header .header-wrap #burger {
    z-index: 100;
  }
  #header .header-wrap #burger .slices {
    width: 3.4rem;
    height: 2.4rem;
  }
  #header .header-wrap #burger .slices .slice {
    height: 0.4rem;
    border-radius: 2px;
  }
  #header .header-wrap #burger.burger-close-btn .slice:first-child {
    width: 98%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform-origin: 7% 50%;
  }
  #header .header-wrap #burger.burger-close-btn .slice:nth-child(2) {
    width: 0%;
  }
  #header .header-wrap #burger.burger-close-btn .slice:last-child {
    width: 98%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: 7% 50%;
  }
  #header.header-show-nav nav {
    display: flex;
    flex-direction: column;
    justify-self: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    color: white;
    background-color: #121212;
    z-index: 50;
  }
}

.golden-btn {
  background: linear-gradient(to bottom, #ffcc00, #b8860b);
  color: black;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: inset 0 2px 4px rgba(255, 215, 0, 0.6), 0 4px 8px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}
.golden-btn:hover {
  background: linear-gradient(to bottom, #ffd700, #a87900);
  box-shadow: inset 0 2px 6px rgba(255, 215, 0, 0.8), 0 6px 10px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.segment {
  width: 100%;
  display: grid;
  margin: 50px 0;
}

.segment1 {
  width: 100%;
  display: grid;
  margin-top: 20px;
}

.text-box {
  background: #1a1a1a;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 200, 50, 0.2);
  transition: 0.3s;
}

.bonus-box {
  border: 1px solid #ffc800;
  padding: 15px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
}

.text-box:hover {
  box-shadow: 0 0 20px rgba(255, 200, 50, 0.5);
}

.casino-widget {
  position: fixed;
  bottom: -200px; /* По умолчанию скрыт */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 110px;
  max-width: 1100px;
  background: #111;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 200, 50, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.7);
  transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
  z-index: 1000;
}

/* Логотип */
.casino-logo img {
  width: 148px;
}

/* Контейнер для бонусов и звёзд */
.casino-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.casino-name {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 0 0 5px rgba(255, 200, 50, 0.8);
  margin-bottom: 5px;
}

.casino-bonus {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 5px;
}

.responsible-list {
  padding-left: 20px;
}

.responsible-list li {
  margin-bottom: 8px;
}

.responsible-links a {
  color: #ffc800;
  font-weight: bold;
  text-decoration: none;
}

.fazit-list {
  padding-left: 20px;
}

.fazit-list li {
  margin-bottom: 8px;
}

.dropdown-container {
  width: 1200px;
  max-width: 95%;
  margin: 20px auto;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  border: 2px solid rgba(255, 200, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 200, 0, 0.8);
  font-family: Arial, sans-serif;
  position: relative;
}

.dropdown-header {
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #ffc800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: center;
}

.dropdown-header span {
  flex-grow: 1;
  text-align: center;
}

.dropdown-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.dropdown-content {
  display: none;
  padding: 15px;
  border-top: 2px solid rgba(255, 200, 0, 0.5);
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #ffc800;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
  border-radius: 5px;
  outline: none; /* Убирает выделение */
}

.dropdown-content a:hover {
  background: rgba(255, 200, 0, 0.2);
}

.dropdown-content a:focus {
  outline: none; /* Убирает обводку при клике */
}

.open .dropdown-content {
  display: block;
}

.open .dropdown-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .dropdown-container {
      width: 100%;
  }

  .dropdown-header {
      font-size: 18px;
      padding: 12px;
  }

  .dropdown-content a {
      font-size: 16px;
  }
}

/* Звёзды */
.stars {
  font-size: 18px;
  color: #ffcc00;
}

/* Половинка звезды */
.half-star {
  color: #ccc;
}

/* Кнопка регистрации */
.register-btn {
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  color: #111;
  padding: 14px 30px;
  border: none;
  border-radius: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  font-size: 16px;
}

.register-btn:hover {
  background: linear-gradient(90deg, #ff9900, #ff6600);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .casino-widget {
        height: 96px; /* Ещё меньше высота */
        max-width: 86%;
        padding: 8px 15px;
    }

    .casino-logo img {
        width: 78%;
        height: auto;
    }

    .casino-name {
        display: none; /* Скрываем название казино */
    }

    .casino-bonus {
        font-size: 12px; /* Чуть меньше бонус */
    }

    .stars {
        font-size: 14px; /* Уменьшаем звёзды */
    }

    .register-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

.bonus-box {
  background: #1a1a1a;
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 200, 50, 0.2);
}

.bonus-box strong {
  color: #ffcc00;
}

.bonus-list {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.bonus-list li::before {
  content: "🎰";
  margin-right: 10px;
  color: #ffcc00;
}

.tip {
  font-style: italic;
  color: #bbb;
  border-left: 3px solid #ffcc00;
  padding-left: 10px;
  margin-top: 15px;
}

.btn {
  display: block;
  width: 200px;
  text-align: center;
  background: #ffcc00;
  color: #111;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 20px auto 0;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ffaa00;
  box-shadow: 0 0 15px rgba(255, 200, 50, 0.5);
}

.list {
  list-style: none;
  padding: 0;
}

.list span {
  font-weight: bold;
    color: #ffcc00;
    display: inline-block;
    width: 140px;
    text-align: left;
    flex-shrink: 0;
}

.list li {
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.list li::before {
  content: "⚠️";
  margin-right: 10px;
  color: #ffcc00;
}


.info-box strong {
  color: #ffcc00;
}

.highlight {
  color: #ffcc00;
  font-weight: bold;
}

/* Уникальный стиль списка функций */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.feature-list li::before {
  content: "📱";
  margin-right: 10px;
  color: #ffcc00;
}

/* Уникальный стиль списка советов */
.tip-list {
  list-style: none;
  padding: 0;
  counter-reset: tip-counter;
}

.tip-list li {
  padding: 12px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  counter-increment: tip-counter;
}

.tip-list li span {
  font-weight: bold;
  color: #ffcc00;
  display: inline-block;
  width: 140px; /* Увеличил ширину, чтобы текст не прижимался */
  text-align: left;
  flex-shrink: 0;
}

.tip-list li span::before {
  margin-right: 5px;
}

.tip-text {
  flex-grow: 1;
}

.experience-block {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 200, 50, 0.3);
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  border: 2px solid rgba(255, 215, 0, 0.7);
  position: relative;
}

.experience-block::before {
  content: "🎰";
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 24px;
  color: #ffcc00;
}

.container {
  max-width: 1240px;
  margin: 50px auto;
  padding: 20px;
  background: #1e1e1e;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.review-box {
  background: #111;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 200, 50, 0.5), 
                0 0 30px rgba(255, 140, 0, 0.3), 
                inset 0 0 20px rgba(255, 215, 0, 0.2);
    max-width: 1240px;
    margin: auto;
    line-height: 1.6;
    transition: 0.3s ease-in-out;
    border: 2px solid rgba(255, 215, 0, 0.8);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.review-box1 {
  background: #111;
    padding: 25px;
    content: "🎰";
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 200, 50, 0.5), 
                0 0 30px rgba(255, 140, 0, 0.3), 
                inset 0 0 20px rgba(255, 215, 0, 0.2);
    max-width: 1240px;
    margin: auto;
    line-height: 1.6;
    transition: 0.3s ease-in-out;
    border: 2px solid rgba(255, 215, 0, 0.8);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.final-review {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 200, 50, 0.3);
  max-width: 1240px;
  margin: auto;
  line-height: 1.8;
  border: 2px solid rgba(255, 215, 0, 0.7);
  position: relative;
}

.final-review h2 {
  font-size: 24px;
  text-align: center;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 200, 50, 0.7);
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-review h2::before {
  content: "🎖";
  margin-right: 10px;
  font-size: 24px;
  color: #ffcc00;
}

.pros, .cons {
  list-style: none;
  padding: 0;
}

.pros li {
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.pros li::before {
  content: "✅";
  margin-right: 10px;
  color: #4CAF50;
}

.cons {
  margin-top: 15px;
}

.cons li {
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.cons li::before {
  content: "❌";
  margin-right: 10px;
  color: #FF3333;
}

.highlight {
  color: #ffcc00;
  font-weight: bold;
}

.final-box {
  margin-top: 15px;
  padding: 15px;
  background: #1a1a1a;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 200, 50, 0.2);
}

.final-box strong {
  font-size: 18px;
  color: #ffcc00;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.bonus-item {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.bonus-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #0073e6;
}

.game-box {
  background: #1a1a1a;
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 200, 50, 0.2);
}

.highlight {
  color: #ffcc00;
  font-weight: bold;
}

.personal-experience {
  font-style: italic;
  color: #bbb;
  border-left: 3px solid #ffcc00;
  padding-left: 10px;
  margin-top: 15px;
}

.game-list {
  list-style: none;
  padding: 0;
}

.game-list li {
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.game-list li::before {
  content: "🎲";
  margin-right: 10px;
  color: #ffcc00;
}

.highlight {
  color: #ffcc00;
  font-weight: bold;
}

.info-box {
  background: #1a1a1a;
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 200, 50, 0.2);
}

.info-box strong {
  color: #ffcc00;
}

.kyc-list {
  list-style: none;
  padding: 0;
}

.kyc-list li {
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.kyc-list li::before {
  content: "🔒";
  margin-right: 10px;
  color: #ffcc00;
}

.payment-card {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}

.payment-card h3 {
  display: flex;
  align-items: center;
}

.payment-card p {
  margin: 8px 0;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
  color: white;
  padding: 10px;
  border-radius: 8px;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  cursor: pointer;
  width: 40px;
  height: 30px;
  margin-top: 10px;
  border-radius: 5px;
  transition: transform 0.2s ease-in-out;
}

.dropdown-btn:hover {
  transform: scale(1.1);
}

.dropdown-list {
  display: none; /* Скрыто по умолчанию */
  flex-direction: column;
  position: absolute;
  background-color: #333;
  max-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 1px solid #444;
  border-radius: 5px;
  right: 0;
  padding: 5px 0;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.dropdown-item {
  padding: 5px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease-in-out;
  flex-shrink: 0;
  width: auto;
}

.dropdown-item:hover {
  background-color: #555;
}

.dropdown-item img {
  width: 22px;
  height: 16px;
}

/* Медиазапросы для мобильных устройств */
@media (max-width: 768px) {
  .dropdown-btn {
    width: 35px;
    height: 25px;
  }

  .dropdown-item img {
    width: 35px;
    height: 25px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

@media (max-width: 768px) {
  .container {
      padding: 20px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

th {
  background: rgba(255, 200, 50, 0.2);
  color: #ffcc00;
  font-weight: bold;
}
td {
  background: #222;
}

.warning {
  color: #ff5757;
  font-weight: bold;
}

.table-container {
  overflow-x: auto;
}

th, td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
th {
  background-color: #b8860b;
  color: #1e1e1e;
  font-weight: bold;
}
tr:nth-child(even) {
  background-color: #1e1e1e;
}

.image-gallery {
  display: grid;
  max-width: 1100px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 10px;
}
.image-gallery a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.image-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1300px; /* Максимальная ширина видео */
  margin: 0 auto;
  border-radius: 15px; /* Скруглённые углы */
  overflow: hidden; /* Обрезка краёв */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Тень */
}

.video-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

@media (max-width:640px) {
  .video-container iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Убираем рамки */
  }
}

.highlight {
  color: #b8860b;
}

/* Hero-Bereich */
.hero {
  background: linear-gradient(to bottom, #1a1a1a, #000000);
  background-image: url('../images/7e9b0934bbbba5c4cade2ed4e9fe21e6.webp'); /* Фон с золотыми линиями */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 1100px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #ffdf4d;
}

/* Abschnitte */
section {
  padding: 4rem 0;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

table td, table th {
  border: 1px solid #ffd700;
  padding: 1rem;
}

/* Spiele-Bereich */
.games ul {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.games li {
  max-width: 300px;
}

.games h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

/* VIP-Bereich */
.vip ul {
  display: inline-block;
  text-align: left;
  margin-top: 2rem;
}

.vip li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #000;
  padding: 2rem 0;
  text-align: center;
}

.footer-links a {
  margin: 0 1rem;
}

.social-media-links {
  margin: 2rem 0;
}

.social-media-links a {
  margin: 0 0.5rem;
}

.footer-bottom {
  font-size: 0.9rem;
}
/* ... (vorheriges CSS bleibt unverändert) ... */

/* Experten-Meinung */
.expert-opinion {
  background-color: #222;
  padding: 4rem 0;
}

.expert-opinion p {
  max-width: 800px;
  margin: 1rem auto;
  text-align: justify;
}