:root {
    --c-bg: #3b0916;
    --c-bg2: #2a0710;
    --c-bg3: #4d1020;
    --c-nav: #bb7b28;
    --c-nav-dark: #9a6318;
    --c-nav-light: #d4922e;
    --c-gold: #dcbd36;
    --c-gold-hover: #f0d44a;
    --c-red: #9e0d09;
    --c-red-hover: #c01410;
    --c-text: #f5e8c8;
    --c-text-muted: #c9a87a;
    --c-text-dim: #9b7650;
    --c-border: rgba(187,123,40,0.35);
    --c-border-strong: rgba(220,189,54,0.5);
    --c-card: rgba(59,9,22,0.85);
    --c-card2: rgba(74,15,28,0.9);
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.45);
    --shadow-gold: 0 0 20px rgba(220,189,54,0.25);
    --transition: 0.25s ease;
    --font-main: 'Lato', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, iframe { max-width: 100%; display: block; }

a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold-hover); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; line-height: 1.7; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; line-height: 1.6; }

table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; overflow-x: auto; display: block; }
table thead { background: var(--c-nav); color: #fff; }
table th, table td { padding: 0.75rem 1rem; text-align: left; border: 1px solid var(--c-border); font-size: 0.93rem; }
table tr:nth-child(even) { background: rgba(187,123,40,0.08); }
table tr:hover { background: rgba(220,189,54,0.1); }
@media (min-width: 600px) { table { display: table; } }

strong { color: var(--c-gold); font-weight: 700; }
em { color: var(--c-text-muted); font-style: italic; }

hr { border: none; border-top: 1px solid var(--c-border); margin: 1.5rem 0; }

blockquote {
    border-left: 4px solid var(--c-gold);
    padding: 0.75rem 1.25rem;
    background: rgba(220,189,54,0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--c-text-muted);
    font-style: italic;
    margin: 1.25rem 0;
}

.c4x7r2 { display: none; height: 0; width: 0; overflow: hidden; }
.wp9r3s { visibility: hidden; position: absolute; left: -9999px; }
.zk2mb8 { opacity: 0; pointer-events: none; }

.xp3n1a { display: flex; gap: 0.5rem; }
.qr7t9b { font-weight: 400; }
.mv6k2p { text-transform: uppercase; letter-spacing: 0.04em; }

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

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

.ct-site-header {
    background: linear-gradient(135deg, #9a6318 0%, #bb7b28 50%, #9a6318 100%);
    border-bottom: 2px solid var(--c-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.ct-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    gap: 1rem;
}

.ct-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.ct-logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: transform var(--transition);
}

.ct-logo:hover img { transform: scale(1.04); }

.ct-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-nav li a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 0.7rem;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.ct-nav li a:hover { background: rgba(255,255,255,0.15); color: var(--c-gold); }

.ct-nav li a svg { width: 15px; height: 15px; flex-shrink: 0; }

.ct-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ct-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background var(--transition);
}

.ct-burger:hover { background: rgba(255,255,255,0.15); }

.ct-burger span {
    display: block;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.ct-burger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.ct-burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ct-burger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.ct-mobile-nav {
    display: none;
    background: var(--c-nav-dark);
    border-top: 1px solid var(--c-border);
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.25rem;
}

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

.ct-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    transition: background var(--transition);
    text-decoration: none;
}

.ct-mobile-nav a:hover { background: rgba(255,255,255,0.12); color: var(--c-gold); }
.ct-mobile-nav a svg { width: 16px; height: 16px; }

.ct-mobile-nav-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem 0.25rem;
    border-top: 1px solid var(--c-border);
    margin-top: 0.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s;
}

.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn:active { transform: scale(0.97); }

.btn--gold {
    background: linear-gradient(135deg, #e8ca3a, #dcbd36, #c9a820);
    color: #1a0800;
    box-shadow: 0 2px 12px rgba(220,189,54,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
    padding: 0.55rem 1.1rem;
}

.btn--gold:hover {
    background: linear-gradient(135deg, #f0d44a, #e8ca3a, #d4b020);
    box-shadow: 0 4px 20px rgba(220,189,54,0.6);
    color: #1a0800;
    transform: translateY(-1px);
}

.btn--red {
    background: linear-gradient(135deg, #c01410, #9e0d09, #7a0a06);
    color: #fff;
    box-shadow: 0 2px 12px rgba(158,13,9,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
    padding: 0.55rem 1.1rem;
}

.btn--red:hover {
    background: linear-gradient(135deg, #d41814, #c01410, #9e0d09);
    box-shadow: 0 4px 20px rgba(158,13,9,0.65);
    color: #fff;
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--c-gold);
    border: 2px solid var(--c-gold);
    padding: 0.5rem 1rem;
}

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

.btn--lg { font-size: 1rem; padding: 0.8rem 1.75rem; border-radius: 10px; }
.btn--sm { font-size: 0.8rem; padding: 0.4rem 0.85rem; border-radius: 6px; }

.btn-pulse {
    animation: btPulse 2.5s infinite;
}

@keyframes btPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(220,189,54,0.45); }
    50% { box-shadow: 0 4px 28px rgba(220,189,54,0.8), 0 0 40px rgba(220,189,54,0.3); }
}

.ct-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg2);
}

.ct-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-bg.png');
    background-size: cover;
    background-position: center top;
    filter: brightness(0.55) saturate(1.2);
    transform: scale(1.03);
    transition: transform 8s ease;
    z-index: 0;
}

.ct-hero:hover .ct-hero-bg { transform: scale(1.0); }

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59,9,22,0.92) 0%, rgba(59,9,22,0.6) 60%, rgba(59,9,22,0.2) 100%);
    z-index: 1;
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 1rem;
    max-width: 640px;
}

.ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(220,189,54,0.15);
    border: 1px solid rgba(220,189,54,0.4);
    color: var(--c-gold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ct-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 0.75rem;
    color: #fff;
    text-shadow: 0 3px 16px rgba(0,0,0,0.7);
    line-height: 1.15;
}

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

.ct-hero-intro {
    color: var(--c-text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.ct-hero-spoiler summary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    list-style: none;
    margin-bottom: 0.75rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    transition: all var(--transition);
    user-select: none;
}

.ct-hero-spoiler summary:hover { color: var(--c-gold); border-color: var(--c-gold); }
.ct-hero-spoiler[open] summary { color: var(--c-gold); }
.ct-hero-spoiler-body { color: var(--c-text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; padding: 0.75rem; background: rgba(0,0,0,0.25); border-radius: 8px; border: 1px solid var(--c-border); }

.ct-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.ct-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ct-hero-stat { text-align: center; }
.ct-hero-stat-val { display: block; font-size: 1.5rem; font-weight: 900; color: var(--c-gold); line-height: 1; }
.ct-hero-stat-lbl { display: block; font-size: 0.73rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

.ct-breadcrumbs {
    padding: 0.65rem 1rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--c-border);
}

.ct-breadcrumbs-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--c-text-dim);
}

.ct-breadcrumbs-inner a { color: var(--c-text-dim); }
.ct-breadcrumbs-inner a:hover { color: var(--c-gold); }
.ct-breadcrumbs-inner span { color: var(--c-text); }

.ct-bc-sep { opacity: 0.5; }

.ct-main {
    flex: 1;
    padding: 2rem 1rem;
}

.ct-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ct-content-area { min-width: 0; }

.ct-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition);
}

.ct-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-nav), var(--c-gold), var(--c-nav));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ct-block:hover { border-color: var(--c-border-strong); }

.ct-block-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--c-border);
}

.ct-block-title svg { width: 22px; height: 22px; flex-shrink: 0; }

.ct-toc { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 0.35rem; }

@media (min-width: 480px) { .ct-toc { grid-template-columns: 1fr 1fr; } }

.ct-toc li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    background: rgba(187,123,40,0.1);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
}

.ct-toc li a:hover {
    background: rgba(220,189,54,0.15);
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateX(3px);
}

.ct-toc li a svg { width: 14px; height: 14px; color: var(--c-nav); flex-shrink: 0; }

.ct-game-wrap { position: relative; }

.ct-game-frame {
    position: relative;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--c-border);
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
}

.ct-game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.ct-game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,9,22,0.96) 0%, rgba(74,15,28,0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 5;
    text-align: center;
    padding: 1.5rem;
}

.ct-game-overlay-logo { width: 200px; max-width: 80%; filter: drop-shadow(0 4px 12px rgba(220,189,54,0.4)); }

.ct-game-overlay p { color: var(--c-text-muted); font-size: 0.95rem; max-width: 340px; }

.ct-game-overlay-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.ct-game-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.ct-game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.ct-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(187,123,40,0.12);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.ct-meta-tag strong { color: var(--c-gold); }

.ct-video-frame {
    position: relative;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--c-border);
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
}

.ct-video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ct-review-content { line-height: 1.75; }

.ct-review-content h2, .ct-review-content h3, .ct-review-content h4 { margin-top: 1.75rem; margin-bottom: 0.75rem; }
.ct-review-content h2 { font-size: 1.55rem; }
.ct-review-content h3 { font-size: 1.25rem; }
.ct-review-content p { margin-bottom: 1rem; color: var(--c-text); }
.ct-review-content ul, .ct-review-content ol { margin-bottom: 1.25rem; color: var(--c-text); }
.ct-review-content li { margin-bottom: 0.5rem; }
.ct-review-content a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }
.ct-review-content a:hover { color: var(--c-gold-hover); }
.ct-review-content strong { color: var(--c-gold); }
.ct-review-content blockquote { border-left: 4px solid var(--c-gold); padding: 0.75rem 1.25rem; background: rgba(220,189,54,0.06); margin: 1.25rem 0; color: var(--c-text-muted); }
.ct-review-content table { width: 100%; border-collapse: collapse; overflow-x: auto; display: block; margin: 1.25rem 0; }
.ct-review-content table th { background: var(--c-nav); color: #fff; padding: 0.65rem 1rem; text-align: left; border: 1px solid var(--c-border); }
.ct-review-content table td { padding: 0.65rem 1rem; border: 1px solid var(--c-border); color: var(--c-text); }
.ct-review-content table tr:nth-child(even) { background: rgba(187,123,40,0.08); }
.ct-review-content img { border-radius: var(--radius); border: 1px solid var(--c-border); margin: 1rem 0; }
@media (min-width: 600px) { .ct-review-content table { display: table; } }

.ct-faq { display: flex; flex-direction: column; gap: 0.75rem; }

.ct-faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
    background: rgba(0,0,0,0.2);
}

.ct-faq-item:hover { border-color: var(--c-border-strong); }

.ct-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-text);
    list-style: none;
    user-select: none;
    transition: color var(--transition);
}

.ct-faq-q::-webkit-details-marker { display: none; }
.ct-faq-q::marker { display: none; }

details[open] .ct-faq-q { color: var(--c-gold); border-bottom: 1px solid var(--c-border); }

.ct-faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(187,123,40,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.ct-faq-icon svg { width: 12px; height: 12px; color: var(--c-gold); }
details[open] .ct-faq-icon { transform: rotate(180deg); background: var(--c-gold); }
details[open] .ct-faq-icon svg { color: #1a0800; }

.ct-faq-a {
    padding: 1rem 1.25rem;
    color: var(--c-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.ct-author-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
}

.ct-author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-gold);
    box-shadow: 0 0 20px rgba(220,189,54,0.3);
    flex-shrink: 0;
}

.ct-author-info { flex: 1; min-width: 200px; }
.ct-author-name { font-size: 1.2rem; font-weight: 700; color: var(--c-gold); margin-bottom: 0.2rem; }
.ct-author-role { color: var(--c-text-muted); font-size: 0.85rem; margin-bottom: 0.75rem; font-weight: 600; }
.ct-author-bio { color: var(--c-text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 0.75rem; }

.ct-author-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: var(--c-text-dim); margin-bottom: 0.75rem; }
.ct-author-meta span { display: flex; align-items: center; gap: 0.3rem; }
.ct-author-meta svg { width: 13px; height: 13px; }

.ct-author-socials { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ct-author-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(187,123,40,0.15);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    color: var(--c-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
}

.ct-author-socials a:hover { background: rgba(220,189,54,0.2); border-color: var(--c-gold); color: var(--c-gold); }
.ct-author-socials a svg { width: 14px; height: 14px; }

.ct-site-footer {
    background: linear-gradient(180deg, var(--c-nav-dark) 0%, #7a4d14 100%);
    border-top: 2px solid var(--c-gold);
    padding: 2.5rem 0 1.25rem;
    margin-top: auto;
}

.ct-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ct-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 640px) { .ct-footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ct-footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.ct-footer-brand {}
.ct-footer-logo { height: 44px; margin-bottom: 0.85rem; filter: brightness(1.1); }
.ct-footer-tagline { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

.ct-footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ct-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.ct-footer-socials a:hover { background: var(--c-gold); color: #1a0800; border-color: var(--c-gold); }
.ct-footer-socials a svg { width: 16px; height: 16px; }

.ct-footer-nav-title { color: var(--c-gold); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.ct-footer-nav ul { list-style: none; padding: 0; margin: 0; }
.ct-footer-nav li { margin-bottom: 0.4rem; }
.ct-footer-nav li a { color: rgba(255,255,255,0.75); font-size: 0.85rem; transition: color var(--transition); }
.ct-footer-nav li a:hover { color: var(--c-gold); }

.ct-footer-bottom {
    text-align: center;
}

.ct-footer-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.ct-footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ct-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background var(--transition);
}

.ct-payment-badge:hover { background: rgba(255,255,255,0.18); color: #fff; }

.ct-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(220,189,54,0.1);
    border: 1px solid rgba(220,189,54,0.3);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    color: var(--c-gold);
    font-size: 0.78rem;
    font-weight: 700;
}

.ct-trust-badge svg { width: 13px; height: 13px; }

.ct-footer-provider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.ct-footer-provider img { height: 24px; opacity: 0.8; }

.ct-copyright {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.ct-legal {
    color: rgba(255,255,255,0.4);
    font-size: 0.73rem;
    line-height: 1.65;
    max-width: 800px;
    margin: 0 auto;
}

.ct-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; margin-bottom: 0.85rem; }
.ct-footer-links a { color: rgba(255,255,255,0.6); font-size: 0.8rem; transition: color var(--transition); }
.ct-footer-links a:hover { color: var(--c-gold); }

.ct-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.ct-similar-games { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }

.ct-game-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 0.85rem;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}

.ct-game-card:hover { border-color: var(--c-gold); background: rgba(220,189,54,0.08); transform: translateY(-2px); }
.ct-game-card-name { color: var(--c-text); font-size: 0.82rem; font-weight: 600; margin-top: 0.5rem; }
.ct-game-card-provider { color: var(--c-text-dim); font-size: 0.72rem; }

.ct-game-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--c-nav), var(--c-nav-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.ct-animate-in { animation: fadeInUp 0.6s ease forwards; }
.ct-animate-fade { animation: fadeIn 0.5s ease forwards; }

.ct-scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-gold);
    color: #1a0800;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(220,189,54,0.5);
    z-index: 999;
    transition: all var(--transition);
}

.ct-scroll-top.visible { display: flex; }
.ct-scroll-top:hover { background: var(--c-gold-hover); transform: translateY(-2px); }
.ct-scroll-top svg { width: 18px; height: 18px; }

@media (max-width: 767px) {
    .ct-nav { display: none; }
    .ct-burger { display: flex; }
    .ct-header-btn-desktop { display: none; }
    .ct-header-inner { padding: 0.55rem 0.85rem; }
    .ct-hero { min-height: 380px; }
    .ct-hero-content { padding: 2.5rem 1rem; }
    .ct-block { padding: 1.25rem; }
    .ct-author-photo { width: 80px; height: 80px; }
}

@media (min-width: 768px) {
    .ct-layout { grid-template-columns: 1fr; }
    .ct-hero { min-height: 520px; }
    .ct-similar-games { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

.ct-wp-ping { display: none; }
.wp-block-spacer { display: none; }
.nf3k8m { display: none !important; }
.xr2p5t { visibility: hidden; position: absolute; }
.eb9m3x, .qt6n2v, .sk4h7c { display: none; }
