:root {
  --bg-main: #090a0c;
  --bg-secondary: #111316;
  --bg-card: #17191d;
  --bg-card-hover: #1d2025;
  --text-main: #f5f5f5;
  --text-muted: #a7a9af;
  --accent: #d71920;
  --accent-dark: #8f1015;
  --accent-glow: rgba(215, 25, 32, 0.35);
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.18);
  --font-heading: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: Inter, Arial, Helvetica, sans-serif;
  --container-width: 1180px;
  --text-container-width: 760px;
  --header-height: 76px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(215, 25, 32, 0.08), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.015) 25%, var(--bg-main) 25%);
  background-size: 100% 100%, 40px 40px, 40px 40px, 40px 40px, 40px 40px;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--accent);
  margin-top: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

p strong {
  color: var(--text-main);
}

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

a:hover, a:focus-visible {
  color: var(--accent);
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

li {
  margin-bottom: 0.5rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.text-container {
  max-width: var(--text-container-width);
  margin: 0 auto;
}

section {
  padding: 4.5rem 0;
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: var(--container-width);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.header-banner-strip {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), #ff4d52, var(--accent));
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(9, 10, 12, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-shadow: 0 0 14px var(--accent-glow);
  flex-shrink: 0;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-grow: 1;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.main-nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0.5rem;
  position: relative;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  white-space: nowrap;
}

.main-nav a:hover, .main-nav a:focus-visible {
  color: #ffffff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover::after, .main-nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(215, 25, 32, 0.4);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: #f01e26;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.6);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  min-height: 38px;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(ellipse at 80% 20%, rgba(215, 25, 32, 0.12), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.8rem;
  position: relative;
}

.tag::before {
  content: "+";
  color: var(--accent);
  margin-right: 0.35rem;
  font-weight: bold;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 10, 12, 0.85));
  z-index: 1;
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(17, 19, 22, 0.9);
  padding: 0.4rem 1rem;
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}

.platforms-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.platform-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition);
}

.platform-link:hover, .platform-link:focus-visible {
  color: #ffffff;
  background: var(--bg-card);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.platform-link:hover svg {
  fill: var(--accent);
}

.biography-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.steckbrief-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  position: sticky;
  top: 95px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.steckbrief-card h3 {
  margin-top: 0;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

th, td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-secondary);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  text-transform: uppercase;
}

td:first-child {
  font-weight: 600;
  color: var(--text-main);
  width: 40%;
}

td:last-child {
  color: var(--text-muted);
}

.badge-unconfirmed {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-top: 0.2rem;
}

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

.timeline-step {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline-step::before {
  content: "//";
  color: var(--accent);
}

.career-grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.career-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.career-image-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.streaming-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.stat-value {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.stat-timestamp {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
}

.casino-stream-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stream-frame {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.stream-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.stream-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bonus-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(215, 25, 32, 0.15) 100%);
  border: 2px solid var(--accent);
  padding: 2.5rem;
  margin: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.bonus-info h3 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.code-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-main);
  border: 1px dashed var(--accent);
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
}

.code-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.08em;
}

.toast-message {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  font-weight: bold;
  font-family: var(--font-heading);
  font-style: italic;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

.offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.ad-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.05em;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.casino-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.casino-logo-area {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.25rem;
}

.casino-logo-area img {
  max-height: 52px;
  max-width: 80%;
  object-fit: contain;
}

.casino-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.casino-notice {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.casino-card-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-restriction {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.biography-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.info-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
  color: var(--text-main);
}

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

.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.social-card:hover, .social-card:focus-within {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-card-header svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.social-card-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

details[open] {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s ease;
}

details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

details div {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.rg-banner {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rg-tag {
  background: rgba(215, 25, 32, 0.15);
  border: 1px solid var(--accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
}

.site-footer {
  background: #050607;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.footer-links h4, .footer-helpline h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-style: italic;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

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

.footer-links a:hover {
  color: var(--accent);
}

.footer-helpline-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  border-radius: 4px;
}

.footer-helpline-box strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-helpline-box a {
  color: var(--accent);
  font-weight: bold;
}

.footer-helpline-box a:hover {
  text-decoration: underline;
}

.footer-disclaimers {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent);
  padding: 1.5rem;
  z-index: 9990;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1 1 500px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1150px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .biography-grid, .casino-stream-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steckbrief-card {
    position: static;
  }
}

@media (max-width: 960px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    height: auto;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    height: auto;
  }

  .main-nav li {
    height: auto;
    width: 100%;
  }

  .main-nav a {
    height: auto;
    padding: 0.5rem 0;
    width: 100%;
    justify-content: flex-start;
  }

  .header-cta {
    display: none;
  }

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

  .career-grid-content {
    grid-template-columns: 1fr;
  }

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

  .bonus-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
