/* ============================================
   SEO-Slot Template - Complete Stylesheet
   用于 {keyword} SEO 模板 - 50站/日
   ============================================ */

/* ===== CSS Reset & Variables ===== */
:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b81;
    --gold: #f5c518;
    --success: #00c853;
    --warning: #ff9800;
    --danger: #e94560;
    --bg: #f8f9fa;
    --bg-dark: #1a1a2e;
    --text: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

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

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

h1,h2,h3,h4,h5,h6 { line-height: 1.3; color: var(--primary); }
h1 { font-size: 1.75rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }

/* ===== Trust Bar ===== */
.trust-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    padding: 4px 0;
}
.trust-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-bar__item { white-space: nowrap; }

/* ===== Header ===== */
.site-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}
.site-logo__img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}
.site-logo__text {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Navigation */
.site-nav { position: relative; }
.site-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}
.site-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
}
.site-nav__list {
    display: flex;
    list-style: none;
    gap: 4px;
}
.site-nav__link {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}
.site-nav__link:hover, .site-nav__link.active {
    background: rgba(255,255,255,0.12);
    color: var(--text-white);
}
.site-nav__link.active { background: rgba(255,255,255,0.18); }

/* Header CTA Buttons */
.site-header__cta {
    display: flex;
    gap: 8px;
    align-items: center;
}
.site-header__btn {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}
.site-header__btn--login {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--text-white);
}
.site-header__btn--login:hover {
    border-color: var(--text-white);
    background: rgba(255,255,255,0.1);
}
.site-header__btn--daftar {
    background: var(--accent);
    color: #fff;
}
.site-header__btn--daftar:hover {
    background: var(--accent-light);
    color: #fff;
}

/* ===== Breadcrumb ===== */
.breadcrumb { padding: 8px 0; background: #fff; border-bottom: 1px solid var(--border); }
.breadcrumb__list {
    display: flex;
    list-style: none;
    gap: 4px;
    font-size: 0.8rem;
    flex-wrap: wrap;
}
.breadcrumb__item { color: var(--text-light); }
.breadcrumb__item a { color: var(--text-light); }
.breadcrumb__item::after { content: '/'; margin: 0 6px; color: #ccc; }
.breadcrumb__item:last-child::after { content: ''; }
.breadcrumb__item--current { color: var(--text); font-weight: 600; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--text-white);
    padding: 40px 0;
}
.hero__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero__content { flex: 1; }
.hero__title {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.hero__subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}
.hero__author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.85;
}
.hero__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}
.hero__author-name { font-weight: 600; display: block; }
.hero__author-meta { font-size: 0.75rem; opacity: 0.7; }
.hero__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== Quick Stats ===== */
.quick-stats {
    margin-top: -24px;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent);
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card__icon { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.stat-card__number { font-size: 1.5rem; font-weight: 700; color: var(--primary); display: block; }
.stat-card__label { font-size: 0.8rem; color: var(--text-light); }

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===== Article Layout ===== */
.article-section { padding: 40px 0; }
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

.article-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}
.article-content h2 { margin: 1.5em 0 0.5em; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin: 1.2em 0 0.5em; color: var(--primary-light); }
.article-content p { margin-bottom: 1em; }
.article-content ul, .article-content ol { margin: 0 0 1em 1.5em; }
.article-content li { margin-bottom: 0.4em; }

/* Sidebar */
.article-sidebar { position: sticky; top: 72px; }
.sidebar-widget {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}
.sidebar-widget__title {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    color: var(--primary);
}
.sidebar-widget--trust {
    background: linear-gradient(135deg, #fff8e1, #fff);
    border: 1px solid #ffe082;
}
.sidebar-game-list { list-style: none; }
.sidebar-game-item { margin-bottom: 8px; }
.sidebar-game-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: var(--radius);
    color: var(--text);
    transition: background 0.2s;
    text-decoration: none;
}
.sidebar-game-item a:hover { background: #f0f0f0; }
.sidebar-game-item img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    object-fit: cover;
}
.sidebar-game-item span { font-size: 0.85rem; font-weight: 500; }

.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 4px; }
.sidebar-links a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.sidebar-links a:hover { background: #f0f0f0; color: var(--accent); }

/* ===== Feature List ===== */
.feature-list { margin: 16px 0; }
.feature-item {
    background: #f8f9fa;
    border-left: 3px solid var(--accent);
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.feature-item h4 { margin-bottom: 4px; color: var(--primary); }

/* ===== Provider List ===== */
.provider-list { margin: 12px 0; }
.provider-item {
    padding: 8px 16px;
    background: #f0f4ff;
    margin-bottom: 6px;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

/* ===== Author Box (EEAT) ===== */
.author-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    margin-top: 24px;
    background: linear-gradient(135deg, #f8f9fa, #e8eaf6);
    border: 1px solid #c5cae9;
    border-radius: var(--radius-lg);
}
.author-box--large { margin: 24px 0; }
.author-box__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
}
.author-box__name { font-size: 1rem; color: var(--primary); }
.author-box__bio { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }
.author-box__expertise {
    margin-top: 8px;
    font-size: 0.8rem;
    background: #fff;
    padding: 6px 12px;
    border-radius: var(--radius);
    display: inline-block;
}
.author-box__expertise span { font-weight: 600; }

/* ===== Game Grid ===== */
.game-grid-section { padding: 40px 0; background: #fff; }
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.game-grid--list .game-card { grid-column: span 2; }
.game-grid--list { max-width: 900px; margin-left: auto; margin-right: auto; }

.game-card {
    display: flex;
    gap: 16px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.game-card__img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
    background: #e0e0e0;
}
.game-card__body { flex: 1; }
.game-card__name {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary);
}
.game-card__meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.game-card__rtp { color: var(--success); font-weight: 700; }
.game-card__tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.game-card__desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }
.game-card__btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}
.game-card__btn:hover { background: var(--accent-light); color: #fff; }

/* Tags */
.tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.tag--volatility { background: #e3f2fd; color: #1565c0; }
.tag--maxwin { background: #fff3e0; color: #e65100; }
.tag--rtp { background: #e8f5e9; color: #2e7d32; }

/* ===== RTP Section ===== */
.rtp-section { padding: 40px 0; }
.rtp-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.rtp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.rtp-table th {
    background: var(--primary);
    color: var(--text-white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.rtp-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.rtp-table tr:hover td { background: #f5f5f5; }
.rtp-table td a { color: var(--primary); font-weight: 500; text-decoration: none; }
.rtp-table td a:hover { color: var(--accent); }

.rtp-highlight { color: var(--success); font-weight: 700; }

.rtp-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.rtp-status--high { background: #e8f5e9; color: #2e7d32; }
.rtp-status--medium { background: #fff8e1; color: #f57f17; }
.rtp-status--low { background: #f5f5f5; color: var(--text-light); }

/* ===== Pola Section ===== */
.pola-section { padding: 40px 0; background: #fff; }
.pola-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.pola-cards--full { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto 24px; }
.pola-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}
.pola-card--featured { display: flex; gap: 20px; }
.pola-card__img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
}
.pola-card__body { flex: 1; }
.pola-card__title { font-size: 1.1rem; margin-bottom: 6px; color: var(--primary); }
.pola-card__meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.pola-card__info { font-size: 0.9rem; color: var(--text); margin-top: 8px; }
.pola-card__detail h4 { margin-bottom: 4px; color: var(--accent); }

/* ===== FAQ Section ===== */
.faq-section { padding: 40px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--accent);
}
.faq-item__question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 4px;
}
.faq-item__answer { font-size: 0.9rem; color: var(--text-light); }

/* ===== Page Header ===== */
.page-header {
    text-align: center;
    padding: 32px 0 24px;
}
.page-header__title { font-size: 1.8rem; color: var(--primary); margin-bottom: 8px; }
.page-header__desc { color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* ===== Info Box ===== */
.info-box {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.info-box h3 { margin-bottom: 6px; color: #1565c0; }
.info-box p { font-size: 0.9rem; color: var(--text); }

/* ===== Disclaimer ===== */
.disclaimer-section { padding: 24px 0; }
.disclaimer-box {
    background: #fff3e0;
    border: 1px solid #ffcc02;
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 0.85rem;
    color: var(--text);
}
.disclaimer-box strong { color: #e65100; }

/* ===== Game Review Header ===== */
.game-review-header {
    background: linear-gradient(135deg, #f0f4ff, #fff);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}
.game-review-header__top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.game-review-header__logo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}
.game-review-header__title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary);
}
.game-review-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.meta-item strong { color: var(--text); }
.game-review-header__author {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.game-review-header__author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Game Stats Bar */
.game-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.game-stat {
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent);
}
.game-stat__value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}
.game-stat__label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

.game-review-body { font-size: 0.95rem; }
.tips-list li { margin-bottom: 10px; }

/* ===== Article Nav ===== */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ===== Contact Layout ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.contact-info__item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-info__icon { font-size: 1.3rem; }
.contact-info__item strong { display: block; margin-bottom: 2px; color: var(--primary); }
.contact-info__item p { font-size: 0.9rem; color: var(--text-light); }
.contact-topics {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.contact-topics h2 { margin-bottom: 12px; }
.contact-topics li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

/* ===== Game Screenshots ===== */
.game-screenshots { margin: 16px 0; }
.game-screenshots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
.game-screenshots__item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.game-screenshots__item img {
    width: 100%;
    height: auto;
    display: block;
}
.game-screenshots__item figcaption {
    padding: 8px 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

/* ===== Changelog List ===== */
.changelog-list { margin: 8px 0; }
.changelog-item {
    padding: 16px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}
.changelog-item__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.changelog-item__head time {
    font-size: 0.8rem;
    color: var(--text-light);
}
.changelog-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Pros & Cons Grid ===== */
.proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 12px 0;
}
.proscons-col {
    padding: 16px;
    border-radius: var(--radius);
}
.proscons-col h3 { margin-bottom: 8px; font-size: 1rem; }
.proscons-col ul { margin-left: 1.2em; }
.proscons-col li { margin-bottom: 4px; font-size: 0.9rem; }
.proscons-col--pros { background: #e8f5e9; border: 1px solid #a5d6a7; }
.proscons-col--pros h3 { color: #2e7d32; }
.proscons-col--cons { background: #fbe9e7; border: 1px solid #ffab91; }
.proscons-col--cons h3 { color: #d84315; }

/* ===== Reviews List ===== */
.reviews-list { margin: 12px 0; }
.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--accent);
    quotes: none;
}
.review-card__body {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.6;
}
.review-card__author {
    font-size: 0.85rem;
    color: var(--primary);
    text-align: right;
}

/* ===== Trust Checklist ===== */
.trust-checklist { margin: 16px 0; }
.trust-checklist__item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.trust-checklist__icon { font-size: 1.2rem; flex-shrink: 0; }
.trust-checklist__item strong { display: block; color: var(--primary); }
.trust-checklist__item p { font-size: 0.85rem; color: var(--text-light); }

/* ===== CTA Banner (in-content) ===== */
.cta-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    margin: 24px 0;
    background: linear-gradient(135deg, #fff0f3, #fff5f0);
    border: 2px dashed var(--accent);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}
.cta-banner__content {
    flex: 1;
    min-width: 200px;
}
.cta-banner__content strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.cta-banner__content span {
    font-size: 0.85rem;
    color: var(--text-light);
}
.cta-banner--final {
    background: linear-gradient(135deg, #fff0f3, #ffe0e6);
    border: 2px solid var(--accent);
    text-align: center;
    flex-direction: column;
    padding: 28px 24px;
}
.cta-banner--final .cta-banner__content {
    text-align: center;
    margin-bottom: 8px;
}

/* ===== Sidebar CTA Widget ===== */
.sidebar-widget--cta {
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    color: #fff;
    padding: 20px 16px;
    border-radius: var(--radius-lg);
    text-align: center;
}
.sidebar-widget--cta .sidebar-widget__title {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
    font-size: 1.05rem;
}
.sidebar-widget--cta p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.95;
}
.sidebar-widget--cta .btn--cta {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.sidebar-widget--cta .btn--cta:hover {
    background: #fff5f5;
    color: var(--accent);
}

/* ===== Mobile Sticky CTA Bar ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--primary);
    padding: 8px 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
}
.mobile-cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.mobile-cta-bar__text {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mobile-cta-bar .btn--cta {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-decoration: none;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-light); color: #fff; }
.btn--cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(233,69,96,0.35);
}
.btn--cta:hover {
    background: linear-gradient(135deg, var(--accent-light), #ff8a65);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233,69,96,0.45);
}
.btn--cta-hero {
    padding: 14px 36px;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.btn--cta-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
    text-align: center;
}
.btn--small { padding: 4px 12px; font-size: 0.8rem; }
.btn--full { display: block; width: 100%; text-align: center; }
.text-center { text-align: center; }

/* ===== Footer ===== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    padding: 40px 0 20px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.footer-col__title {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}
.footer-col p { font-size: 0.85rem; line-height: 1.6; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 4px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.footer-social__link {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    border-radius: var(--radius);
    font-size: 0.75rem;
    text-decoration: none;
    transition: background 0.2s;
}
.footer-social__link:hover { background: rgba(255,255,255,0.2); color: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}
.footer-bottom__disclaimer { opacity: 0.5; margin-top: 4px; }

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .container { padding: 0 12px; }

    .mobile-cta-bar { display: block; }
    body { padding-bottom: 60px; }

    .site-nav__toggle { display: flex; }
    .site-nav__list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--primary);
        border-radius: var(--radius);
        padding: 8px 0;
        min-width: 180px;
        max-width: calc(100vw - 24px);
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        z-index: 200;
    }
    .site-nav__list--open { display: flex; }
    .site-header__cta { gap: 4px; }
    .site-header__btn { padding: 4px 10px; font-size: 0.75rem; }

    .hero__inner { flex-direction: column; text-align: center; }
    .hero__title { font-size: 1.4rem; }
    .hero__image { order: -1; }
    .hero__image img { width: 200px; }

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

    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }

    .game-grid { grid-template-columns: 1fr; }
    .game-grid--list .game-card { grid-column: span 1; }
    .game-grid--list { max-width: 100%; }
    .game-card { flex-direction: column; }
    .game-card__img { width: 80px; height: 80px; }

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

    .pola-card--featured { flex-direction: column; }
    .pola-card__img { width: 60px; height: 60px; }

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

    .contact-layout { grid-template-columns: 1fr; }

    .game-review-header__top { flex-direction: column; }

    .proscons-grid { grid-template-columns: 1fr; }
    .game-screenshots__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-card { padding: 12px 8px; }
    .footer-grid { grid-template-columns: 1fr; }
}
