:root { color-scheme: dark; }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, Roboto, Arial, sans-serif;
  background-color: #0C1026;
  color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #F6C947;
  color: #0C1026;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 48px;
  min-width: 48px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(246, 201, 71, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.section-title::before {
  content: none;
}

header {
  background: rgba(12, 16, 38, 0.95);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(246, 201, 71, 0.1);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
}
@media (min-width: 768px) {
  .logo img {
    height: 50px;
  }
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
}

.burger-icon {
  display: block;
  line-height: 1;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #F6C947;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(12, 16, 38, 0.98);
  border-top: 1px solid rgba(246, 201, 71, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  max-height: 400px;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(246, 201, 71, 0.1);
  color: #F6C947;
}

@media (min-width: 768px) {
  .burger-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .burger-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .header-content {
    position: relative;
  }
}

.header-buttons,
nav.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-login {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #2a2f4a;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login:hover {
  background: #3a3f5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-login:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .header-buttons {
    gap: 0.5rem;
  }

  .btn-login,
  .header-cta {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
}

#hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0C1026 0%, #1a1f3a 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(246, 201, 71, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero-content {
  flex: 1;
  text-align: center;
  max-width: 500px;
  margin-bottom: 1rem;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 927px;
}

.hero-image img {
  width: 100%;
  max-width: 927px;
  height: auto;
  aspect-ratio: 927/690;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(246, 201, 71, 0.3));
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(246, 201, 71, 0.1);
  border: 1px solid #F6C947;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #F6C947;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.bonus-box {
  background: linear-gradient(135deg, #1a1f3a 0%, #252b4a 100%);
  border: 2px solid #F6C947;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem auto 0;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(246, 201, 71, 0.2);
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #F6C947;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(246, 201, 71, 0.5);
}

.bonus-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

#games {
  padding: 4rem 0;
  background: #0C1026;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.game-card {
  background: #1a1f3a;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: block;
  width: 100%;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(246, 201, 71, 0.2);
}

.game-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #F6C947;
  color: #0C1026;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.game-image {
  width: 100%;
  aspect-ratio: 400/600;
  background: linear-gradient(135deg, #252b4a 0%, #1a1f3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.game-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 38, 0.8) 100%);
}

.sport-image {
  width: 100%;
  aspect-ratio: 360/152;
  background: linear-gradient(135deg, #252b4a 0%, #1a1f3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sport-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 38, 0.8) 100%);
}

.game-info {
  padding: 1rem;
}

.game-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.game-provider {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

#sports {
  padding: 4rem 0;
  background: #0C1026;
}
.sports-grid .sport-image {
  aspect-ratio: 360/152;
  overflow: hidden;
}
.sports-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#live-casino {
  padding: 4rem 0;
  background: #0C1026;
}

.facts-block {
  max-width: 900px;
  margin: 2rem auto 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.section-lead {
  max-width: 900px;
  margin: 0.75rem auto 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

#at-a-glance {
  padding: 2rem 0 1rem;
  background: #0C1026;
}

#getting-started {
  padding: 3rem 0 4rem;
  background: #0C1026;
}

@media (max-width: 767px) {
  #trust {
    padding-bottom: 2rem;
  }

  #getting-started {
    padding-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .chip-list--payments {
    margin: 1rem 0 1.5rem;
  }

  .chip-list--withdraw {
    margin: 0.25rem 0 0;
  }
}

.trust-content .facts-title {
  font-size: 1.125rem;
}

.facts-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.facts-table-wrapper {
  width: 100%;
  overflow-x: visible;
  border-radius: 12px;
  margin: 0.75rem 0 1.75rem;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.facts-table th,
.facts-table td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.facts-table th {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  background: rgba(246, 201, 71, 0.08);
  width: 38%;
}

.facts-table td {
  color: rgba(255, 255, 255, 0.86);
  width: 62%;
}

.facts-note {
  margin-top: 0.9rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.facts-subtitle {
  font-size: 1rem;
  font-weight: 800;
  margin: 1.5rem 0 0.75rem;
  text-align: left;
}

#paymentsText .facts-subtitle {
  margin: 1.25rem 0 0.75rem;
}

.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
}

.chip-list--payments {
  margin-top: calc(1rem * 1.3);
  margin-bottom: calc(2.75rem * 1.3);
  margin-left: 0;
  margin-right: 0;
}

.chip-list--withdraw {
  margin: 0.5rem 0 0.5rem;
  gap: 0.45rem 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.45;
  white-space: normal;
}

.live-casino-text {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  color: #fff;
  line-height: 1.7;
  font-size: 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  scroll-margin-top: 80px;
}

.live-casino-text p,
.live-casino-text .expandable-content {
  margin: 0;
  color: rgba(255,255,255,0.92);
  overflow: visible;
  max-height: none;
  transition: none;
  -webkit-mask-image: none;
  mask-image: none;
}

#paymentsText {
  text-align: left;
}

.live-casino-text.expanded p,
.live-casino-text.expanded .expandable-content {
  max-height: 1000px;
  -webkit-mask-image: none;
  mask-image: none;
}

.toggle-text {
  display: none !important;
}

.toggle-text::before,
.toggle-text::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 3px solid #F6C947;
  border-bottom: 3px solid #F6C947;
  transform: translateX(-50%) rotate(-45deg);
  transition: transform 0.3s ease;
}

.toggle-text::before {
  top: 0;
}

.toggle-text::after {
  top: 14px;
}

.live-casino-text.expanded .toggle-text::before,
.live-casino-text.expanded .toggle-text::after {
  transform: translateX(-50%) rotate(135deg);
}

.info-section {
  padding: 4rem 0;
  background: #0C1026;
}

.info-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  line-height: 1.8;
}

.info-card h1,
.info-card h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.info-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.info-card .info-meta {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.info-card ul,
.info-card ol,
.info-list {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.info-card ul li,
.info-card ol li,
.info-list li {
  margin-bottom: 0.5rem;
}

.login-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}

.login-quick-cta {
  display: block;
  width: 100%;
  max-width: 820px;
  text-decoration: none;
}

.login-quick-cta picture,
.login-quick-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.login-quick-cta:hover {
  opacity: 0.92;
}

.login-quick-cta:focus-visible {
  outline: 2px solid rgba(246, 201, 71, 0.9);
  outline-offset: 4px;
  border-radius: 12px;
}

.login-quick-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.login-quick-link:hover {
  color: #ffffff;
}

.bonus-list {
  list-style: decimal;
  margin-left: 1.5rem;
}

.bonus-list > li {
  margin-bottom: 1.25rem;
}

.bonus-list p {
  margin-bottom: 0.5rem;
}

.bonus-label {
  display: inline-block;
  font-weight: 700;
  color: #F6C947;
  margin-right: 0.4rem;
}

.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0b0f2a 0%, #14193b 100%);
}

.contact-wrapper {
  background: rgba(8, 12, 28, 0.9);
  border: 1px solid rgba(246, 201, 71, 0.15);
  border-radius: 32px;
  padding: 3rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-height: 180px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(246, 201, 71, 0.12);
  border: 1px solid rgba(246, 201, 71, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.contact-link {
  color: #F6C947;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #FFD966;
}

.contact-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.contact-note {
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.faq-section {
  padding: 4rem 0;
  background: #050816;
}

.faq-card {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(8, 12, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
}

.faq-card h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: left;
}

.faq-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.faq-indicator::before,
.faq-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #F6C947;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-indicator::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

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

@media (max-width: 480px) {
  .info-card {
    padding: 1.75rem;
  }

  .contact-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .live-casino-text {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 1rem 0;
  }
  .live-casino-text p {
    padding: 0;
  }
}

#promotions {
  padding: 4rem 0;
  background: #0C1026;
}

.promotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.promotion-card {
  display: flex;
  flex-direction: column;
  background: #1A1F3A;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promotion-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(246, 201, 71, 0.2);
}

.promotion-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #252b4a 0%, #1a1f3a 100%);
  flex-shrink: 0;
}

.promotion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.promotion-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #00FF66;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.promotion-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.promotion-features li {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.promotion-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #00FF66;
  border-radius: 50%;
}

.promotion-btn {
  display: flex;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #F6C947;
  color: #0C1026;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.promotion-btn:hover {
  background: #FFD966;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(246, 201, 71, 0.4);
}

.bonuses-section {
  padding: 4rem 0 5rem;
  background: radial-gradient(circle at top, rgba(47, 63, 135, 0.3), transparent 55%), #030613;
}

.bonuses-headline {
  max-width: 760px;
  margin-bottom: 2rem;
}

.bonuses-headline h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bonus-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.bonus-filter {
  border: 1px solid rgba(246, 201, 71, 0.25);
  background: transparent;
  color: #ffffff;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bonus-filter.active,
.bonus-filter:hover {
  background: #f6c947;
  color: #0C1026;
  border-color: #f6c947;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.bonus-card {
  position: relative;
  background: #090d21;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 201, 71, 0.35);
}

.bonus-card.gradient-cyan { background: linear-gradient(145deg, #072032, #0b1331 45%, #080915); }
.bonus-card.gradient-violet { background: linear-gradient(145deg, #1f0f35, #0f0d2e 45%, #090714); }
.bonus-card.gradient-magenta { background: linear-gradient(145deg, #390a35, #19081e 50%, #0d0812); }
.bonus-card.gradient-green { background: linear-gradient(145deg, #0d2f25, #08151d 45%, #05090f); }
.bonus-card.gradient-lime { background: linear-gradient(145deg, #103a1a, #0a1d12 45%, #050a06); }
.bonus-card.gradient-red { background: linear-gradient(145deg, #3c0c12, #1b080d 45%, #0b0506); }
.bonus-card.gradient-blue { background: linear-gradient(145deg, #0d1f3a, #081225 45%, #050810); }
.bonus-card.gradient-teal { background: linear-gradient(145deg, #054240, #062129 45%, #04090f); }
.bonus-card.gradient-orange { background: linear-gradient(145deg, #41230b, #1c0f08 45%, #0b0605); }

.bonus-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.bonus-card h3 {
  font-size: 1.35rem;
  margin: 0;
}

.bonus-desc {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  flex: 1;
}

.bonus-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.bonus-btn {
  flex: 1;
  min-height: 38px;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  text-align: center;
}

@media (min-width: 480px) {
  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .promotions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .promotion-content {
    padding: 2rem;
  }

  .promotion-title {
    font-size: 1.75rem;
  }

  .promotion-features li {
    font-size: 0.9375rem;
  }
}

@media (max-width: 360px) {
  .promotion-content {
    padding: 1.25rem;
  }

  .promotion-title {
    font-size: 1.25rem;
  }

  .promotion-features li {
    font-size: 0.8125rem;
  }
}

#trust {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0C1026 100%);
  border-top: 1px solid rgba(246, 201, 71, 0.1);
}

.trust-content {
  text-align: center;
}

.trust-copy {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
  margin: 2rem 0;
}

.payment-icon {
  width: 140px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, background-color 0.2s;
}

.payment-icon:hover {
  border-color: #F6C947;
  background: rgba(246, 201, 71, 0.08);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #F6C947;
  color: #0C1026;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-top: 1.5rem;
  border: 3px solid #0C1026;
  box-shadow: 0 4px 12px rgba(246, 201, 71, 0.3);
}

#filter-bar {
  padding: 1.5rem 0;
  background: #0C1026;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease-in-out;
  min-width: 120px;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
}

.category-card:hover {
  border-color: #f6c947;
  background: rgba(246, 201, 71, 0.05);
  transform: translateY(-2px);
}

.category-card img,
.category-card svg,
.category-card span.emoji {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.category-card span {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

/* Responsive compact layout */
@media (max-width: 480px) {
  .category-card {
    flex: 1 1 45%;
    padding: 0.4rem 0.6rem;
    min-width: auto;
  }
  .category-card span {
    font-size: 0.8rem;
  }
  .category-card img,
  .category-card svg,
  .category-card span.emoji {
    width: 18px;
    height: 18px;
  }
}

#promo-banner {
  height: 300px;
  background: url("/images/bg-games-banner.webp") no-repeat;
  background-size: cover;
  background-position: right center;
  position: relative;
  margin: 2rem 1rem;
  border-radius: 24px;
  overflow: hidden;
}

#promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.promo-banner-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner-content {
  text-align: center;
  color: #FFFFFF;
  padding: 0 1rem;
}

.promo-banner-content h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-banner-content .btn {
  width: 100%;
  margin-top: 1.25rem;
}

/* Mobile adjustments for better content visibility */
@media (max-width: 480px) {
  #promo-banner {
    margin: 1rem 0.5rem;
    padding: 0 0.5rem;
  }
  
  .promo-banner-content {
    padding: 0 0.5rem;
  }
  
  .promo-banner-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

}

footer {
  background: #0a0d1f;
  padding: 2rem 0;
  border-top: 1px solid rgba(246, 201, 71, 0.1);
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: #F6C947;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}


/* Small tablets (480px+) */
@media (min-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .bonus-amount {
    font-size: 3rem;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-wrapper {
    flex-direction: row-reverse;
    gap: 3rem;
    align-items: center;
  }

  .hero-content {
    text-align: left;
    max-width: none;
  }

  .hero-badge {
    margin-left: 0;
  }

  .bonus-box {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image {
    max-width: 927px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .bonus-box {
    padding: 3rem;
  }

  .bonus-amount {
    font-size: 3.5rem;
  }

  .games-grid {
    gap: 1.5rem;
  }

  .game-title {
    font-size: 1rem;
  }

  .payment-icon {
    width: 140px;
    height: 56px;
  }

  #promo-banner {
    height: 480px;
    background-size: cover;
    background-position: right center;
    margin: 2rem;
  }

  .promo-banner-wrapper {
    justify-content: flex-end;
  }

  .promo-banner-content {
    text-align: right;
    max-width: 520px;
  }

  .promo-banner-content .btn {
    margin-left: auto;
    width: auto;
    display: inline-block;
  }

}

@media (min-width: 1024px) {
  .payment-methods {
    flex-wrap: nowrap;
  }

  #promo-banner {
    height: 480px;
    background-size: cover;
    background-position: right center;
    margin: 2rem;
  }
  .promo-banner-wrapper {
    justify-content: flex-start !important;
    padding-left: 6vw !important;
    padding-right: 0 !important;
  }
  .promo-banner-content {
    text-align: left !important;
    max-width: 520px !important;
  }
  .promo-banner-content .btn {
    margin-left: 0 !important;
  }

}

@media (min-width: 1600px) {
  #promo-banner {
    background-position: calc(100% - 250px) center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}

/* Center "Alle anzeigen" buttons in games and sports sections */
#games .btn,
#sports .btn {
  display: inline-block;
  margin: 2rem auto 0;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
