    :root {
      --wine: #8C1D18;
      --wine-dark: #5c120f;
      --rose: #B8860B;
      --blush: #f2f5f9;
      --paper: #F5F5F5;
      --charcoal: #0B2545;
      --muted: #4a5a70;
      --white: #ffffff;
      --line: rgba(11, 37, 69, 0.12);
      --soft-shadow: 0 24px 70px rgba(11, 37, 69, 0.08);
      --container: 1160px;
      --radius-lg: 30px;
      --radius-md: 20px;
      --font-display: "Playfair Display", Georgia, serif;
      --font-body: "Manrope", Arial, sans-serif;
      --font-note: "Caveat", cursive;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--charcoal);
      background: var(--paper);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      content: "";
      opacity: 0.24;
      background-image: radial-gradient(rgba(11, 37, 69, 0.12) 0.55px, transparent 0.55px);
      background-size: 7px 7px;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    :focus-visible {
      outline: 3px solid var(--rose);
      outline-offset: 4px;
    }

    ::selection {
      color: var(--white);
      background: var(--wine);
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 1000;
      padding: 10px 16px;
      color: var(--white);
      background: var(--wine);
      border-radius: 999px;
      font-weight: 700;
      transform: translateY(-160%);
      transition: transform 180ms ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(125, 34, 72, 0.1);
      background: rgba(255, 250, 248, 0.9);
      backdrop-filter: blur(18px);
    }

    .header-inner {
      min-height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      gap: 13px;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--wine);
      border-radius: 50% 50% 50% 14px;
      font-family: var(--font-display);
      font-size: 1.05rem;
      box-shadow: 0 10px 24px rgba(125, 34, 72, 0.2);
    }

    .brand-copy {
      display: grid;
      line-height: 1.1;
    }

    .brand-copy strong {
      color: var(--wine);
      font-family: var(--font-display);
      font-size: 1.08rem;
      font-weight: 600;
    }

    .brand-copy small {
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.59rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .main-nav a {
      min-height: 46px;
      padding: 10px 14px;
      display: inline-flex;
      align-items: center;
      color: #4a4144;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 700;
      transition: color 180ms ease, background-color 180ms ease;
    }

    .main-nav a:hover {
      color: var(--wine);
      background: var(--blush);
    }

    .menu-toggle {
      width: 48px;
      height: 48px;
      display: none;
      place-items: center;
      color: var(--wine);
      border: 1px solid var(--line);
      border-radius: 50%;
      background: var(--white);
      cursor: pointer;
    }

    .menu-toggle svg {
      width: 21px;
      height: 21px;
    }

    .hero {
      position: relative;
      min-height: 760px;
      display: grid;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      position: absolute;
      top: 9%;
      left: -200px;
      width: 520px;
      height: 520px;
      z-index: -1;
      content: "";
      background: rgba(196, 139, 159, 0.15);
      border-radius: 50%;
      filter: blur(2px);
    }

    .hero::after {
      position: absolute;
      right: -120px;
      bottom: -260px;
      width: 640px;
      height: 640px;
      z-index: -1;
      content: "";
      border: 1px solid rgba(125, 34, 72, 0.12);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(196, 139, 159, 0.04), 0 0 0 140px rgba(125, 34, 72, 0.025);
    }

    .hero-grid {
      padding-block: 84px 104px;
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
      align-items: center;
      gap: clamp(46px, 7vw, 92px);
    }

    .eyebrow {
      margin: 0 0 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--wine);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 34px;
      height: 1px;
      flex: 0 0 auto;
      content: "";
      background: currentColor;
    }

    h1,
    h2,
    h3 {
      margin-top: 0;
      font-family: var(--font-display);
      line-height: 1.06;
      text-wrap: balance;
    }

    h1 {
      max-width: 640px;
      margin-bottom: 26px;
      color: var(--wine);
      font-size: clamp(4.2rem, 8vw, 7.4rem);
      font-weight: 500;
      letter-spacing: -0.05em;
    }

    .hero-lead {
      max-width: 590px;
      margin: 0 0 34px;
      color: #554c4f;
      font-size: clamp(1rem, 1.4vw, 1.14rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
    }

    .button {
      min-height: 52px;
      padding: 13px 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 0.79rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .button-primary {
      color: var(--white);
      background: var(--wine);
      box-shadow: 0 16px 34px rgba(125, 34, 72, 0.2);
    }

    .button-primary:hover {
      background: var(--wine-dark);
      box-shadow: 0 18px 42px rgba(125, 34, 72, 0.28);
    }

    .button-secondary {
      color: var(--wine);
      border-color: rgba(125, 34, 72, 0.28);
      background: rgba(255, 255, 255, 0.68);
    }

    .button-secondary:hover {
      border-color: var(--wine);
      background: var(--blush);
    }

    .button svg {
      width: 18px;
      height: 18px;
    }

    .hero-visual {
      position: relative;
      margin: 0;
    }

    .hero-visual::before {
      position: absolute;
      inset: -18px 22px 18px -22px;
      z-index: -1;
      content: "";
      border: 1px solid rgba(125, 34, 72, 0.2);
      border-radius: 42% 58% 28px 28px;
    }

    .hero-visual img {
      width: 100%;
      min-height: 500px;
      object-fit: cover;
      border-radius: 48% 48% 28px 28px;
      box-shadow: var(--soft-shadow);
      animation: image-in 800ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
    }

    .visual-note {
      position: absolute;
      right: -24px;
      bottom: 36px;
      width: min(250px, 72%);
      padding: 18px 22px;
      color: var(--wine);
      border: 1px solid rgba(125, 34, 72, 0.12);
      border-radius: 16px;
      background: rgba(255, 250, 248, 0.92);
      box-shadow: 0 18px 42px rgba(75, 31, 49, 0.16);
      font-family: var(--font-note);
      font-size: 1.45rem;
      line-height: 1.05;
      backdrop-filter: blur(12px);
    }

    .editorial-strip {
      border-block: 1px solid var(--line);
      background: var(--blush);
    }

    .strip-grid {
      min-height: 100px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .strip-item {
      padding: 20px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      border-right: 1px solid var(--line);
    }

    .strip-item:last-child {
      border-right: 0;
    }

    .strip-item strong {
      color: var(--wine);
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 600;
      line-height: 1;
    }

    .strip-item span {
      color: #574c50;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .section {
      padding-block: 112px;
    }

    .section-heading {
      max-width: 820px;
      margin-bottom: 52px;
    }

    .section-heading h2,
    .split-copy h2,
    .casino-copy h2 {
      margin-bottom: 22px;
      color: var(--wine);
      font-size: clamp(2.7rem, 5.4vw, 5rem);
      font-weight: 500;
      letter-spacing: -0.045em;
    }

    .section-heading > p:last-child,
    .split-copy > p,
    .casino-copy > p {
      max-width: 730px;
      margin: 0;
      color: var(--muted);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.18fr 0.82fr;
      gap: 24px;
    }

    .intro-story,
    .quote-card {
      min-height: 370px;
      padding: clamp(30px, 5vw, 52px);
      border-radius: var(--radius-lg);
    }

    .intro-story {
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--soft-shadow);
    }

    .intro-story h3 {
      margin-bottom: 20px;
      color: var(--charcoal);
      font-size: clamp(2rem, 3.4vw, 3.2rem);
      font-weight: 500;
    }

    .intro-story p {
      margin: 0;
      color: var(--muted);
    }

    .quote-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: var(--white);
      background: var(--wine);
      overflow: hidden;
    }

    .quote-card::after {
      position: absolute;
      right: -70px;
      bottom: -100px;
      width: 240px;
      height: 240px;
      content: "";
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50%;
      box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.035), 0 0 0 72px rgba(255, 255, 255, 0.025);
    }

    .quote-card svg {
      width: 46px;
      height: 46px;
    }

    .quote-card blockquote {
      position: relative;
      z-index: 1;
      margin: 54px 0 22px;
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.7rem);
      line-height: 1.15;
    }

    .quote-card cite {
      position: relative;
      z-index: 1;
      color: #ead6dd;
      font-size: 0.7rem;
      font-style: normal;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .expertise-section {
      border-block: 1px solid var(--line);
      background: #f7eff1;
    }

    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .expertise-card {
      min-height: 340px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(125, 34, 72, 0.12);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.72);
      transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
    }

    .expertise-card:hover {
      border-color: rgba(125, 34, 72, 0.38);
      background: var(--white);
      box-shadow: 0 18px 46px rgba(75, 31, 49, 0.09);
    }

    .icon-box {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      color: var(--wine);
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--blush);
    }

    .icon-box svg {
      width: 25px;
      height: 25px;
    }

    .expertise-card h3 {
      margin: auto 0 14px;
      color: var(--wine);
      font-size: 1.7rem;
      font-weight: 500;
    }

    .expertise-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .podcast-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      align-items: center;
      gap: clamp(44px, 7vw, 92px);
    }

    .podcast-media {
      position: relative;
      margin: 0;
    }

    .podcast-media::before {
      position: absolute;
      inset: 18px -18px -18px 18px;
      z-index: -1;
      content: "";
      border: 1px solid rgba(125, 34, 72, 0.3);
      border-radius: var(--radius-lg);
    }

    .podcast-media img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--soft-shadow);
    }

    .podcast-media figcaption {
      position: absolute;
      right: 20px;
      bottom: 20px;
      left: 20px;
      padding: 13px 17px;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 14px;
      background: rgba(46, 46, 46, 0.78);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
    }

    .audio-list {
      margin: 32px 0 0;
      padding: 0;
      list-style: none;
    }

    .audio-list li {
      padding: 17px 0;
      display: grid;
      grid-template-columns: 44px 1fr;
      align-items: start;
      gap: 14px;
      border-bottom: 1px solid var(--line);
    }

    .audio-list li:first-child {
      border-top: 1px solid var(--line);
    }

    .audio-index {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      color: var(--wine);
      border-radius: 50%;
      background: var(--blush);
      font-family: var(--font-display);
      font-weight: 600;
    }

    .audio-list strong,
    .audio-list span {
      display: block;
    }

    .audio-list strong {
      margin-bottom: 3px;
      font-size: 0.9rem;
    }

    .audio-list span {
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.55;
    }

    .journey-section {
      color: var(--white);
      background: var(--charcoal);
    }

    .journey-section .eyebrow,
    .journey-section .section-heading h2 {
      color: #e5bac9;
    }

    .journey-section .section-heading > p:last-child {
      color: #c8c0c2;
    }

    .journey {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(243, 231, 234, 0.14);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .journey-item {
      min-height: 310px;
      padding: 32px;
      border-right: 1px solid rgba(243, 231, 234, 0.14);
    }

    .journey-item:last-child {
      border-right: 0;
    }

    .journey-item small {
      display: block;
      margin-bottom: 70px;
      color: var(--rose);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .journey-item h3 {
      margin-bottom: 15px;
      color: var(--white);
      font-size: 1.55rem;
      font-weight: 500;
    }

    .journey-item p {
      margin: 0;
      color: #c8c0c2;
      font-size: 0.82rem;
    }

    .sources {
      padding-bottom: 112px;
    }

    .sources-panel {
      padding: clamp(34px, 6vw, 66px);
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      align-items: center;
      gap: 58px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--soft-shadow);
    }

    .sources-panel h2 {
      margin-bottom: 20px;
      color: var(--wine);
      font-size: clamp(2.5rem, 4.5vw, 4.2rem);
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .sources-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 0.83rem;
    }

    .source-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .source-link {
      min-height: 104px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 14px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fffdfc;
      transition: border-color 180ms ease, background-color 180ms ease;
    }

    .source-link:hover {
      border-color: var(--wine);
      background: var(--blush);
    }

    .source-link strong {
      font-size: 0.86rem;
    }

    .source-link span {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--wine);
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .source-link svg {
      width: 18px;
      height: 18px;
    }

    .casino-section {
      padding-block: 84px;
      color: var(--white);
      background:
        radial-gradient(circle at 80% 50%, rgba(196, 139, 159, 0.2), transparent 28rem),
        var(--wine-dark);
    }

    .casino-grid {
      display: grid;
      grid-template-columns: 1fr 0.7fr;
      align-items: center;
      gap: 70px;
    }

    .casino-copy .eyebrow,
    .casino-copy h2 {
      color: #f1ccd9;
    }

    .casino-copy > p {
      color: #eadde1;
    }

    .responsible-card {
      padding: 30px;
      border: 1px solid rgba(243, 231, 234, 0.22);
      border-radius: var(--radius-md);
      background: rgba(46, 46, 46, 0.22);
    }

    .age-badge {
      width: 54px;
      height: 54px;
      margin-bottom: 20px;
      display: grid;
      place-items: center;
      color: var(--wine);
      background: var(--blush);
      border-radius: 50%;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
    }

    .responsible-card strong {
      display: block;
      margin-bottom: 10px;
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
    }

    .responsible-card p {
      margin: 0;
      color: #e1d1d7;
      font-size: 0.8rem;
    }

    .site-footer {
      padding-block: 36px;
      color: #d5c9cd;
      border-top: 1px solid rgba(243, 231, 234, 0.12);
      background: #261d20;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-copy {
      margin: 0;
      font-size: 0.7rem;
    }

    .back-top {
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      color: var(--white);
      border: 1px solid rgba(243, 231, 234, 0.2);
      border-radius: 50%;
      transition: color 180ms ease, background-color 180ms ease;
    }

    .back-top:hover {
      color: var(--wine);
      background: var(--blush);
    }

    .back-top svg {
      width: 19px;
      height: 19px;
    }

    @keyframes image-in {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.99);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (max-width: 980px) {
      .menu-toggle {
        display: grid;
        flex: 0 0 48px;
        margin-left: auto;
      }

      .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        padding: 12px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 250, 248, 0.98);
        box-shadow: var(--soft-shadow);
      }

      .main-nav.is-open {
        display: flex;
      }

      .main-nav a {
        padding-inline: 18px;
      }

      .hero {
        min-height: auto;
      }

      .hero-grid,
      .podcast-grid,
      .sources-panel,
      .casino-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        max-width: 760px;
      }

      .hero-visual {
        max-width: 760px;
      }

      .intro-grid {
        grid-template-columns: 1fr;
      }

      .quote-card {
        min-height: 310px;
      }

      .journey {
        grid-template-columns: repeat(2, 1fr);
      }

      .journey-item:nth-child(2) {
        border-right: 0;
      }

      .journey-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(243, 231, 234, 0.14);
      }

      .casino-grid {
        gap: 38px;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 32px), var(--container));
      }

      .header-inner {
        min-height: 72px;
      }

      .brand-copy small {
        display: none;
      }

      .hero-grid {
        padding-block: 66px 82px;
        gap: 58px;
      }

      h1 {
        font-size: clamp(3.5rem, 17vw, 5.3rem);
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .hero-visual img {
        min-height: 390px;
        border-radius: 38% 38% 22px 22px;
      }

      .visual-note {
        right: 12px;
        bottom: 18px;
      }

      .strip-grid,
      .expertise-grid,
      .journey,
      .source-links {
        grid-template-columns: 1fr;
      }

      .strip-item {
        min-height: 76px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .strip-item:last-child {
        border-bottom: 0;
      }

      .section {
        padding-block: 82px;
      }

      .section-heading {
        margin-bottom: 38px;
      }

      .expertise-card {
        min-height: 300px;
        padding: 28px;
      }

      .podcast-media::before {
        inset: 10px -9px -10px 9px;
      }

      .journey-item {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(243, 231, 234, 0.14);
      }

      .journey-item:last-child {
        border-bottom: 0;
      }

      .journey-item small {
        margin-bottom: 42px;
      }

      .sources-panel {
        gap: 34px;
      }

      .casino-section {
        padding-block: 68px;
      }

      .footer-inner {
        align-items: flex-start;
      }
    }

    @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;
      }
    }
}

/* Casino Custom Sections styling for Light Wine/Rose Theme */
.casino-card {
    border: 1px solid rgba(125, 34, 72, 0.12) !important;
    background: var(--white) !important;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
    padding: 24px;
}
.casino-card:hover {
    border-color: var(--wine) !important;
    box-shadow: 0 12px 30px rgba(125, 34, 72, 0.08) !important;
    transform: translateY(-4px);
}
.casino-icon {
    color: var(--wine) !important;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.rating-stars {
    color: var(--wine);
    font-size: 1.1rem;
}
.accordion-item {
    background: var(--white) !important;
    border: 1px solid rgba(125, 34, 72, 0.12) !important;
    margin-bottom: 10px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}
.accordion-button {
    background: var(--white) !important;
    color: var(--charcoal) !important;
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    background: var(--blush) !important;
    color: var(--wine) !important;
}
.accordion-body {
    background: var(--paper) !important;
    color: var(--muted) !important;
}

