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

:root {
    --clr-nav: #023f6b;
    --clr-nav-dark: #012d4e;
    --clr-bg: #005aad;
    --clr-bg-alt: #004d96;
    --clr-btn-gold: #f5cd4b;
    --clr-btn-gold-hover: #e8bc30;
    --clr-btn-green: #02aa06;
    --clr-btn-green-hover: #019404;
    --clr-text-light: #ffffff;
    --clr-text-muted: rgba(255,255,255,0.75);
    --clr-card-bg: rgba(2, 63, 107, 0.85);
    --clr-card-border: rgba(245, 205, 75, 0.25);
    --clr-accent: #f5cd4b;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-btn: 0 2px 12px rgba(0,0,0,0.25);
    --font-main: 'Oswald', sans-serif;
    --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-gold-hover); }
ul { list-style: none; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.box { width: 100%; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 600; line-height: 1.2; color: var(--clr-text-light); }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { margin-bottom: 0.85rem; color: rgba(255,255,255,0.88); line-height: 1.65; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px 20px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: var(--shadow-btn);
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.btn:active { transform: translateY(0); }

.btn--green { background: var(--clr-btn-green); color: #fff; }
.btn--green:hover { background: var(--clr-btn-green-hover); color: #fff; }

.btn--gold { background: var(--clr-btn-gold); color: #023f6b; }
.btn--gold:hover { background: var(--clr-btn-gold-hover); color: #012d4e; }

.btn--outline { background: transparent; border: 2px solid var(--clr-btn-gold); color: var(--clr-btn-gold); }
.btn--outline:hover { background: var(--clr-btn-gold); color: #023f6b; }

.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--md { padding: 10px 22px; }
.btn--sm { padding: 7px 14px; font-size: 0.8rem; }

.btn--pulse {
    animation: btnPulse 2.4s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(2,170,6,0.5); }
    50% { box-shadow: 0 0 0 10px rgba(2,170,6,0); }
}

.site-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

.header-logo a { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 48px; width: auto; object-fit: contain; }
.logo-text { font-size: 1.15rem; font-weight: 700; color: var(--clr-accent); letter-spacing: 0.03em; line-height: 1.1; }
.logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.header-jackpot {
    background: rgba(245,205,75,0.12);
    border: 1px solid rgba(245,205,75,0.3);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.header-jackpot strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--clr-accent); letter-spacing: 0.03em; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav ul { display: flex; align-items: center; gap: 2px; }
.header-nav ul li a {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.82rem; font-weight: 500; color: var(--clr-text-muted);
    padding: 7px 10px; border-radius: var(--radius-sm);
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: background var(--transition), color var(--transition);
}
.header-nav ul li a:hover, .header-nav ul li a.active {
    background: rgba(255,255,255,0.1); color: var(--clr-text-light);
}
.header-nav ul li a svg { width: 14px; height: 14px; flex-shrink: 0; }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    cursor: pointer;
    padding: 4px;
    background: transparent;
    border: none;
    z-index: 1100;
}
.burger span {
    display: block; width: 100%; height: 2px;
    background: var(--clr-text-light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('/images/dolphin-treasure-hero-img.webp') center/cover no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(1,22,50,0.88) 0%, rgba(0,90,173,0.45) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 560px;
    padding: 60px 0;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,205,75,0.15);
    border: 1px solid rgba(245,205,75,0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.78rem; color: var(--clr-accent);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 700; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); color: #fff; }
.hero p { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 460px; }

.hero-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.rating-stars { display: flex; gap: 2px; }
.rating-stars span { color: var(--clr-accent); font-size: 1.1rem; }
.rating-text { font-size: 0.85rem; color: var(--clr-text-muted); }
.rating-text strong { color: var(--clr-text-light); }

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-rtp-badge {
    position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
    background: rgba(2,63,107,0.9);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    min-width: 130px;
}
.hero-rtp-badge .rtp-val { font-size: 1.8rem; font-weight: 700; color: var(--clr-accent); }
.hero-rtp-badge .rtp-lbl { font-size: 0.7rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.section {
    padding: 56px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 32px;
}
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--clr-text-muted); font-size: 0.95rem; }
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-btn-green));
    border-radius: 2px;
    margin: 10px auto 0;
}

.game-details-wrap {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.game-details-table-container {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.game-details-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 0.88rem;
}
.game-details-table th {
    background: var(--clr-nav-dark);
    color: var(--clr-accent);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 16px;
    text-align: left;
}
.game-details-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: var(--clr-text-light);
    vertical-align: middle;
}
.game-details-table tr:last-child td { border-bottom: none; }
.game-details-table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.game-details-table tr:hover td { background: rgba(245,205,75,0.06); }
.game-details-table .td-param { color: var(--clr-text-muted); font-size: 0.82rem; display: flex; align-items: center; gap: 8px; }
.game-details-table .td-param svg { width: 15px; height: 15px; color: var(--clr-accent); flex-shrink: 0; }
.game-details-table .td-val { font-weight: 500; }
.game-details-table .td-val .badge-green { color: var(--clr-btn-green); }
.game-details-table .td-val .badge-red { color: #ff5c5c; }

.game-demo-frame {
    flex: 0 0 360px;
    position: sticky;
    top: 80px;
}
.demo-frame-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.demo-frame-card iframe {
    width: 100%;
    height: 300px;
    display: block;
    border: none;
}
.demo-frame-footer {
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: var(--clr-nav-dark);
    flex-wrap: wrap;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.advantage-tile {
    flex: 1 1 200px;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-card);
}
.advantage-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); border-color: rgba(245,205,75,0.5); }
.advantage-tile .adv-icon {
    width: 48px; height: 48px;
    background: rgba(245,205,75,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: var(--clr-accent);
}
.advantage-tile .adv-icon svg { width: 24px; height: 24px; }
.advantage-tile h3 { font-size: 0.95rem; margin-bottom: 8px; }
.advantage-tile p { font-size: 0.82rem; color: var(--clr-text-muted); margin: 0; }

.demo-section-inner {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.demo-section-header {
    padding: 20px 28px;
    background: var(--clr-nav-dark);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.demo-section-header h2 { margin: 0; font-size: 1.2rem; }
.demo-iframe-wrap { position: relative; padding-top: 56.25%; background: #000; }
.demo-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.demo-section-footer {
    padding: 16px 28px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    background: var(--clr-nav);
}
.demo-note { font-size: 0.78rem; color: var(--clr-text-muted); }

.bonuses-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 12px; }
.bonuses-track::-webkit-scrollbar { height: 4px; }
.bonuses-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 2px; }
.bonuses-track::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 2px; }

.bonus-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px;
    scroll-snap-align: start;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex; flex-direction: column; gap: 12px;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover { border-color: rgba(245,205,75,0.5); transform: translateY(-3px); }
.bonus-card-header { display: flex; align-items: center; gap: 12px; }
.bonus-casino-logo {
    width: 52px; height: 52px;
    background: var(--clr-nav);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700; color: var(--clr-accent);
    flex-shrink: 0;
    overflow: hidden;
}
.bonus-casino-info h3 { font-size: 1rem; margin-bottom: 2px; }
.bonus-casino-info .bonus-rating { font-size: 0.78rem; color: var(--clr-accent); }
.bonus-amount {
    font-size: 1.5rem; font-weight: 700; color: var(--clr-accent);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.bonus-amount span { font-size: 0.78rem; font-weight: 400; color: var(--clr-text-muted); display: block; margin-top: 2px; }
.bonus-features { font-size: 0.82rem; color: var(--clr-text-muted); display: flex; flex-direction: column; gap: 5px; }
.bonus-features li { display: flex; align-items: center; gap: 6px; }
.bonus-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--clr-btn-green); flex-shrink: 0; }
.bonus-card .btn { width: 100%; justify-content: center; margin-top: auto; }

.content-review {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    box-shadow: var(--shadow-card);
}
.content-review h1,
.content-review h2,
.content-review h3,
.content-review h4,
.content-review h5,
.content-review h6 { color: var(--clr-text-light); margin-bottom: 12px; margin-top: 24px; }
.content-review h1:first-child,
.content-review h2:first-child { margin-top: 0; }
.content-review p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 14px; }
.content-review a { color: var(--clr-accent); }
.content-review a:hover { color: var(--clr-btn-gold-hover); }
.content-review ul, .content-review ol { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.content-review ul li { list-style: disc; color: rgba(255,255,255,0.85); line-height: 1.6; }
.content-review ol li { list-style: decimal; color: rgba(255,255,255,0.85); line-height: 1.6; }
.content-review strong, .content-review b { color: var(--clr-text-light); }
.content-review em, .content-review i { font-style: italic; color: rgba(255,255,255,0.8); }
.content-review blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(245,205,75,0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: rgba(255,255,255,0.85);
}
.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}
.content-review table th {
    background: var(--clr-nav);
    color: var(--clr-accent);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.content-review table td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}
.content-review img { border-radius: var(--radius-sm); max-width: 100%; height: auto; }
.content-review hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 24px 0; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.active { border-color: rgba(245,205,75,0.45); }
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    color: var(--clr-text-light);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-question.active { color: var(--clr-accent); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--clr-accent); }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}
.faq-answer.open { max-height: 600px; padding: 0 20px 18px; }
.faq-answer p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin: 0; }

.author-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 28px 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
}
.author-photo {
    flex-shrink: 0;
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-accent);
}
.author-info { flex: 1; }
.author-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; font-size: 0.82rem; color: var(--clr-text-muted); }
.author-meta span { display: flex; align-items: center; gap: 4px; }
.author-meta svg { width: 13px; height: 13px; color: var(--clr-accent); }
.author-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.author-title { font-size: 0.82rem; color: var(--clr-accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.author-bio { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 14px; }
.author-social { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social a {
    display: flex; align-items: center; gap: 5px;
    background: var(--clr-nav);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.78rem; color: var(--clr-text-muted);
    transition: background var(--transition), color var(--transition);
}
.author-social a:hover { background: var(--clr-accent); color: var(--clr-nav); }
.author-social a svg { width: 13px; height: 13px; }
.author-dates { font-size: 0.75rem; color: var(--clr-text-muted); margin-top: 12px; }

.site-footer {
    background: var(--clr-nav);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
    padding: 44px 0 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { flex: 0 0 200px; }
.footer-brand img { height: 48px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { font-size: 0.78rem; color: var(--clr-text-muted); line-height: 1.6; margin: 0; }
.footer-brand-link {display: block;width: fit-content;}

.footer-nav-col { flex: 1 1 130px; }
.footer-nav-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clr-accent); margin-bottom: 12px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-nav-col ul li a { font-size: 0.8rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-nav-col ul li a:hover { color: var(--clr-text-light); }

.footer-contact { flex: 0 0 auto; }
.footer-contact h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clr-accent); margin-bottom: 12px; }
.footer-contact a { font-size: 0.85rem; color: var(--clr-text-muted); }
.footer-contact a:hover { color: var(--clr-text-light); }

.footer-logos {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logos-group { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-logos-group .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clr-text-muted); margin-right: 4px; }

.footer-trust-badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 0.7rem; color: rgba(255,255,255,0.65);
    font-weight: 600; letter-spacing: 0.04em;
    transition: background var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.footer-trust-badge:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
.footer-trust-badge svg { width: 14px; height: 14px; margin-right: 4px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-text-muted);
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--clr-accent); color: var(--clr-nav); }
.footer-social a svg { width: 15px; height: 15px; }

.footer-bottom {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright { font-size: 0.75rem; color: var(--clr-text-muted); }
.footer-legal { font-size: 0.73rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 700px; }
.footer-flag { height: 20px;width: auto;}

.sticky-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    background: var(--clr-nav);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.5);
    max-width: 280px;
    animation: widgetSlideIn 0.5s ease 1.5s both;
}
@keyframes widgetSlideIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.widget-logo img { width: 40px; height: 40px; object-fit: contain; border-radius: var(--radius-sm); }
.widget-info { flex: 1; min-width: 0; }
.widget-info .widget-title { font-size: 0.82rem; font-weight: 600; color: var(--clr-text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.widget-info .widget-bonus { font-size: 0.72rem; color: var(--clr-accent); }
.widget-close {
    position: absolute; top: -8px; right: -8px;
    width: 20px; height: 20px;
    background: var(--clr-nav-dark);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.6rem; color: var(--clr-text-muted);
    transition: background var(--transition);
}
.widget-close:hover { background: #ff4444; color: #fff; }

.breadcrumb {
    padding: 10px 0;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb span.sep { color: rgba(255,255,255,0.3); }
.breadcrumb span.current { color: var(--clr-text-light); }

.info-page-content {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    box-shadow: var(--shadow-card);
    margin: 32px 0;
}
.info-page-content h1 { font-size: 1.8rem; margin-bottom: 16px; }
.info-page-content h2 { font-size: 1.3rem; margin-top: 24px; margin-bottom: 10px; color: var(--clr-accent); }
.info-page-content p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 14px; font-size: 0.95rem; }
.info-page-content ul { margin: 12px 0 16px 20px; }
.info-page-content ul li { list-style: disc; color: rgba(255,255,255,0.8); margin-bottom: 6px; font-size: 0.92rem; }
.info-page-content a { color: var(--clr-accent); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (max-width: 1024px) {
.header-jackpot {display: none;}
}
@media (max-width: 900px) {
    .header-nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--clr-nav-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 32px;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.32s ease;
        overflow-y: auto;
    }
    .header-nav.active { transform: translateX(0); }
    .header-nav ul { flex-direction: column; width: 100%; gap: 4px; }
    .header-nav ul li a { font-size: 1rem; padding: 12px 14px; width: 100%; }
    .burger { display: flex; }
    .header-cta { gap: 6px; }
    .header-cta .btn--lg { padding: 10px 14px; font-size: 0.82rem; }
    .hero-rtp-badge { display: none; }
    .game-demo-frame { flex: none; width: 100%; position: static; }
    .author-card {padding: 24px;}
}

@media (max-width: 600px) {
    .header-inner { flex-wrap: wrap; }
    .header-jackpot { display: none; }
    .hero { min-height: 360px; }
    .hero-content { padding: 40px 0; }
    .bonus-card { flex: 0 0 85vw; }
    .author-card { flex-direction: column; align-items: center; text-align: center; }
    .author-meta { justify-content: center; }
    .author-social { justify-content: center; }
    .footer-inner { flex-direction: column; gap: 20px; }
    .content-review { padding: 20px 18px; }
    .info-page-content { padding: 20px 18px; }
    .sticky-widget { right: 12px; bottom: 12px; max-width: calc(100vw - 24px); }
    .author-card {padding: 20px;}
    .footer-brand {flex: none;}
}
@media (max-width: 420px) {
.header-cta .btn--gold {display: none;}
}
.wp-block-group { display: block; }
.wp-block-columns { display: flex; gap: 16px; }
.has-text-align-center { text-align: center; }
.entry-meta { font-size: 0.8rem; color: var(--clr-text-muted); }
.wp-image-n7a3k9 { border-radius: 4px; }
.elementor-widget-container { position: relative; }
.elementor-column-gap-default { gap: 16px; }
.e-con-inner { padding: 12px; }
.wpcf7-form { display: flex; flex-direction: column; gap: 10px; }
.wpcf7-text, .wpcf7-email { padding: 9px 12px; border-radius: 4px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: absolute; top: -40px; }
.g7f2-r91 { display: none; }
.m4b8-q22 { visibility: hidden; height: 0; overflow: hidden; }
.x9p3-a1 { opacity: 0; pointer-events: none; position: absolute; }
