:root {
    --bg-deep: #0a0a0f;
    --bg-surface: #111118;
    --bg-card: #16161f;
    --bg-elevated: #1c1c28;
    --gold: #d4a843;
    --gold-light: #f0d27a;
    --gold-dim: #9a7a2e;
    --accent-fire: #e85d3a;
    --accent-water: #3a8ee8;
    --accent-dark: #8a3ee8;
    --accent-earth: #4ebd6b;
    --text-primary: #e8e4db;
    --text-secondary: #9e9a90;
    --text-muted: #6b675e;
    --border: #2a2a36;
    --border-gold: rgba(212, 168, 67, 0.25);
    --radius: 6px;
    --radius-lg: 12px;
    --font-display: 'Cinzel', serif;
    --font-body: 'Crimson Text', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;
    --max-w: 1200px;
    --gutter: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.nav-bar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px var(--gutter) 80px;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.p1 { width: 4px; height: 4px; background: var(--gold); top: 20%; left: 10%; animation-delay: 0s; }
.p2 { width: 3px; height: 3px; background: var(--accent-fire); top: 40%; left: 80%; animation-delay: 1.5s; }
.p3 { width: 5px; height: 5px; background: var(--accent-water); top: 70%; left: 25%; animation-delay: 3s; }
.p4 { width: 3px; height: 3px; background: var(--accent-dark); top: 15%; left: 65%; animation-delay: 4.5s; }
.p5 { width: 4px; height: 4px; background: var(--accent-earth); top: 55%; left: 50%; animation-delay: 2s; }
.p6 { width: 3px; height: 3px; background: var(--gold-light); top: 80%; left: 70%; animation-delay: 5.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-40px) scale(1.4); opacity: 1; }
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.3);
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg-deep);
    padding: 16px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.25);
}

.hero-cta:hover {
    background: var(--gold-light);
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.35);
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.badge-item {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 3px;
}

.hero-visual {
    flex: 0 0 380px;
    position: relative;
    z-index: 2;
}

.hero-img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.responsible-strip {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px var(--gutter);
}

.responsible-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.responsible-strip p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section-heading {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.section-heading.light {
    color: #fff;
}

.section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 56px;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.6);
}

.rules-section {
    padding: 100px 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rule-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
}

.rule-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.rule-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gold);
}

.rule-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.5;
}

.rule-card h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}

.rule-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.principles-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.principles-bg {
    position: absolute;
    inset: 0;
    background: url('../res/magic-bg.webp') center/cover no-repeat;
}

.principles-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.88);
}

.principles-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.principles-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.principle-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-left: 3px solid var(--gold-dim);
    background: rgba(22, 22, 31, 0.6);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    backdrop-filter: blur(4px);
}

.principle-marker {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
    min-width: 32px;
    text-align: center;
    padding-top: 2px;
}

.principle-item h3 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 6px;
}

.principle-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.articles-section {
    padding: 100px 0;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.article-card {
    display: flex;
    gap: 40px;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}

.article-card:hover {
    border-color: var(--border-gold);
}

.article-card.reverse {
    flex-direction: row-reverse;
}

.article-img-wrap {
    flex: 0 0 380px;
    min-height: 280px;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    flex: 1;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-water);
    margin-bottom: 12px;
}

.article-card:last-child .article-tag {
    color: var(--accent-dark);
}

.article-body h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.article-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-link {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
}

.article-link:hover {
    color: var(--gold-light);
}

.article-link i {
    margin-left: 6px;
    font-size: 11px;
}

.services-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-block {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.2s;
}

.service-block:hover {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    font-size: 22px;
    color: var(--gold);
}

.service-block h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 10px;
}

.service-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-member {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    transition: border-color 0.3s;
}

.team-member:hover {
    border-color: var(--border-gold);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 2px solid var(--border-gold);
}

.team-member h3 {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.reviews-section {
    padding: 100px 0;
    background: var(--bg-surface);
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) var(--bg-card);
}

.reviews-track::-webkit-scrollbar {
    height: 6px;
}

.reviews-track::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 3px;
}

.reviews-track::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

.review-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-stars .fa-regular {
    color: var(--text-muted);
}

.review-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.review-name {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-primary);
}

.review-detail {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text-primary);
    transition: color 0.2s;
    user-select: none;
}

.faq-q:hover {
    color: var(--gold);
}

.faq-arrow {
    font-size: 12px;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-block.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-block.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-a p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-top .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-col p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-responsible {
    border-top: 1px solid var(--border);
    padding: 28px 0;
}

.responsible-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.responsible-text strong {
    color: var(--gold);
}

.footer-regulators {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.regulator-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.regulator-logos a {
    display: block;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.regulator-logos a:hover {
    opacity: 0.9;
}

.regulator-logos img {
    height: 36px;
    width: auto;
    filter: grayscale(1) brightness(1.8);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.age-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.age-popup.visible {
    display: flex;
}

.age-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.age-popup-box {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
}

.age-popup-box h2 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.age-popup-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.age-btn {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg-deep);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s;
}

.age-btn:hover {
    background: var(--gold-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    display: none;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-gold);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner.visible {
    display: block;
}

.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px var(--gutter);
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-links {
    display: flex;
    gap: 16px;
}

.cookie-links a {
    font-size: 12px;
    color: var(--gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.cookie-accept-btn {
    background: var(--gold);
    color: var(--bg-deep);
}

.cookie-accept-btn:hover {
    background: var(--gold-light);
}

.cookie-decline-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cookie-decline-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.cookie-settings-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
}

.cookie-settings-btn:hover {
    background: rgba(212, 168, 67, 0.1);
}

.cookie-settings-panel {
    position: fixed;
    inset: 0;
    z-index: 600;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-settings-panel.visible {
    display: flex;
}

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.cookie-settings-box {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    max-width: 480px;
    width: 90%;
}

.cookie-settings-box h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    gap: 20px;
}

.cookie-option strong {
    font-size: 15px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 3px;
}

.cookie-option p {
    font-size: 13px;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: var(--border);
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--text-secondary);
    top: 3px;
    left: 3px;
    transition: transform 0.3s, background 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gold-dim);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
    background: var(--gold);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
}

.subpage-hero {
    padding: 140px var(--gutter) 60px;
    text-align: center;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

.subpage-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.subpage-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.subpage-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.subpage-hero p {
    font-size: 16px;
    color: var(--text-secondary);
}

.subpage-body {
    padding: 60px var(--gutter) 80px;
}

.subpage-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-block p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.principles-page-block {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 48px;
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold-dim);
}

.ppb-marker {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    min-width: 40px;
    text-align: center;
    padding-top: 4px;
}

.ppb-body h2 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ppb-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.game-body {
    background: var(--bg-deep);
}

.game-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px var(--gutter) 60px;
}

.game-container {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.game-header {
    text-align: center;
    padding: 32px 24px 20px;
    border-bottom: 1px solid var(--border);
}

.game-title {
    font-size: 28px;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
    margin-bottom: 4px;
}

.game-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.game-subtitle i {
    margin: 0 6px;
}

.dot-sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    vertical-align: middle;
    margin: 0 8px;
}

.game-top-bar {
    display: flex;
    gap: 1px;
    background: var(--border);
}

.stat-box {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    background: var(--bg-card);
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.points-box .stat-value {
    color: var(--gold);
}

.result-win {
    color: var(--gold);
}

.result-loss {
    color: var(--accent-fire);
}

@keyframes winPulse {
    0%, 100% { background: var(--bg-card); }
    50% { background: rgba(212, 168, 67, 0.1); }
}

.win-flash {
    animation: winPulse 0.6s ease 3;
}

.slot-machine {
    padding: 24px 20px;
}

.slot-frame {
    position: relative;
    background: var(--bg-deep);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 67, 0.08);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.slot-reel {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slot-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    user-select: none;
    overflow: hidden;
}

.slot-cell img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    pointer-events: none;
}

.slot-cell.win-cell {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    animation: cellWin 0.4s ease 2;
}

@keyframes cellWin {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.reel-spin .slot-cell {
    animation: reelBlur 0.15s linear infinite;
}

@keyframes reelBlur {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}

.game-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 20px 24px;
}

.bet-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 12px;
}

.bet-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 4px;
}

.bet-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.bet-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
}

.bet-value {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    min-width: 60px;
    text-align: center;
    font-weight: 700;
}

.spin-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: var(--bg-deep);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}

.spin-btn:hover {
    background: rgba(212, 168, 67, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.35);
}

.spin-btn:active {
    transform: scale(0.97);
}

.spin-btn.spinning {
    pointer-events: none;
    opacity: 0.6;
}

.spin-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.max-bet-btn {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.max-bet-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.game-rules-strip {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    background: var(--bg-card);
}

.game-rules-inner h3 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
}

.game-rules-inner p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 40px;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-visual {
        flex: none;
        max-width: 340px;
        margin: 0 auto;
    }

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

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

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

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

    .article-card,
    .article-card.reverse {
        flex-direction: column;
    }

    .article-img-wrap {
        flex: none;
        min-height: 200px;
        max-height: 240px;
    }
}

@media (max-width: 768px) {
    :root {
        --gutter: 18px;
    }

    body {
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right 0.3s;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 15px;
    }

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

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

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

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

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .reviews-track {
        padding-left: var(--gutter);
    }

    .review-card {
        flex: 0 0 300px;
    }

    .footer-top .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .regulator-logos {
        gap: 24px;
        flex-wrap: wrap;
    }

    .subpage-hero {
        padding: 110px var(--gutter) 40px;
    }

    .principles-page-block {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }

    .ppb-marker {
        min-width: auto;
    }

    .game-wrapper {
        padding-top: 80px;
    }

    .game-title {
        font-size: 22px;
    }

    .slot-cell {
        font-size: 20px;
    }

    .spin-btn {
        width: 64px;
        height: 64px;
    }

    .spin-text {
        font-size: 12px;
    }

    .game-controls {
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-tagline {
        font-size: 17px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 13px;
    }

    .hero-visual {
        max-width: 260px;
    }

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

    .section-heading {
        font-size: 28px;
    }

    .rule-card {
        padding: 28px 20px;
    }

    .article-body {
        padding: 24px 20px;
    }

    .review-card {
        flex: 0 0 270px;
        padding: 24px 20px;
    }

    .age-popup-box {
        padding: 36px 24px;
    }

    .cookie-settings-box {
        padding: 28px 20px;
    }

    .slot-cell {
        font-size: 16px;
    }

    .slot-grid {
        gap: 3px;
    }

    .slot-frame {
        padding: 5px;
    }

    .game-controls {
        padding: 16px 12px;
    }

    .bet-control {
        padding: 6px 8px;
    }

    .bet-value {
        font-size: 15px;
        min-width: 44px;
    }
}
