@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   YAASS CASINO — style.css
   Prefix: yc
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--yc-font-body);
  background-color: var(--yc-bg);
  color: var(--yc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* --- CSS Variables --- */
:root {
  --yc-primary:      #E6007E;
  --yc-primary-dark: #bf0069;
  --yc-bg:           #F4F4F5;
  --yc-bg-alt:       #ffffff;
  --yc-surface:      #ffffff;
  --yc-surface-2:    #EBEBED;
  --yc-text:         #111111;
  --yc-text-muted:   #555560;
  --yc-border:       #E0E0E4;
  --yc-gold:         #FFB800;
  --yc-gold-dark:    #e0a200;

  --yc-font-head:    'Bebas Neue', sans-serif;
  --yc-font-body:    'Outfit', sans-serif;

  --yc-radius-sm:    6px;
  --yc-radius-md:    14px;
  --yc-radius-lg:    22px;
  --yc-radius-pill:  50px;

  --yc-shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --yc-shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --yc-shadow-lg:    0 16px 48px rgba(0,0,0,0.14);

  --yc-header-h:     68px;
  --yc-transition:   0.22s ease;
  --yc-container:    1140px;
}

/* --- Container --- */
.yc-container {
  max-width: var(--yc-container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* =============================================
   HEADER
   ============================================= */
.yc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0d0d0f;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: var(--yc-header-h);
  display: flex;
  align-items: center;
}

.yc-header__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.yc-logo {
  font-family: var(--yc-font-head);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--yc-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.yc-logo span { color: #ffffff; }

/* --- Nav --- */
.yc-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.yc-nav__link {
  display: inline-block;
  padding: 6px 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: var(--yc-radius-sm);
  transition: background var(--yc-transition), color var(--yc-transition);
  white-space: nowrap;
}
.yc-nav__link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.yc-nav__link--active { color: var(--yc-primary); font-weight: 700; }

/* Dropdown */
.yc-nav__group { position: relative; }
.yc-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1a1f;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--yc-radius-md);
  padding: 8px;
  min-width: 180px;
  display: none;
  box-shadow: var(--yc-shadow-lg);
  z-index: 200;
}
.yc-nav__group:hover .yc-nav__dropdown { display: block; }
.yc-nav__dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  border-radius: var(--yc-radius-sm);
  transition: background var(--yc-transition), color var(--yc-transition);
}
.yc-nav__dropdown a:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* --- Header Auth --- */
.yc-header__auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* --- Menu Toggle (mobile) --- */
.yc-menu-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  margin-left: auto;
  padding: 6px;
  border-radius: var(--yc-radius-sm);
  background: rgba(255,255,255,0.06);
}

.yc-menu-toggle::before,
.yc-menu-toggle::after,
.yc-menu-toggle span {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;

  transition: transform var(--yc-transition), opacity var(--yc-transition);
}

.yc-menu-toggle::before { top: 10px; }
.yc-menu-toggle span { top: 50%; }
.yc-menu-toggle::after { bottom: 9px; }




/* =============================================
   BUTTONS
   ============================================= */
.yc-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--yc-radius-pill);
  font-family: var(--yc-font-body);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--yc-transition), box-shadow var(--yc-transition), background var(--yc-transition), opacity var(--yc-transition);
  box-shadow: var(--yc-shadow-sm);
}
.yc-btn:hover { transform: translateY(-1px); box-shadow: var(--yc-shadow-md); }
.yc-btn:active { transform: translateY(0); }

.yc-btn--primary {
  background: var(--yc-primary);
  color: #ffffff;
  border-color: var(--yc-primary);
}
.yc-btn--primary:hover { background: var(--yc-primary-dark); border-color: var(--yc-primary-dark); }

.yc-btn--outline {
  background: #ffffff;
  color: var(--yc-primary);
  border-color: var(--yc-primary);
}
.yc-btn--outline:hover { background: var(--yc-primary); color: #fff; }

.yc-btn--cta {
  background: var(--yc-primary);
  color: #ffffff;
  border-color: var(--yc-primary);
  padding: 15px 40px;
  font-size: 1.05rem;
  border-radius: var(--yc-radius-pill);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(230,0,126,0.35);
}
.yc-btn--cta:hover {
  background: var(--yc-primary-dark);
  border-color: var(--yc-primary-dark);
  box-shadow: 0 6px 28px rgba(230,0,126,0.45);
}

.yc-btn--small {
  padding: 6px 16px;
  font-size: 0.8125rem;
}

.yc-btn--gold {
  background: linear-gradient(135deg, var(--yc-gold), var(--yc-gold-dark));
  color: #111111;
  border-color: transparent;
  font-weight: 700;
}
.yc-btn--gold:hover { opacity: 0.9; }

/* =============================================
   HERO
   ============================================= */
.yc-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;
}

.yc-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(230,0,126,0.18) 0%, transparent 70%),
    linear-gradient(135deg, #0d0d0f 0%, #1a0a13 50%, #0d0d0f 100%);
  z-index: 0;
}

.yc-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.yc-hero__title {
  font-family: var(--yc-font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.yc-hero__title em {
  color: var(--yc-primary);
  font-style: normal;
}

.yc-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-weight: 400;
}

.yc-hero__bonus {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(230,0,126,0.3);
  border-radius: var(--yc-radius-lg);
  padding: 24px 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(230,0,126,0.15);
  margin-bottom: 28px;
}
.yc-hero__bonus-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.yc-hero__bonus-value {
  font-family: var(--yc-font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--yc-primary);
  letter-spacing: 0.04em;
  line-height: 1;
}
.yc-hero__bonus-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   CATEGORIES BAR
   ============================================= */
.yc-cats-bar {
  background: var(--yc-surface);
  border-bottom: 1px solid var(--yc-border);
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.yc-cats-bar::-webkit-scrollbar { display: none; }
.yc-cats-inner {
  display: flex;
  gap: 10px;
  padding-inline: 20px;
  max-width: var(--yc-container);
  margin-inline: auto;
  flex-wrap: nowrap;
  align-items: center;
}

.yc-cat-tile {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border-radius: var(--yc-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  background: var(--yc-surface-2);
  color: var(--yc-text-muted);
  border: 1.5px solid transparent;
  transition: background var(--yc-transition), color var(--yc-transition), border-color var(--yc-transition);
  cursor: pointer;
}
.yc-cat-tile:hover,
.yc-cat-tile.is-active {
  background: var(--yc-primary);
  color: #fff;
  border-color: var(--yc-primary);
}

/* =============================================
   MAIN & CONTENT SECTIONS
   ============================================= */
.yc-main { padding: 40px 20px 60px; }

.yc-content-section { margin-bottom: 48px; }

.yc-content-section h2 {
  font-family: var(--yc-font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--yc-primary);
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yc-border);
  margin-bottom: 18px;
}

.yc-content-section h3 {
  font-family: var(--yc-font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--yc-primary);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  margin-top: 22px;
}

.yc-content-section p {
  color: var(--yc-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.yc-content-section .yc-lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--yc-text);
  line-height: 1.7;
}

.yc-content-section ol {
  list-style: decimal;
  padding-left: 22px;
  color: var(--yc-text-muted);
  line-height: 1.75;
}
.yc-content-section ol li::marker { color: var(--yc-primary); font-weight: 700; }
.yc-content-section ol li { margin-bottom: 8px; }

.yc-content-section ul {
  padding-left: 0;
  color: var(--yc-text-muted);
  line-height: 1.75;
}
.yc-content-section ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
}
.yc-content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yc-primary);
  font-weight: 900;
  font-size: 0.95rem;
}

.yc-content-section a {
  color: var(--yc-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.yc-content-section a:hover { color: var(--yc-primary-dark); }

/* =============================================
   BONUS CARDS
   ============================================= */
.yc-bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.yc-bonus-card {
  background: var(--yc-surface);
  border: 1px solid var(--yc-border);
  border-radius: var(--yc-radius-lg);
  padding: 26px 24px;
  transition: transform var(--yc-transition), box-shadow var(--yc-transition);
}
.yc-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yc-shadow-md);
}

.yc-bonus-card h4 {
  font-family: var(--yc-font-head);
  font-size: 1.25rem;
  color: var(--yc-primary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.yc-bonus-card p {
  font-size: 0.875rem;
  color: var(--yc-text-muted);
  line-height: 1.6;
}
.yc-bonus-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.yc-bonus-card__value {
  font-family: var(--yc-font-head);
  font-size: 1.8rem;
  color: var(--yc-text);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

/* =============================================
   TABLES
   ============================================= */
.yc-table-wrap { overflow-x: auto; margin: 20px 0; }

.yc-bonus-table,
.yc-styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--yc-surface);
  border-radius: var(--yc-radius-md);
  overflow: hidden;
  font-size: 0.9rem;
}

.yc-bonus-table th,
.yc-styled-table th {
  background: var(--yc-surface-2);
  color: var(--yc-primary);
  font-weight: 700;
  text-align: left;
  padding: 13px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--yc-border);
}

.yc-bonus-table td,
.yc-styled-table td {
  padding: 12px 16px;
  color: var(--yc-text-muted);
  border-bottom: 1px solid var(--yc-border);
}

.yc-bonus-table tr:last-child td,
.yc-styled-table tr:last-child td { border-bottom: none; }

.yc-bonus-table tr:hover td,
.yc-styled-table tr:hover td { background: rgba(230,0,126,0.04); }

/* =============================================
   FAQ
   ============================================= */
.yc-faq-list dt {
  border-left: 3px solid var(--yc-primary);
  background: var(--yc-surface-2);
  padding: 12px 16px;
  font-weight: 600;
  color: var(--yc-text);
  margin-bottom: 2px;
  border-radius: 0 var(--yc-radius-sm) var(--yc-radius-sm) 0;
}
.yc-faq-list dd {
  color: var(--yc-text-muted);
  padding: 10px 16px 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.yc-faq__item {
  border: 1px solid var(--yc-border);
  border-radius: var(--yc-radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--yc-surface);
}

.yc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--yc-text);
  transition: color var(--yc-transition);
  gap: 12px;
  width: 100%;
  text-align: left;
}
.yc-faq__question:hover { color: var(--yc-primary); }
.yc-faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--yc-primary);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--yc-transition);
}
.yc-faq__item.is-open .yc-faq__question::after {
  transform: rotate(45deg);
}

.yc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.yc-faq__answer-inner {
  padding: 0 20px 18px;
  color: var(--yc-text-muted);
  line-height: 1.75;
  font-size: 0.9rem;
}
.yc-faq__item.is-open .yc-faq__answer { max-height: 500px; }

/* =============================================
   CARDS GRID
   ============================================= */
.yc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.yc-card {
  background: var(--yc-surface);
  border: 1px solid var(--yc-border);
  border-radius: var(--yc-radius-lg);
  padding: 28px 24px;
  transition: transform var(--yc-transition), box-shadow var(--yc-transition);
}
.yc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--yc-shadow-md);
}
.yc-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.yc-card h3 {
  font-family: var(--yc-font-head);
  font-size: 1.2rem;
  color: var(--yc-primary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.yc-card p {
  font-size: 0.875rem;
  color: var(--yc-text-muted);
  line-height: 1.65;
}

/* =============================================
   TWO COLUMNS
   ============================================= */
.yc-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.yc-two-cols--center { align-items: center; }
.yc-two-cols__text {}
.yc-two-cols__media {
  border-radius: var(--yc-radius-lg);
  overflow: hidden;
}

/* =============================================
   STATS BAR
   ============================================= */
.yc-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--yc-surface);
  border: 1px solid var(--yc-border);
  border-radius: var(--yc-radius-lg);
  padding: 28px 0;
  text-align: center;
  margin: 30px 0;
}
.yc-stat-item {
  padding: 0 20px;
  border-right: 1px solid var(--yc-border);
}
.yc-stat-item:last-child { border-right: none; }
.yc-stat-item__value {
  font-family: var(--yc-font-head);
  font-size: 2rem;
  color: var(--yc-primary);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.yc-stat-item__label {
  font-size: 0.78rem;
  color: var(--yc-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   CTA BLOCK
   ============================================= */
.yc-cta-block {
  background: linear-gradient(135deg, #0d0d0f 0%, #1a0a13 60%, #0d0d0f 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 40px;
  border-radius: var(--yc-radius-lg);
  margin: 40px 0;
}
.yc-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(230,0,126,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.yc-cta-block__title {
  font-family: var(--yc-font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  position: relative;
}
.yc-cta-block__desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 28px;
  position: relative;
}
.yc-cta-block .yc-btn { position: relative; }

/* =============================================
   CHECKMARK LIST (Standalone)
   ============================================= */
.yc-check-list {
  list-style: none;
  padding-left: 0;
}
.yc-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--yc-text-muted);
  line-height: 1.7;
}
.yc-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--yc-primary);
  font-weight: 900;
  font-size: 1rem;
}

/* =============================================
   NUMBERED LIST (Standalone)
   ============================================= */
.yc-numbered-list {
  counter-reset: yc-counter;
  list-style: none;
  padding-left: 0;
}
.yc-numbered-list li {
  counter-increment: yc-counter;
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px;
  color: var(--yc-text-muted);
  line-height: 1.7;
}
.yc-numbered-list li::before {
  content: counter(yc-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--yc-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.yc-footer {
  background: #0d0d0f;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 52px 0 0;
  color: rgba(255,255,255,0.55);
}
.yc-footer__inner {
  max-width: var(--yc-container);
  margin-inline: auto;
  padding-inline: 20px;
}

.yc-footer__top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.yc-footer__brand { flex: 0 0 220px; }
.yc-footer__brand .yc-logo {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.7rem;
}
.yc-footer__brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.yc-footer__links {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}
.yc-footer__links-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.yc-footer__links-col ul { display: flex; flex-direction: column; gap: 8px; }
.yc-footer__links-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--yc-transition);
}
.yc-footer__links-col ul li a:hover { color: var(--yc-primary); }

.yc-footer__bottom {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 14px;
}
.yc-footer__bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.yc-footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--yc-transition);
}
.yc-footer__bottom-links a:hover { color: var(--yc-primary); }

.yc-footer__lang { display: flex; gap: 8px; }
.yc-footer__lang-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  padding: 3px 8px;
  border-radius: var(--yc-radius-sm);
  transition: color var(--yc-transition), background var(--yc-transition);
}
.yc-footer__lang-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.yc-footer__lang-link.active { color: var(--yc-primary); font-weight: 700; }

.yc-footer__disclaimer {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.25);
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.yc-footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.yc-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   BADGE
   ============================================= */
.yc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--yc-radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(230,0,126,0.15);
  color: var(--yc-primary);
  border: 1px solid rgba(230,0,126,0.3);
}
.yc-badge--gold {
  background: rgba(255,184,0,0.12);
  color: var(--yc-gold);
  border-color: rgba(255,184,0,0.3);
}

/* =============================================
   PAGE HEADER
   ============================================= */
.yc-page-header {
  background: var(--yc-surface);
  border-bottom: 1px solid var(--yc-border);
  padding: 32px 20px;
  text-align: center;
}
.yc-page-header h1 {
  font-family: var(--yc-font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--yc-text);
  letter-spacing: 0.04em;
}

.yc-breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--yc-text-muted);
  margin-bottom: 10px;
  justify-content: center;
}
.yc-breadcrumb a { color: var(--yc-primary); }
.yc-breadcrumb span { color: var(--yc-text-muted); }

/* =============================================
   MODAL
   ============================================= */
.yc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.yc-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.yc-modal__content {
  background: var(--yc-surface);
  padding: 40px;
  border-radius: var(--yc-radius-lg);
  box-shadow: var(--yc-shadow-lg);
  position: relative;
  max-width: 520px;
  width: 100%;
}
.yc-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--yc-text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--yc-radius-sm);
  transition: color var(--yc-transition);
}
.yc-modal__close:hover { color: var(--yc-primary); }

/* =============================================
   BACK TO TOP
   ============================================= */
.yc-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--yc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--yc-radius-pill);
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(230,0,126,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--yc-transition), transform var(--yc-transition);
  z-index: 99;
  cursor: pointer;
}
.yc-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.yc-back-top:hover { transform: translateY(-3px); }

/* =============================================
   PLACEHOLDER IMAGE
   ============================================= */
.yc-placeholder-img {
  aspect-ratio: 16/9;
  background: var(--yc-surface-2);
  border-radius: var(--yc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--yc-text-muted);
  border: 1px solid var(--yc-border);
}

/* =============================================
   SECTION ALTERNATING BG
   ============================================= */
.yc-section { padding: 64px 0; }
.yc-section--white { background: var(--yc-bg-alt); }
.yc-section--grey  { background: var(--yc-bg); }

/* =============================================
   RESPONSIVE — max-width 1080px
   ============================================= */
@media (max-width: 1080px) {
  .yc-nav,
  .yc-header__auth,
  .yc-wheel-btn-wrap {
    display: none;
  }

  .yc-menu-toggle {
    display: flex;
  }

  /* Nav open state */
  .yc-header.nav-open .yc-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--yc-header-h);
    left: 0;
    right: 0;
    background: #0d0d0f;
    padding: 16px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 4px;
    z-index: 99;
  }
  .yc-header.nav-open .yc-nav__link {
    padding: 10px 14px;
    font-size: 1rem;
    width: 100%;
  }
  .yc-header.nav-open .yc-nav__dropdown {
    position: static;
    display: block;
    background: rgba(255,255,255,0.04);
    box-shadow: none;
    border: none;
    border-radius: var(--yc-radius-sm);
    padding: 6px 0 6px 12px;
  }
  .yc-header.nav-open .yc-header__auth {
    display: flex;
    padding: 10px 20px 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

/* =============================================
   RESPONSIVE — max-width 768px
   ============================================= */
@media (max-width: 768px) {
  .yc-cards-grid { grid-template-columns: 1fr; }
  .yc-two-cols   { grid-template-columns: 1fr; }
  .yc-stats-bar  { grid-template-columns: repeat(2, 1fr); }
  .yc-stat-item:nth-child(2) { border-right: none; }
  .yc-stat-item:nth-child(3),
  .yc-stat-item:nth-child(4) {
    border-top: 1px solid var(--yc-border);
    padding-top: 20px;
    margin-top: 20px;
  }
  .yc-bonus-cards { grid-template-columns: 1fr; }
  .yc-footer__top { gap: 28px; }
  .yc-footer__brand { flex: 0 0 100%; }
}

/* =============================================
   RESPONSIVE — max-width 600px
   ============================================= */
@media (max-width: 600px) {
  :root { --yc-header-h: 60px; }

  .yc-hero { min-height: 260px; padding: 44px 16px; }
  .yc-hero__bonus { padding: 18px 20px; }

  .yc-main { padding: 28px 16px 40px; }
  .yc-content-section { margin-bottom: 32px; }

  .yc-btn--cta { width: 100%; display: block; }

  .yc-stats-bar { grid-template-columns: 1fr 1fr; }

  .yc-cta-block { padding: 36px 20px; }
  .yc-modal__content { padding: 28px 20px; }

  .yc-footer__links { flex-direction: column; gap: 24px; }
  .yc-footer__bottom { flex-direction: column; align-items: flex-start; }
}

.yc-logo img {
  max-width: 120px;
}

.yc-footer__lang {
  display: none;
}

.ys-sec-white {
  padding-bottom: 0 !important;
}

.yc-btn.yc-btn--outline.wheel-btn, .yc-btn.yc-btn--outline {
  color: #E6007E !important;
}

.yc-btn.yc-btn--outline.wheel-btn:hover, .yc-btn.yc-btn--outline:hover {
  color: white !important;
}

.yc-btn.yc-btn--cta, .yc-btn.yc-btn--primary.yc-btn--small {
  color: white !important;
}

.yc-menu-toggle.active::before {
  transform: translateX(-50%) translateY(9px) rotate(45deg);
}

.yc-menu-toggle.active::after {
  transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

.yc-menu-toggle.active span {
  opacity: 0;
}

@media(max-width: 1080px) {
  .yc-header.nav-open .yc-header__auth {
    display: none;
  }

  .yc-header.nav-open .yc-nav {
    height: 100vh;
    overflow-x: scroll;
    align-items: flex-start;
  }

  .yc-btn.yc-btn--cta {
    white-space: normal;
  }
}

@media(max-width: 768px) {
  .yc-table-wrap {
    width: 90vw;
    overflow-y: scroll;
  }
}