

:root {
  --yellow: #ffd21c;
  --yellow-dark: #e9b900;
  --yellow-light: #fff6bf;
  --black: #111111;
  --charcoal: #1b1b1b;
  --red: #e51b23;
  --white: #ffffff;
  --surface: #f5f5f1;
  --surface-dark: #202020;
  --border: #181818;
  --muted: #66645f;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  
  --shadow-sm: 3px 3px 0px var(--border);
  --shadow-md: 5px 5px 0px var(--border);
  --shadow-lg: 8px 8px 0px var(--border);
  --shadow-yellow: 6px 6px 0px var(--yellow);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --header-height: 74px;
  --topbar-height: 34px;
}


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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}


.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}


h1, h2, h3, h4 {
  color: var(--black);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.0625rem; 
  line-height: 1.7;
  color: #222222;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

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

a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.15s ease, background 0.15s ease;
}

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


section[id], main > header {
  scroll-margin-top: calc(var(--header-height) + var(--topbar-height) + 20px);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  border-radius: var(--radius-md);
  border: 2.5px solid var(--black);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  box-shadow: var(--shadow-sm);
  user-select: none;
  text-align: center;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
  color: var(--black);
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.btn-primary:hover {
  background-color: #222222;
  color: var(--yellow);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-secondary:hover {
  background-color: var(--yellow-light);
}

.btn-accent {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--black);
}

.btn-accent:hover {
  background-color: #c71219;
  color: var(--white);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--black);
  border-color: var(--black);
}

.btn-yellow:hover {
  background-color: var(--yellow-dark);
}

.btn-sm {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  min-height: 40px;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--black);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.badge-outline {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.badge-red {
  background: var(--red);
  color: var(--white);
}


.topbar {
  background-color: var(--black);
  color: var(--yellow-light);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem 1rem;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--border);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar .divider {
  color: var(--red);
  font-weight: 900;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--yellow);
  border-bottom: 3px solid var(--black);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--black);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--black);
  transition: transform 0.2s ease;
}

.brand-link:hover .brand-logo {
  transform: rotate(-6deg) scale(1.05);
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-link:hover {
  background-color: var(--black);
  color: var(--yellow);
}


.header-cta-wrapper {
  position: relative;
}

.header-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1010;
}

.header-dropdown.active {
  display: flex;
  animation: dropdownPop 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes dropdownPop {
  from { opacity: 0; transform: translateY(-8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-link:hover {
  background: var(--yellow);
  color: var(--black);
}


.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1005;
}

.burger-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--yellow);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.burger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.burger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.section-yellow {
  background-color: var(--yellow);
  border-bottom: 3px solid var(--black);
}

.section-white {
  background-color: var(--white);
  border-bottom: 3px solid var(--black);
}

.section-surface {
  background-color: var(--surface);
  border-bottom: 3px solid var(--black);
}

.section-dark {
  background-color: var(--charcoal);
  color: var(--white);
  border-bottom: 3px solid var(--black);
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3 {
  color: var(--yellow);
}

.section-dark p {
  color: #dddddd;
}


.hero-section {
  background: var(--yellow);
  background-image: 
    radial-gradient(var(--yellow-dark) 1px, transparent 1px),
    linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  background-size: 24px 24px, 100% 100%;
  border-bottom: 4px solid var(--black);
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

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

.hero-content {
  z-index: 2;
}

.hero-title {
  color: var(--black);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  color: #2b2b2b;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-media {
  position: relative;
  z-index: 2;
}

.hero-banner-frame {
  background: var(--black);
  border: 4px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1deg);
  transition: transform 0.3s ease;
}

.hero-banner-frame:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-2col-reverse {
  grid-template-columns: 1fr 1fr;
}

.media-card-frame {
  background: var(--white);
  border: 3.5px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.media-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.media-card-body {
  padding: 1.25rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.media-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}


.table-wrapper {
  margin: 1.75rem 0;
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

thead {
  background-color: var(--yellow);
  border-bottom: 3px solid var(--black);
}

th {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 1rem 1.25rem;
  border-right: 2px solid var(--black);
}

th:last-child {
  border-right: none;
}

td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1.5px solid #e0e0e0;
  border-right: 1.5px solid #e0e0e0;
  font-size: 1rem;
}

td:last-child {
  border-right: none;
}

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

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

tbody td:first-child {
  font-weight: 800;
  color: var(--black);
}


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

.step-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: -0.04em;
}

.step-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  line-height: 1.2;
}


.typography-banner {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: rgba(255, 210, 28, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  user-select: none;
  margin-bottom: 2rem;
  overflow: hidden;
}

.yellow-card-accent {
  background: var(--yellow);
  color: var(--black);
  border: 3.5px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-yellow);
  margin-top: 2rem;
}

.yellow-card-accent h3 {
  color: var(--black);
  margin-top: 0;
  font-size: 1.5rem;
}

.yellow-card-accent p {
  color: #1a1a1a;
}


.tags-list-container {
  margin: 2rem 0;
}

.tags-ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag-card-item {
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  transition: transform 0.15s ease;
}

.tag-card-item:hover {
  transform: scale(1.02);
  background: var(--yellow-light);
}

.tag-num-badge {
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--black);
}


.notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow-light);
  border: 2px solid var(--black);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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


.casino-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 2px solid var(--black);
}

.casino-title {
  font-size: 1.3rem;
  font-weight: 900;
}

.casino-bonus-box {
  background: var(--surface);
  border: 2px dashed var(--black);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.casino-code {
  font-family: monospace;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--red);
}

.warning-box {
  background: var(--yellow-light);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.warning-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}


.bonus-header-card {
  background: var(--yellow);
  border: 3.5px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.code-copy-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  margin: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.code-text {
  font-family: monospace, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--black);
}

.copy-toast {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: green;
  margin-left: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.copy-toast.visible {
  opacity: 1;
}


.bonus-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.card-wide {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.cards-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.card-dark-horizontal {
  background: var(--charcoal);
  color: var(--white);
  border: 3.5px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-yellow);
}

.card-dark-horizontal h3 {
  color: var(--yellow);
  margin-top: 0;
}

.card-dark-horizontal p {
  color: #dddddd;
}

.card-compact {
  background: var(--surface);
  border: 2.5px solid var(--black);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}


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

.video-card {
  background: var(--white);
  border: 3.5px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-poster-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-poster-img {
  transform: scale(1.04);
}

.video-poster-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  justify-content: space-between;
}


.streamplan-dashboard {
  background: var(--yellow);
  border: 4px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin: 2rem 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;

}

.dashboard-item {
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.dashboard-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.25rem;
}

.dashboard-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
}


.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.social-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--yellow-light);
}

.social-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon-wrapper svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}


.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.profile-portrait-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  background: var(--black);
  border: 5px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-yellow);
  overflow: hidden;
}

.profile-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.streamer-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.streamer-profile div {
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.streamer-profile dt {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.streamer-profile dd {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
}


.feature-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-grid article {
  background: var(--white);
  border: 3.5px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.feature-grid article h3 {
  margin-top: 0;
  font-size: 1.35rem;
}


.checklist-ul {
  list-style: none;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.age-badge-circle {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  color: var(--black);
  border: 4px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
  margin: 2rem auto 0;
}


.faq-section {
  background: var(--surface);
  border-bottom: 3px solid var(--black);
  padding: 4.5rem 0;
}

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

.faq-controls {
  display: flex;
  gap: 0.75rem;
}

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

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

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--black);
  color: var(--yellow);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 2px dashed #eeeeee;
  margin-top: 0.5rem;
  padding-top: 1rem;
}


.site-footer {
  background-color: var(--black);
  color: var(--white);
  border-top: 4px solid var(--yellow);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
}

.footer-brand-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.95rem;
  color: #bbbbbb;
  max-width: 420px;
}

.footer-nav-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #dddddd;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #222222;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.footer-social-btn:hover {
  transform: translateY(-3px);
  background: var(--yellow);
  color: var(--black);
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
  font-size: 0.875rem;
  color: #999999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-disclaimer-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-18plus {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1rem;
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.15s ease;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--white);
}


@media (max-width: 1199px) {
  .hero-grid,
  .grid-2col,
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

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

@media (max-width: 991px) {
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--yellow);
    border-left: 4px solid var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    gap: 1.25rem;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.25);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    width: 100%;
  }

  .burger-btn {
    display: flex;
  }

  .cards-2col,
  .videos-grid,
  .casino-offers-grid {
    grid-template-columns: 1fr;
  }

  .streamer-profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .hero-section {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .steps-grid,
  .dashboard-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

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

  
  .table-wrapper table, 
  .table-wrapper thead, 
  .table-wrapper tbody, 
  .table-wrapper th, 
  .table-wrapper td, 
  .table-wrapper tr { 
    display: block; 
  }
  
  .table-wrapper thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .table-wrapper tr {
    border-bottom: 3px solid var(--black);
    padding: 1rem;
    background: var(--white);
  }

  .table-wrapper tr:nth-child(even) {
    background: var(--surface);
  }
  
  .table-wrapper td { 
    border: none !important;
    position: relative;
    padding: 0.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .table-wrapper td::before {
    content: attr(data-label);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--muted);
  }

  .brand-text {
    display: none; 
  }

  .topbar {
    font-size: 0.75rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 1rem;
  }
}


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