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

:root {
    --color-gold: #b58f35;
    --color-gold-light: #c9a84c;
    --color-gold-dark: #9a7828;
    --color-bg: #09312a;
    --color-bg-dark: #061f1a;
    --color-bg-card: #0d3d33;
    --color-bg-card2: #0f4538;
    --color-btn-dark: #212121;
    --color-btn-red: #b2031e;
    --color-btn-red-hover: #d0041f;
    --color-text: #f0ede4;
    --color-text-muted: #b8c4bc;
    --color-border: #1e5045;
    --color-border-gold: #b58f3566;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 2px 16px rgba(181, 143, 53, 0.18);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: var(--color-bg-dark);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

.container--wide {
    max-width: 1400px;
}

.main-content {
    flex: 1;
}

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

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

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

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.section-title span {
    color: var(--color-text);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.22s ease;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn--red {
    background: var(--color-btn-red);
    color: #fff;
}

.btn--red:hover {
    background: var(--color-btn-red-hover);
    color: #fff;
    box-shadow: 0 4px 16px rgba(178, 3, 30, 0.45);
    transform: translateY(-1px);
}

.btn--dark {
    background: var(--color-btn-dark);
    color: var(--color-gold);
    border: 1px solid var(--color-gold-dark);
}

.btn--dark:hover {
    background: #2d2d2d;
    color: var(--color-gold-light);
    transform: translateY(-1px);
}

.btn--gold {
    background: var(--color-gold);
    color: #111;
}

.btn--gold:hover {
    background: var(--color-gold-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn--outline:hover {
    background: var(--color-gold);
    color: #111;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 7px 14px;
    font-size: 0.8rem;
}

.btn svg {
    flex-shrink: 0;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--color-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    min-height: 64px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: #111;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.header-logo-text span {
    color: var(--color-btn-red);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.header-nav a:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #000;
}

.header-nav a svg {
    flex-shrink: 0;
}

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

.header-winner {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    animation: fadeInDown 0.5s ease;
}

.header-winner .winner-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
    flex-shrink: 0;
}

.header-winner strong {
    color: #111;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: all 0.25s;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999;
    flex-direction: column;
    padding: 24px 20px;
    gap: 8px;
    overflow-y: auto;
    animation: fadeIn 0.2s ease;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: rgba(181, 143, 53, 0.12);
}

.mobile-nav .mobile-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-elvis.png') center center / cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 20, 16, 0.88) 0%, rgba(6, 20, 16, 0.55) 55%, rgba(6, 20, 16, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 56px 0;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-gold);
    color: #111;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--color-gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: #d8e8e0;
    margin-bottom: 28px;
    max-width: 440px;
    line-height: 1.65;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-gold);
    display: block;
}

.hero-stat-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

/* ===== BREADCRUMBS ===== */
.breadcrumbs-wrap {
    background: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

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

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

.breadcrumbs svg {
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
    padding: 56px 0;
}

.section--dark {
    background: var(--color-bg-dark);
}

.section--card {
    background: var(--color-bg-card);
}

/* ===== DEMO BLOCK ===== */
.demo-block {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-md);
    background: #000;
    border: 2px solid var(--color-border-gold);
}

.demo-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}

.advantage-tile {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    position: relative;
    overflow: hidden;
}

.advantage-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.advantage-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-border-gold);
}

.advantage-tile:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background: rgba(181, 143, 53, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.advantage-icon svg {
    color: var(--color-gold);
}

.advantage-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.advantage-desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===== MOBILE BLOCK ===== */
.mobile-block-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.phone-frame-wrap {
    flex: 0 0 200px;
}

.phone-frame {
    width: 200px;
    background: #111;
    border-radius: 36px;
    border: 3px solid var(--color-gold);
    padding: 12px 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(181, 143, 53, 0.08);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #111;
    border-radius: 0 0 14px 14px;
}

.phone-frame img {
    border-radius: 24px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.mobile-info {
    flex: 1;
    min-width: 280px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto 20px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    font-size: 0.88rem;
}

.data-table th, .data-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.data-table th {
    background: var(--color-bg-dark);
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table td:first-child {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.data-table td:last-child {
    color: var(--color-text);
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ===== WINNERS TABLE ===== */
.winners-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    font-size: 0.88rem;
    min-width: 560px;
}

.winners-table th {
    background: var(--color-gold);
    color: #111;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.winners-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.winners-table tr:last-child td {
    border-bottom: none;
}

.winners-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.025);
}

.winners-table tr:hover td {
    background: rgba(181, 143, 53, 0.07);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--color-border);
    color: var(--color-text-muted);
}

.rank-badge.gold {
    background: #ffd700;
    color: #111;
}

.rank-badge.silver {
    background: #c0c0c0;
    color: #111;
}

.rank-badge.bronze {
    background: #cd7f32;
    color: #fff;
}

.amount-cell {
    color: #22c55e;
    font-weight: 700;
}

/* ===== VIDEO ===== */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    background: #000;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== REVIEW CONTENT ===== */
.review-content {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border);
}

.review-content h2 {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin: 24px 0 10px;
}

.review-content h3 {
    font-size: 1.15rem;
    color: var(--color-gold-light);
    margin: 20px 0 8px;
}

.review-content h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin: 16px 0 6px;
}

.review-content p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

.review-content ul, .review-content ol {
    margin: 10px 0 14px 22px;
}

.review-content li {
    margin-bottom: 6px;
    color: var(--color-text);
    line-height: 1.6;
}

.review-content strong {
    color: var(--color-gold-light);
}

.review-content em {
    color: var(--color-text-muted);
}

.review-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
}

.review-content table th {
    background: var(--color-bg-dark);
    color: var(--color-gold);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.review-content table td {
    padding: 9px 14px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.review-content blockquote {
    border-left: 4px solid var(--color-gold);
    padding: 12px 18px;
    background: rgba(181, 143, 53, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
}

.review-content img {
    border-radius: var(--radius-sm);
    margin: 14px 0;
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 20px 0;
}

.author-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 24px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #111;
}

.author-name {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.author-bio {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.author-links {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.author-links a {
    font-size: 0.78rem;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--color-gold-dark);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(181, 143, 53, 0.07);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.28s;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.22s;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 16px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===== SIMILAR GAMES ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.game-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.game-card-img {
    height: 140px;
    overflow: hidden;
    position: relative;
    background: var(--color-bg-dark);
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-card-img img {
    transform: scale(1.04);
}

.game-card-body {
    padding: 14px 14px 16px;
}

.game-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.game-card-provider {
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.game-card-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.game-card-actions {
    display: flex;
    gap: 8px;
}

/* ===== WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 800;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    animation: slideInRight 0.5s ease 1s both;
    transition: transform 0.2s;
}

.sticky-widget:hover {
    transform: translateY(-2px);
}

.sticky-widget-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sticky-widget-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-widget-info {
    flex: 1;
    min-width: 0;
}

.sticky-widget-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-gold);
}

.sticky-widget-bonus {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.sticky-widget-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s;
}

.sticky-widget-close:hover {
    color: var(--color-text);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-gold);
    color: #111;
    padding: 0;
    margin-top: auto;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 900;
    color: #111;
    line-height: 1.1;
}

.footer-logo-text span {
    color: var(--color-btn-red);
}

.footer-desc {
    font-size: 0.82rem;
    color: #3a2e00;
    line-height: 1.55;
    margin-bottom: 14px;
}

.footer-col-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: #2a1e00;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-btn-red);
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: var(--color-btn-red);
    color: #fff;
}

.footer-email {
    font-size: 0.82rem;
    color: #2a1e00;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.payment-badge {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.03em;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.14);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badge svg {
    flex-shrink: 0;
}

.footer-legal {
    font-size: 0.72rem;
    color: #3a2e00;
    max-width: 520px;
    line-height: 1.55;
}

.footer-copyright {
    font-size: 0.78rem;
    color: #2a1e00;
    font-weight: 600;
}

/* ===== MISC UNUSED styles for uniqualization ===== */
.xk8p2-feed {
    display: none;
}

.q3tr9-meta {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wp-block-separator {
    display: none;
}

.entry-meta-xr7 {
    position: absolute;
    left: -9999px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

.animate-fade-up {
    animation: fadeInUp 0.55s ease both;
}

.animate-fade-up:nth-child(2) {
    animation-delay: 0.1s;
}

.animate-fade-up:nth-child(3) {
    animation-delay: 0.2s;
}

.animate-fade-up:nth-child(4) {
    animation-delay: 0.3s;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 2.2s infinite;
}

/* ===== INFO PAGES ===== */
.info-page {
    padding: 48px 0 64px;
}

.info-page h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--color-gold);
    margin-bottom: 24px;
}

.info-page h2 {
    font-size: 1.25rem;
    color: var(--color-gold-light);
    margin: 22px 0 10px;
}

.info-page p {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 14px;
}

.info-page ul, .info-page ol {
    margin: 10px 0 14px 22px;
}

.info-page li {
    color: var(--color-text);
    margin-bottom: 6px;
    line-height: 1.6;
}

.info-page a {
    color: var(--color-gold);
    text-decoration: underline;
}

.info-page strong {
    color: var(--color-gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .mobile-block-inner {
        flex-direction: column;
        align-items: center;
    }

    .phone-frame-wrap {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }

    .header-winner {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero {
        min-height: 360px;
    }

    .hero-content {
        padding: 40px 0;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .sticky-widget {
        max-width: calc(100vw - 40px);
    }

    .section {
        padding: 40px 0;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .review-content {
        padding: 20px;
    }
}

@media (max-width: 479px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .btn--lg {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}
