:root {
  --color-dark: #17111f;
  --color-dark-secondary: #21182b;
  --color-paper: #fff8fc;
  --color-paper-secondary: #f5ebf7;
  --color-pink: #e95965;
  --color-magenta: #cd548c;
  --color-purple: #964fdf;
  --color-violet: #6f3fd4;
  --color-gold: #f2b530;
  --color-white: #ffffff;
  --color-text: #241b29;
  --color-text-dark: #ffffff;
  --color-muted: #756477;
  --color-muted-dark: #bbaec0;
  --color-border: rgba(150, 79, 223, 0.22);
  --color-border-dark: rgba(233, 89, 101, 0.3);
  
  --gradient-cta: linear-gradient(135deg, #e95965 0%, #cd548c 45%, #964fdf 100%);
  --gradient-card-dark: linear-gradient(145deg, #21182b 0%, #17111f 100%);
  --gradient-card-light: linear-gradient(145deg, #ffffff 0%, #fff4fa 100%);
  --gradient-gold-badge: linear-gradient(135deg, rgba(242, 181, 48, 0.18) 0%, rgba(242, 181, 48, 0.05) 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(150, 79, 223, 0.08);
  --shadow-lg: 0 16px 40px rgba(111, 63, 212, 0.18);
  --shadow-glow: 0 0 25px rgba(233, 89, 101, 0.25);

  --container-max: 1240px;
  --text-max: 78ch;
}

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

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-dark);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--color-dark);
}

img, picture, svg, webp {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--color-pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(233, 89, 101, 0.4);
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 12px 30px rgba(233, 89, 101, 0.6), 0 0 25px rgba(150, 79, 223, 0.45);
  color: var(--color-white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.dark-section h2, .theme-dark h2 {
  color: var(--color-white);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  max-width: var(--text-max);
}

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

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

li {
  margin-bottom: 0.5rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(23, 17, 31, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 0.75rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--color-pink);
  object-fit: cover;
}

.brand-title {
  background: linear-gradient(135deg, #ffffff 30%, #f5ebf7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(0.12rem, 0.4vw, 0.35rem);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem clamp(0.3rem, 0.5vw, 0.65rem);
  color: var(--color-muted-dark);
  text-decoration: none;
  font-size: clamp(0.76rem, 0.8vw, 0.86rem);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-white);
  background-color: rgba(233, 89, 101, 0.15);
}

.nav-link.highlight-link {
  background: var(--gradient-cta);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(233, 89, 101, 0.35);
  padding: 0.4rem clamp(0.5rem, 0.75vw, 0.85rem);
}

.nav-link.highlight-link:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-dark-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
}

.mobile-nav-menu.is-active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.streamer-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(23, 17, 31, 0.82) 0%, rgba(23, 17, 31, 0.96) 100%),
              url('img/baner.png') center top / cover no-repeat;
  color: var(--color-white);
  padding: 4rem 0 4.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
  }
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.streamer-hero__eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-pink);
  background-color: rgba(233, 89, 101, 0.14);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(233, 89, 101, 0.3);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold);
  background: var(--gradient-gold-badge);
  border: 1px solid rgba(242, 181, 48, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-top: 1.25rem;
}

.hero-media-card {
  background: rgba(33, 24, 43, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-media-card img {
  width: 220px;
  height: auto;
  max-height: 220px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-pink);
  object-fit: cover;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.hero-media-card img:hover {
  transform: scale(1.03);
}

.hero-media-card h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.hero-media-card p {
  font-size: 0.9rem;
  color: var(--color-muted-dark);
  margin-bottom: 0;
}

.offers-section {
  background-color: var(--color-dark-secondary);
  color: var(--color-white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.offers-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.offers-header h2 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.offers-subtitle {
  font-size: 0.92rem;
  color: var(--color-muted-dark);
  line-height: 1.6;
  margin: 0 auto 1rem auto;
}

.werbung-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  background: var(--gradient-gold-badge);
  border: 1px solid rgba(242, 181, 48, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

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

@media (max-width: 1100px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.casino-card {
  background: var(--gradient-card-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 89, 101, 0.4);
}

.casino-card__logo-zone {
  background: linear-gradient(180deg, #1d1527 0%, #17111f 100%);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(150, 79, 223, 0.2);
}

.casino-card__logo-zone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.casino-card__logo-zone a:hover {
  transform: scale(1.05);
}

.casino-card__logo-zone img {
  max-height: 54px;
  max-width: 85%;
  object-fit: contain;
}

.casino-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.casino-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.casino-card__title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0;
}

.casino-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-pink);
  background-color: rgba(233, 89, 101, 0.15);
  border: 1px solid rgba(233, 89, 101, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

.casino-card__main-offer {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.35;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.casino-card__breakdown {
  font-size: 0.88rem;
  color: var(--color-paper-secondary);
  margin-bottom: 1rem;
}

.casino-card__breakdown p {
  margin-bottom: 0.35rem;
}

.bonus-details-accordion {
  margin-bottom: 1rem;
  border: 1px solid rgba(150, 79, 223, 0.25);
  border-radius: var(--radius-md);
  background-color: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.bonus-details-accordion summary {
  padding: 0.65rem 0.85rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-pink);
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.bonus-details-accordion summary::-webkit-details-marker {
  display: none;
}

.bonus-details-accordion summary::after {
  content: "＋";
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.bonus-details-accordion[open] summary::after {
  content: "－";
}

.bonus-details-content {
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  color: var(--color-muted-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.casino-card__preview-expanded {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 9;
}

.casino-card__preview-expanded a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.casino-card__preview-expanded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.casino-card__preview-expanded a:hover img {
  transform: scale(1.05);
}

.casino-card__features {
  margin-bottom: 1rem;
}

.casino-card__features-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-muted-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.casino-card__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.casino-card__features li {
  font-size: 0.78rem;
  background-color: rgba(150, 79, 223, 0.12);
  color: #e5d5ed;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
}

.casino-card__payments {
  margin-bottom: 1.25rem;
  margin-top: auto;
}

.casino-card__payments-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.payment-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted-dark);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
}

.casino-card__cta {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(233, 89, 101, 0.4);
}

.casino-card__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(233, 89, 101, 0.6), 0 0 20px rgba(150, 79, 223, 0.4);
}

.casino-card__note {
  font-size: 0.75rem;
  color: var(--color-muted-dark);
  text-align: center;
  margin-bottom: 0;
}

.page-main {
  flex: 1;
}

.content-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fffcfd 0%, #f6ebf7 100%);
  color: var(--color-text);
  border-bottom: 1px solid rgba(150, 79, 223, 0.1);
}

.content-section:nth-of-type(even) {
  background: linear-gradient(180deg, #f7ecf8 0%, #fff8fc 100%);
}

.content-section.dark-section {
  background: var(--color-dark);
  color: var(--color-text-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.editorial-card {
  background: var(--gradient-card-light);
  border: 1px solid rgba(150, 79, 223, 0.16);
  border-left: 5px solid var(--color-pink);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.editorial-card:hover {
  box-shadow: var(--shadow-lg);
}

.editorial-card.purple-stripe {
  border-left-color: var(--color-purple);
}

.editorial-card.magenta-stripe {
  border-left-color: var(--color-magenta);
}

.editorial-card h2, .editorial-card h3 {
  color: var(--color-text);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr 380px;
  }
  
  .bio-grid.reverse {
    grid-template-columns: 380px 1fr;
  }
}

.streamer-photo-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: var(--shadow-md);
}

.streamer-photo-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.streamer-photo-card figcaption {
  font-size: 0.88rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: 0.6rem;
  font-weight: 500;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}

.dark-section .table-wrapper {
  background: var(--color-dark-secondary);
}

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

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

tr:last-child th, tr:last-child td {
  border-bottom: none;
}

th[scope="row"] {
  width: 38%;
  font-weight: 700;
  color: var(--color-text);
  background-color: rgba(150, 79, 223, 0.04);
}

.dark-section th[scope="row"] {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.03);
}

thead th {
  background-color: rgba(233, 89, 101, 0.1);
  font-weight: 700;
  color: var(--color-pink);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.info-box, .warning-box, .live-status-box, .editorial-note {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.75rem 0;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.info-box {
  background-color: rgba(150, 79, 223, 0.06);
  border-left: 5px solid var(--color-purple);
}

.warning-box {
  background-color: rgba(242, 181, 48, 0.1);
  border-left: 5px solid var(--color-gold);
  color: var(--color-text);
}

.live-status-box {
  background: var(--gradient-card-dark);
  border: 1px solid var(--color-border-dark);
  color: var(--color-white);
}

.live-status-box strong {
  color: var(--color-pink);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.editorial-note {
  background-color: #fff4fa;
  border-left: 5px solid var(--color-magenta);
}

blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.75rem;
  background-color: rgba(233, 89, 101, 0.06);
  border-left: 5px solid var(--color-pink);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text);
}

.name-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.name-comparison__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.name-comparison__item h3 {
  color: var(--color-pink);
}

.video-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.video-types article {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.slot-profile dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.slot-profile dl > div {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.slot-profile dt {
  font-weight: 700;
  color: var(--color-purple);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.slot-profile dd {
  font-size: 1rem;
  margin: 0;
}

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

.community-channels__grid > div {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.community-channels__grid strong {
  color: var(--color-pink);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 3px solid var(--color-purple);
}

.timeline__item {
  position: relative;
  margin-bottom: 1.75rem;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 0.2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-pink);
  border: 3px solid var(--color-paper);
}

.timeline__item time {
  display: inline-block;
  font-weight: 700;
  color: var(--color-purple);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.faq-section {
  background: linear-gradient(180deg, #fff8fc 0%, #f4eaf7 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  max-width: var(--text-max);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--color-pink);
}

.faq-item summary {
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 3rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "↓";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--color-pink);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.4rem 1.25rem 1.4rem;
  color: var(--color-text);
  border-top: 1px solid var(--color-paper-secondary);
  font-size: 1rem;
}

.faq-answer p {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.site-footer {
  background-color: var(--color-dark-secondary);
  color: var(--color-muted-dark);
  padding: 3.5rem 0 2rem 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
}

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

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .brand-logo {
    gap: 0.4rem;
  }
  .brand-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .streamer-hero {
    padding: 2.5rem 0 3rem 0;
  }

  .editorial-card {
    padding: 1.5rem;
  }

  .content-section {
    padding: 2.5rem 0;
  }
}

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

  h1 {
    font-size: 1.55rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .casino-card__main-offer {
    font-size: 1.1rem;
  }
}
