﻿

:root {
    --page-max: 1140px;
    --page-gutter: 0.75rem;
    --gold: #ffeb3b;
    --amber: #ffa726;
    --green: #4caf50;
    --ink: #0e0e0e;
    --panel: rgba(22, 22, 22, 0.72);
    --line: rgba(255, 235, 59, 0.22);
    --muted: #efebe9;
    --text: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    margin: 0;
    min-height: 100vh;
    padding-bottom: 88px;
    overflow-x: hidden;
    color: var(--text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--ink);
    background-image:
        radial-gradient(900px 420px at 50% -8%, rgba(255, 255, 255, 0.05), transparent 60%),
        linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

body > * {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

h1, h2, h3, h4 {
    margin: 0 0 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--gold);
}

.container,
.pk-wrap {
    width: 100%;
    max-width: var(--page-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}

.container .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row > * {
    width: 100%;
    max-width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.col-12 { width: 100%; }

@media (min-width: 992px) {
    .col-lg-6 { width: 50%; }
}

.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-decoration-none { text-decoration: none; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-5 { padding-top: 2rem; padding-bottom: 2rem; }
.bg-primary { background: #121212; }
.img-fluid { max-width: 100%; height: auto; }
.rounded-2 { border-radius: 2px; }
.rounded-5 { border-radius: 2rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: transform 0.08s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:active { transform: translateY(1px) scale(0.99); }
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1.05rem; }

.btn-primary {
    background: var(--gold);
    color: #1a1a1a;
    box-shadow: 0 6px 16px rgba(253, 216, 53, 0.35);
}

.btn-primary:hover {
    background: #fdd835;
    color: #1a1a1a;
}

.btn-success {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.35);
}

.btn-success:hover {
    background: #45a049;
    color: #fff;
}

header {
    padding: 0.25rem 0;
    background: transparent;
}

header .d-flex {
    align-items: center;
    justify-content: space-between;
}

header img {
    width: 64px;
    height: 64px;
}

.nav-menu {
    max-width: var(--page-max);
    width: 100%;
    margin: 0.25rem auto;
    background: rgba(16, 16, 16, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    z-index: 1000;
    overflow-x: hidden;
}

.nav-menu .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.mobile-nav-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-item {
    display: contents;
}

.nav-link {
    display: block;
    position: relative;
    margin: 0.1rem;
    padding: 0.6rem 1.1rem;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    overflow: visible;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.nav-link.is-current {
    background: rgba(255, 235, 59, 0.12);
    color: var(--gold);
}

.nav-item.active .nav-link {
    background: rgba(255, 235, 59, 0.12);
    color: var(--gold);
}

.nav-link.has-dropdown {
    padding-right: 1.7rem;
}

.nav-link.has-dropdown::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.75rem;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
}

.nav-item.active .nav-link.has-dropdown::after {
    transform: translateY(-20%) rotate(225deg);
}

.dropdown,
.dropdown--wide,
.dropdown--end {
    display: none;
    flex: 1 1 100%;
    order: 20;
    width: 100%;
    min-width: 0;
    margin: 0.15rem 0 0.45rem;
    padding: 0.55rem 0.2rem 0.35rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    overflow: visible;
}

.nav-item.active .dropdown,
.nav-item.active .dropdown--wide,
.nav-item.active .dropdown--end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dropdown-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(25% - 0.5rem);
    min-width: 7.2rem;
    margin: 0;
    padding: 0.72rem 1rem;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item.is-current {
    background: #353535;
    color: var(--gold);
    border-color: rgba(255, 235, 59, 0.28);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 235, 59, 0.28);
    border-radius: 10px;
    background: rgba(255, 235, 59, 0.08);
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-toggle {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.55rem 0.8rem;
}

.mobile-nav-toggle span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .mobile-nav-toggle { display: none !important; }
    .mobile-nav-content { display: flex !important; }
}

@media (max-width: 768px) {
    .nav-menu {
        overflow: hidden;
        margin: 0.35rem auto;
    }

    .mobile-nav-toggle { display: flex; }
    .hamburger { display: flex; }

    .mobile-nav-content {
        display: none;
        width: 100%;
        padding: 0.15rem 0.55rem 0.7rem;
        background: #141414;
        border-top: 1px solid rgba(255, 235, 59, 0.12);
    }

    .mobile-nav-content.show {
        display: flex;
        flex-wrap: wrap;
    }

    .mobile-nav-content .nav-link {
        flex: 1 1 100%;
        margin: 0 0 0.15rem;
        padding: 0.72rem 0.9rem;
        font-size: 0.86rem;
    }

    .mobile-nav-content .nav-link.has-dropdown {
        padding-right: 2.4rem;
    }

    .mobile-nav-content .nav-link.has-dropdown::after {
        right: 1rem;
    }

    .dropdown-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
        white-space: nowrap;
    }
}

.hero-section {
    max-width: var(--page-max);
    width: 100%;
    margin: 1rem auto;
    padding: 1.5rem var(--page-gutter);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.hero-section > .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.hero-section .row { align-items: center; }

.hero-media a { display: block; width: 100%; }
.hero-media img { width: 100%; display: block; }

.hero-copy {
    height: 100%;
    padding: 1.75rem 1.6rem 1.4rem;
    background: linear-gradient(165deg, rgba(28, 28, 28, 0.78) 0%, rgba(12, 12, 12, 0.88) 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-copy .pk-kicker {
    justify-content: flex-start;
    margin-bottom: 0.55rem;
}

.hero-copy h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-lead {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

.hero-offers {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
}

.hero-offers li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff8e1;
    font-size: 0.95rem;
    line-height: 1.45;
}

.hero-offers li:last-child { border-bottom: 0; }

.hero-offers li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.45rem;
    color: var(--gold);
    font-weight: 800;
}

.hero-offers strong { color: var(--gold); }

.hero-copy .btn {
    width: 100%;
    margin-top: 0.15rem;
    background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-copy .btn:hover {
    background: #fdd835;
    color: #1a1a1a;
}

.hero-fine {
    margin: 0.75rem 0 0;
    color: #bcaaa4;
    font-size: 0.78rem;
    line-height: 1.4;
}

.section-title {
    margin-bottom: 0.65rem;
    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ff6f00 0%, #ffa726 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: #e9ecef;
    font-size: 1.05rem;
    opacity: 0.85;
}

.pk-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pk-section {
    padding: 3.25rem 0;
    scroll-margin-top: 1rem;
}

.pk-section + .pk-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pk-head {
    margin-bottom: 2rem;
    text-align: center;
}

.pk-cta { display: inline-flex; margin-top: 0.35rem; }
.pk-center { text-align: center; margin-top: 1.5rem; }

.pk-toc {
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
    padding-top: 1rem;
    padding-bottom: 0.85rem;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.82) 0%, rgba(12, 12, 12, 0.62) 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pk-toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pk-toc-list a {
    display: inline-flex;
    padding: 0.42rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.pk-toc-list a:hover {
    border-color: var(--gold);
    background: rgba(255, 235, 59, 0.16);
    color: var(--gold);
}

.pk-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 1rem;
}

.pk-tile {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    overflow: hidden;
    padding: 1.5rem 1.4rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: var(--panel);
    color: #fff;
    text-decoration: none;
}

.pk-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82) 100%);
}

.pk-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.pk-tile h3 {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.pk-tile p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.pk-tile span {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pk-tile--lg { grid-column: span 7; grid-row: span 2; min-height: 340px; }
.pk-tile--md { grid-column: span 5; min-height: 160px; }
.pk-tile--sm { grid-column: span 4; }

.pk-tile:hover {
    border-color: rgba(255, 235, 59, 0.45);
    transform: translateY(-3px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pk-studio {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
}

.pk-studio-copy {
    padding: 2rem;
    background: linear-gradient(160deg, #1c1c1c 0%, #111 100%);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.pk-studio-copy h3 { color: var(--gold); font-weight: 800; margin-bottom: 0.85rem; }
.pk-studio-copy p { color: var(--muted); line-height: 1.75; }

.pk-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.1rem 0 1.4rem;
}

.pk-chip {
    padding: 0.32rem 0.75rem;
    border: 1px solid rgba(255, 235, 59, 0.28);
    border-radius: 999px;
    background: rgba(255, 235, 59, 0.12);
    color: #fffde7;
    font-size: 0.8rem;
    font-weight: 600;
}

.pk-tables { display: grid; gap: 0.75rem; }

.pk-table-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.95rem 1rem;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.pk-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.22);
}

.pk-table-row h4 { margin: 0; font-size: 1rem; }
.pk-table-row p { margin: 0.2rem 0 0; color: #d7ccc8; font-size: 0.82rem; }
.pk-stake { color: var(--gold); font-size: 0.78rem; font-weight: 700; white-space: nowrap; }

.pk-jackpot-board,
.pk-rail,
.pk-corridor,
.pk-timeline,
.pk-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.pk-pot,
.pk-rail-card,
.pk-pipe,
.pk-year,
.pk-step,
.pk-panel,
.pk-tier,
.pk-tool,
.pk-faq details {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.pk-pot {
    padding: 1.35rem 1.2rem 1.25rem;
    text-align: center;
    border-color: var(--line);
}

.pk-pot h3 {
    margin-bottom: 0.55rem;
    color: #ffe082;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pk-amount {
    margin-bottom: 0.85rem;
    font-size: 1.55rem;
    font-weight: 800;
}

.pk-meter {
    height: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
}

.pk-meter > i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff6f00, #ffeb3b);
}

.pk-pot small {
    display: block;
    margin-top: 0.7rem;
    color: #d7ccc8;
    font-size: 0.78rem;
}

.pk-jackpot-note {
    margin-top: 1.25rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.pk-rail-card,
.pk-pipe,
.pk-year,
.pk-step {
    padding: 1.4rem 1.2rem;
}

.pk-rail-card b {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin-bottom: 0.85rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6f00, #ffeb3b);
    color: #111;
    font-size: 0.85rem;
}

.pk-rail-card h3,
.pk-pipe h3,
.pk-year h3,
.pk-step h3,
.pk-panel h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.pk-pipe h3,
.pk-year h3 { color: var(--gold); }

.pk-rail-card p,
.pk-pipe p,
.pk-pipe li,
.pk-year p,
.pk-step p,
.pk-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.pk-pipe ul { margin: 0.6rem 0 0; padding-left: 1.1rem; }
.pk-pipe li { margin-bottom: 0.45rem; }

.pk-corridor { grid-template-columns: repeat(3, 1fr); }

.pk-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.pk-panel {
    padding: 1.6rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pk-panel img {
    width: 100%;
    max-height: 180px;
    margin-bottom: 1rem;
    object-fit: cover;
    border-radius: 14px;
}

.pk-match-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pk-match-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
}

.pk-match-list li:last-child { border-bottom: 0; }
.pk-odd { color: var(--gold); font-weight: 700; white-space: nowrap; }

.pk-vip,
.pk-tools {
    display: grid;
    gap: 0.85rem;
}

.pk-vip { grid-template-columns: repeat(5, 1fr); }
.pk-tools { grid-template-columns: repeat(3, 1fr); margin-bottom: 1.1rem; }

.pk-tier {
    padding: 1.2rem 0.9rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.22);
}

.pk-tier h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.pk-tier p { margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.pk-tier--1 { border-color: #bcaaa4; }
.pk-tier--2 { border-color: #b0bec5; }
.pk-tier--3 { border-color: #ffd54f; background: rgba(255, 213, 79, 0.08); }
.pk-tier--4 { border-color: #ce93d8; background: rgba(206, 147, 216, 0.08); }
.pk-tier--5 { border-color: #64b5f6; background: rgba(100, 181, 246, 0.1); }

.pk-steps { counter-reset: pkstep; }
.pk-step { counter-increment: pkstep; }
.pk-step::before {
    content: counter(pkstep, decimal-leading-zero);
    display: block;
    margin-bottom: 0.55rem;
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 800;
}

.pk-year { border-left: 4px solid var(--amber); }

.pk-faq { display: grid; gap: 0.75rem; }

.pk-faq details {
    overflow: hidden;
    border-color: rgba(255, 167, 38, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pk-faq summary {
    padding: 1.1rem 1.25rem;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.pk-faq summary::-webkit-details-marker { display: none; }
.pk-faq details[open] summary { border-bottom: 1px solid rgba(255, 167, 38, 0.18); }

.pk-faq-body {
    padding: 1rem 1.25rem 1.2rem;
    color: var(--muted);
    line-height: 1.75;
}

.pk-faq-body p { margin: 0 0 0.7rem; }
.pk-faq-body p:last-child { margin-bottom: 0; }

.pk-tool { padding: 1.15rem 1.1rem; background: rgba(33, 150, 243, 0.08); border-color: rgba(33, 150, 243, 0.28); }
.pk-tool h3 { margin-bottom: 0.4rem; color: #90caf9; font-size: 1rem; }
.pk-tool p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

.pk-helpbox {
    padding: 1.25rem 1.35rem;
    background: rgba(244, 67, 54, 0.12);
    border: 1px solid rgba(244, 67, 54, 0.35);
    border-radius: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.pk-helpbox strong { color: var(--gold); }

.site-footer {
    width: 100%;
    margin-top: 2rem;
    padding: 2.5rem 0 1.4rem;
    background: rgba(12, 12, 12, 0.88);
    border-top: 1px solid rgba(255, 235, 59, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) 2fr;
    gap: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    display: block;
    width: 72px;
    height: 72px;
    margin-bottom: 0.85rem;
}

.footer-brand p {
    max-width: 32ch;
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.footer-badges span {
    padding: 0.22rem 0.6rem;
    border: 1px solid rgba(255, 235, 59, 0.28);
    border-radius: 999px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

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

.footer-col h3 {
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    margin: 0 0 0.45rem;
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-legal {
    padding: 1.25rem 0 0.85rem;
}

.footer-legal p {
    margin: 0 0 0.85rem;
    color: #bdbdbd;
    font-size: 0.82rem;
    line-height: 1.65;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.15rem;
}

.footer-legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-legal-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-copy {
    margin: 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #9e9e9e;
    font-size: 0.78rem;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 640px) {
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 1.1rem 0.75rem;
    }
}

#politica-privacidade,
#termos-condicoes {
    max-width: var(--page-max);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .pk-tile--lg,
    .pk-tile--md,
    .pk-tile--sm {
        grid-column: span 12;
        min-height: 200px;
    }

    .pk-studio,
    .pk-split { grid-template-columns: 1fr; }

    .pk-jackpot-board,
    .pk-rail,
    .pk-corridor,
    .pk-vip,
    .pk-steps,
    .pk-timeline,
    .pk-tools { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-section { text-align: center; padding: 1.25rem var(--page-gutter); }
    .hero-copy { margin-top: 1.15rem; padding: 1.25rem 1.1rem 1.15rem; text-align: left; }
    .hero-copy h1 { font-size: 1.55rem; }
    .pk-section { padding: 2.2rem 0; }
}

@media (max-width: 640px) {
    .pk-jackpot-board,
    .pk-rail,
    .pk-corridor,
    .pk-vip,
    .pk-steps,
    .pk-timeline,
    .pk-tools { grid-template-columns: 1fr; }

    .pk-table-row { grid-template-columns: auto 1fr; }
    .pk-stake { grid-column: 2; }
}

body.dock-off {
    padding-bottom: 0;
}

.dock-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    padding: 10px 12px 12px;
    background: rgba(10, 10, 10, 0.94);
    border-top: 1px solid rgba(255, 235, 59, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
}

.dock-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    padding: 0 0 8px 8px;
    border: 0;
    border-radius: 0 0 0 100%;
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.35);
}

.dock-close:hover {
    background: linear-gradient(135deg, #ffeb3b 0%, #ff6f00 100%);
    color: #111;
}

.dock-inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 8px;
    max-width: var(--page-max);
    margin: 0 auto;
    padding-right: 28px;
}

.dock-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.45rem 0.7rem;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.dock-btn strong {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.dock-btn span {
    margin-top: 0.12rem;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.92;
}

.dock-btn--reg {
    background: linear-gradient(135deg, #ff6f00 0%, #ffeb3b 55%, #fdd835 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 22px rgba(255, 193, 7, 0.4);
    animation: dockPulse 1.6s ease-in-out infinite;
}

.dock-btn--reg::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
    animation: dockShine 2.2s ease-in-out infinite;
}

.dock-btn--login {
    background: #2b2b2b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.dock-btn--login:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@keyframes dockPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 22px rgba(255, 193, 7, 0.35); }
    50% { transform: scale(1.03); box-shadow: 0 12px 28px rgba(255, 193, 7, 0.55); }
}

@keyframes dockShine {
    0% { left: -40%; }
    60%, 100% { left: 120%; }
}

@media (max-width: 480px) {
    .dock-btn strong { font-size: 0.95rem; }
    .dock-btn span { font-size: 0.68rem; }
    .dock-inner { padding-right: 22px; }
}
