:root {
    --bg: #181819;
    --panel: #202022;
    --panel-2: #27262b;
    --text: #fcfbff;
    --muted: #c1bec5;
    --soft: #88878c;
    --green: #01be72;
    --yellow: #ffcc29;
    --purple: #a688ff;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --page: min(1180px, calc(100vw - 40px));
    --display-font: "Rajdhani", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: 104px;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--muted);
    background: var(--bg);
    line-height: 1.62;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 18px;
}

h1,
h2,
h3 {
    margin: 0 0 20px;
    font-family: var(--display-font);
    font-weight: 700;
    color: var(--text);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(30px, 4vw, 34px);
}

h2 {
    font-size: clamp(28px, 3.5vw, 34px);
}

h3 {
    font-size: clamp(26px, 3vw, 34px);
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 100;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    color: #111;
    background: var(--yellow);
    clip: auto;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(24, 24, 25, 0.78), rgba(24, 24, 25, 0));
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(24, 24, 25, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.nav-shell {
    width: min(1280px, calc(100vw - 40px));
    min-height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 70px;
    height: 70px;
}

.header-play {
    display: none;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 8px;
    padding: 0 18px;
    color: #101113;
    background: var(--green);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(1, 190, 114, 0.22);
}

.header-play::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #101113;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--display-font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.primary-menu a {
    color: var(--text);
}

.primary-menu a:hover {
    color: var(--yellow);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.hero {
    position: relative;
    height: clamp(620px, 56.25vw, 860px);
    min-height: 620px;
    display: grid;
    place-items: end center;
    overflow: hidden;
    isolation: isolate;
    background: #101013;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    height: 35%;
    background: linear-gradient(0deg, var(--bg), rgba(24, 24, 25, 0));
}

.hero-bg,
.hero-bg img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-parts,
.hero-bottle {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-parts {
    z-index: 1;
}

.hero-bottle {
    z-index: 2;
    animation: floatX 6s ease-in-out infinite alternate;
}

.hero-title {
    position: relative;
    z-index: 3;
    width: min(1080px, 78vw);
    max-height: 310px;
    margin-bottom: 118px;
    object-fit: contain;
    animation: floatY 5.5s ease-in-out infinite alternate;
}

.hero-button {
    position: absolute;
    z-index: 5;
    bottom: 162px;
    left: 50%;
    transform: translateX(-50%);
}

.play-button,
.secondary-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 0 28px;
    font-weight: 800;
    color: #101113;
    background: var(--green);
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(1, 190, 114, 0.22);
}

.play-button:hover {
    filter: brightness(1.08);
}

.secondary-button {
    color: #181819;
    background: #f3f2f7;
    box-shadow: none;
}

.section {
    width: var(--page);
    margin: 0 auto;
    padding: 64px 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
}

.copy {
    max-width: 680px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.media-frame,
.poster-card,
.panel,
.casino-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.media-frame {
    width: min(100%, 390px);
    justify-self: center;
}

.media-frame video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.poster-card {
    justify-self: center;
    width: min(100%, 390px);
    background: transparent;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 531 / 825;
    object-fit: cover;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-grid div {
    padding: 18px;
    border-right: 1px solid var(--line);
}

.stat-grid div:last-child {
    border-right: 0;
}

.stat-grid span,
.casino-card span,
.spec-grid dt {
    display: block;
    color: var(--soft);
    font-size: 14px;
}

.stat-grid strong,
.spec-grid dd {
    color: var(--text);
    font-weight: 800;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.two-panel {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 28px;
}

.panel {
    padding: 34px;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-weight: 800;
}

.feature-list img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.spec-grid div {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.spec-grid dd {
    margin: 2px 0 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-heading p:last-child {
    margin-bottom: 0;
    color: var(--soft);
}

.blog-preview {
    padding-top: 38px;
}

.home-blog-layout {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.blog-feature-card,
.blog-mini-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.blog-feature-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 100%;
    padding: 18px;
    background:
        radial-gradient(circle at 22% 16%, rgba(0, 201, 125, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(255, 214, 78, 0.14), transparent 44%),
        var(--panel);
}

.blog-feature-card::after {
    content: "";
    position: absolute;
    right: -64px;
    bottom: -92px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 214, 78, 0.24);
    border-radius: 50%;
    pointer-events: none;
}

.blog-mini-card {
    min-height: 100%;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)), var(--panel);
}

.blog-feature-card img,
.blog-mini-card img,
.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    filter: saturate(1.08) contrast(1.04);
}

.blog-feature-card:hover,
.blog-mini-card:hover {
    border-color: rgba(255, 214, 78, 0.58);
    transform: translateY(-2px);
}

.blog-feature-card h3 {
    max-width: 470px;
    margin: 0;
    font-size: 31px;
    line-height: 1.04;
}

.blog-feature-card p {
    max-width: 520px;
    margin: 0;
    color: var(--soft);
    font-size: 17px;
}

.blog-mini-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.12;
}

.blog-mini-card p {
    margin: 0;
    color: var(--soft);
    font-size: 15px;
}

.blog-kicker {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    color: var(--yellow);
    font-weight: 800;
}

.blog-mini-card small {
    margin-top: auto;
    color: var(--yellow);
    font-weight: 800;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.blog-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 214, 78, 0.08), transparent 42%),
        var(--panel);
    color: var(--text);
    box-shadow: var(--shadow);
}

.blog-card:hover {
    border-color: rgba(255, 214, 78, 0.58);
    transform: translateY(-2px);
}

.blog-card span {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.12;
}

.blog-card p {
    margin: 0;
    color: var(--soft);
    font-size: 16px;
}

.blog-card small {
    margin-top: auto;
    color: var(--yellow);
    font-weight: 800;
}

.blog-all-link {
    width: max-content;
    margin-top: 18px;
}

.blog-page {
    padding-top: 94px;
}

.blog-index-hero {
    max-width: 900px;
    padding-bottom: 32px;
    text-align: center;
}

.blog-index-hero h1 {
    margin-right: auto;
    margin-left: auto;
}

.blog-index-hero p:last-child {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: var(--soft);
}

.blog-listing {
    padding-top: 22px;
}

.blog-listing .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-shell {
    width: min(100vw - 48px, 1120px);
    margin: 0 auto;
    padding: 34px 0 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--soft);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--yellow);
}

.article-hero {
    max-width: 850px;
    margin-bottom: 34px;
}

.article-hero p:not(.eyebrow) {
    color: var(--soft);
    font-size: 19px;
}

.article-cover {
    margin: 26px 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.article-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.article-meta span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-size: 14px;
    font-weight: 700;
}

.article-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.article-toc {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.article-toc strong {
    color: var(--green);
}

.article-toc a {
    color: var(--soft);
    font-size: 15px;
}

.article-toc a:hover {
    color: var(--yellow);
}

.article-body {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.article-body section + section {
    margin-top: 34px;
}

.article-body h2 {
    margin-bottom: 14px;
}

.article-body p {
    color: var(--soft);
    font-size: 18px;
}

.article-body a {
    color: var(--yellow);
    font-weight: 800;
}

.article-faq details {
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.16);
}

.article-faq summary {
    padding: 14px 16px;
    color: var(--text);
    font-weight: 800;
}

.article-faq p {
    padding: 0 16px 16px;
    margin: 0;
}

.related-posts {
    padding-top: 28px;
}

.related-posts .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-section {
    max-width: 960px;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 10px;
    text-align: left;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--text);
    font-weight: 800;
}

.faq-list p {
    padding: 0 20px 18px;
}

.where-section {
    width: min(1120px, calc(100vw - 40px));
    padding: 40px 34px 34px;
    border-radius: 8px;
    background: #202020;
}

.where-section h2 {
    margin-bottom: 22px;
}

.where-section p {
    margin-bottom: 28px;
    color: #d9d3ea;
    font-size: 22px;
    line-height: 1.45;
}

.where-section a {
    color: var(--yellow);
}

.casino-card {
    display: grid;
    grid-template-columns: 225px minmax(260px, 1fr) auto;
    gap: 34px;
    align-items: center;
    min-height: 226px;
    padding: 0 72px 0 0;
    border-color: rgba(255, 255, 255, 0.16);
    background: #181819;
    box-shadow: none;
}

.casino-logo {
    align-self: stretch;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
    background: #101820;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px 18px;
}

.casino-offer {
    text-align: center;
}

.casino-offer strong {
    display: block;
    margin-bottom: 22px;
    color: var(--green);
    font-family: var(--display-font);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: none;
}

.casino-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: #eee7ff;
    font-size: 18px;
    line-height: 1.2;
}

.casino-meta span + span {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.casino-meta b {
    color: var(--text);
}

.casino-meta span:last-child b {
    color: var(--green);
}

.casino-card > .play-button {
    min-width: 158px;
    min-height: 62px;
    border-radius: 14px;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    text-transform: none;
    box-shadow: none;
}

.partner-section {
    max-width: 940px;
    text-align: center;
}

.partner-section a {
    color: var(--yellow);
    font-weight: 800;
}

.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    margin-top: 40px;
    padding: 34px max(20px, calc((100vw - 1180px) / 2)) 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    align-items: end;
    background: linear-gradient(90deg, rgba(24, 24, 25, 0.92), rgba(24, 24, 25, 0.28)), url("../img/hero-bg.jpg") center/cover;
}

.cta-section > div {
    align-self: center;
    padding-bottom: 34px;
}

.cta-section img {
    justify-self: end;
    width: min(100%, 390px);
    max-height: 250px;
    object-fit: contain;
    object-position: bottom right;
}

.site-footer {
    padding: 22px;
    text-align: center;
    color: var(--soft);
    background: #141415;
}

.site-footer p {
    margin: 0;
}

.sticky-cta {
    position: fixed;
    z-index: 80;
    right: max(20px, calc((100vw - 1120px) / 2));
    bottom: 18px;
    left: max(20px, calc((100vw - 1120px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 72px;
    padding: 12px 14px 12px 22px;
    border: 1px solid rgba(255, 204, 41, 0.22);
    border-radius: 8px;
    background: rgba(24, 24, 25, 0.9);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42), 0 0 32px rgba(255, 204, 41, 0.08);
    backdrop-filter: blur(14px);
}

.sticky-cta::before {
    content: "";
    width: 9px;
    align-self: stretch;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green), var(--yellow));
}

.sticky-cta-copy {
    min-width: 0;
    flex: 1;
}

.sticky-cta-copy strong {
    display: block;
    color: var(--text);
    font-family: var(--display-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;
}

.sticky-cta-copy span {
    display: block;
    margin-top: 2px;
    color: #d9d3ea;
    font-size: 14px;
}

.sticky-cta .play-button {
    position: relative;
    gap: 8px;
    min-width: 142px;
    min-height: 48px;
    color: #15120b;
    background: transparent;
    box-shadow: 0 12px 28px rgba(255, 204, 41, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.12);
    overflow: hidden;
    isolation: isolate;
}

.sticky-cta .play-button::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 150%;
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    background: conic-gradient(#ffcc29, #ffffff, #01be72, #a688ff, #ffcc29);
    pointer-events: none;
    animation: bonusBorderSpin 1.8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 204, 41, 0.55));
    transform-origin: center;
}

.sticky-cta .play-button::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 3px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ffcc29 0%, #ffe783 44%, #01be72 100%);
    pointer-events: none;
}

.bonus-icon {
    content: "";
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 4px;
    background:
        linear-gradient(90deg, transparent 0 7px, #15120b 7px 10px, transparent 10px),
        linear-gradient(transparent 0 7px, #15120b 7px 10px, transparent 10px),
        #fff5cc;
    box-shadow: inset 0 0 0 2px #15120b;
}

.bonus-text {
    position: relative;
    z-index: 2;
}

@keyframes floatY {
    from { transform: translateY(-8px); }
    to { transform: translateY(8px); }
}

@keyframes floatX {
    from { transform: translateX(-4px); }
    to { transform: translateX(4px); }
}

@keyframes mobileBottleFloat {
    from { transform: translate(-50%, -50%) translateY(-5px); }
    to { transform: translate(-50%, -50%) translateY(7px); }
}

@keyframes bonusBorderSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 980px) {
    .nav-shell {
        justify-content: space-between;
    }

    .header-play {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }

    .primary-menu {
        display: none;
    }

    .split,
    .split.reverse,
    .two-panel,
    .article-layout,
    .cta-section {
        grid-template-columns: 1fr;
    }

    .blog-grid,
    .home-blog-layout,
    .blog-listing .blog-grid,
    .related-posts .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-feature-card {
        grid-column: span 2;
    }

    .article-toc {
        position: static;
    }

    .media-frame {
        width: min(100%, 380px);
        margin: 0 auto;
    }

    .casino-card {
        grid-template-columns: 1fr;
        padding: 0 22px 26px;
        gap: 24px;
        text-align: center;
    }

    .casino-logo {
        min-height: 190px;
        margin: 0 -22px;
        border-radius: 8px 8px 0 0;
    }

    .casino-card > .play-button {
        justify-self: center;
    }
}

@media (max-width: 640px) {
    :root {
        --page: min(100vw - 32px, 1180px);
    }

    body {
        padding-bottom: 112px;
        line-height: 1.54;
    }

    h1,
    h2,
    h3 {
        margin-bottom: 14px;
        line-height: 1.08;
    }

    p {
        margin-bottom: 14px;
    }

    .nav-shell {
        width: min(100vw - 28px, 1280px);
        min-height: 68px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .header-play {
        min-height: 38px;
        padding: 0 14px;
        font-size: 11.5px;
        white-space: nowrap;
    }

    .hero {
        height: 430px;
        min-height: 430px;
        place-items: end center;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 4;
        pointer-events: none;
        background:
            linear-gradient(180deg, rgba(16, 16, 19, 0.02), rgba(16, 16, 19, 0.18) 38%, rgba(16, 16, 19, 0.72) 100%),
            radial-gradient(circle at 50% 38%, rgba(255, 204, 41, 0.16), rgba(255, 204, 41, 0) 34%);
    }

    .hero::after {
        z-index: 5;
        height: 10%;
    }

    .hero-bg img {
        object-position: center top;
    }

    .hero-parts {
        display: block;
        z-index: 1;
        width: 150%;
        max-width: none;
        height: 150%;
        left: 50%;
        top: 45%;
        opacity: 0.72;
        object-fit: contain;
        transform: translate(-50%, -50%);
    }

    .hero-bottle {
        display: block;
        z-index: 2;
        width: 172%;
        max-width: none;
        height: 172%;
        left: 50%;
        top: 43%;
        object-fit: contain;
        object-position: center;
        animation: mobileBottleFloat 5.5s ease-in-out infinite alternate;
    }

    .hero-title {
        display: block;
        position: absolute;
        z-index: 6;
        bottom: 36px;
        left: 50%;
        width: min(92vw, 430px);
        max-width: none;
        max-height: 118px;
        margin: 0;
        object-fit: contain;
        animation: none;
        transform: translateX(-50%);
    }

    .hero-button {
        display: none;
    }

    .section {
        padding: 32px 0;
    }

    .split,
    .split.reverse {
        gap: 28px;
    }

    .media-frame,
    .poster-card {
        width: min(100%, 330px);
    }

    .media-frame {
        order: 2;
    }

    #about-the-game .copy {
        order: 1;
        margin-top: -30px;
    }

    .button-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .play-button,
    .secondary-button {
        width: 100%;
        min-height: 50px;
        padding: 0 20px;
    }

    .stat-grid,
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-grid div:last-child {
        border-bottom: 0;
    }

    .panel {
        padding: 22px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .blog-preview {
        padding-top: 22px;
    }

    .blog-grid,
    .home-blog-layout,
    .blog-listing .blog-grid,
    .related-posts .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-feature-card {
        grid-column: auto;
        min-height: 0;
        padding: 22px;
    }

    .blog-feature-card h3 {
        font-size: 28px;
    }

    .blog-mini-card {
        min-height: 0;
        padding: 18px;
    }

    .blog-card {
        min-height: 0;
        padding: 20px;
    }

    .blog-card h2,
    .blog-card h3 {
        font-size: 22px;
    }

    .blog-all-link {
        width: 100%;
    }

    .blog-page {
        padding-top: 76px;
    }

    .blog-index-hero {
        padding-bottom: 16px;
        text-align: left;
    }

    .article-shell {
        width: var(--page);
        padding-top: 22px;
    }

    .article-hero {
        margin-bottom: 24px;
    }

    .article-hero p:not(.eyebrow),
    .article-body p {
        font-size: 16px;
    }

    .article-meta span {
        width: 100%;
        border-radius: 8px;
    }

    .article-toc,
    .article-body {
        padding: 18px;
    }

    .feature-list li,
    .spec-grid div {
        padding: 13px;
    }

    .faq-list summary {
        padding: 16px;
    }

    .faq-list p {
        padding: 0 16px 16px;
    }

    .where-section {
        width: min(100vw - 28px, 1120px);
        padding: 26px 16px 20px;
    }

    .where-section p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .casino-card {
        min-height: 0;
        padding: 0 16px 20px;
        gap: 18px;
    }

    .casino-logo {
        min-height: 154px;
        margin: 0 -16px;
    }

    .casino-logo img {
        padding: 20px 14px;
    }

    .casino-offer strong {
        margin-bottom: 14px;
        font-size: 28px;
    }

    .casino-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 16px;
    }

    .casino-meta span + span {
        padding-left: 0;
        border-left: 0;
    }

    .cta-section {
        min-height: auto;
        margin-top: 24px;
        padding: 30px 20px 0;
        text-align: center;
    }

    .cta-section > div {
        padding-bottom: 20px;
    }

    .cta-section .play-button {
        width: min(250px, 100%);
        margin: 0 auto;
    }

    .cta-section img {
        width: min(100%, 260px);
        max-height: 180px;
        margin: 0 auto;
        object-position: bottom center;
    }

    .site-footer {
        padding: 18px 16px;
        font-size: 14px;
    }

    .sticky-cta {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 76px;
        padding: 10px;
        gap: 10px;
        border-radius: 8px;
    }

    .sticky-cta::before {
        display: none;
    }

    .sticky-cta-copy strong {
        font-size: 16px;
        white-space: nowrap;
    }

    .sticky-cta-copy span {
        display: none;
    }

    .sticky-cta .play-button {
        width: auto;
        min-width: 148px;
        min-height: 52px;
        padding: 0 14px;
        font-size: 12px;
        line-height: 1.1;
        white-space: nowrap;
    }
}
