
/* ============================================================
   INOUT GAMES - MAIN STYLESHEET
   ============================================================ */

/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --dark: #0f172a;
    --dark-card: #1e293b;
    --dark-light: #334155;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --transition: 0.3s ease;
    --bg-gradient: radial-gradient(ellipse at 10% 20%, #312e81 0%, transparent 50%),
                    radial-gradient(ellipse at 90% 80%, #1e1b4b 0%, transparent 50%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.7;
    padding-bottom: 110px;
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    border-radius: var(--radius);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0f172a;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-gold-sm {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0f172a;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-gold-sm:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--gray);
    transition: var(--transition);
    text-align: center;
}
.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.btn-sm {
    display: inline-block;
    background: var(--dark-card);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid var(--gray);
    text-align: center;
}
.btn-sm:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

/* ===== HEADER ===== */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo span {
    color: var(--primary-light);
}
.logo .flag {
    font-size: 0.7rem;
    background: var(--primary);
    padding: 2px 12px;
    border-radius: 20px;
    color: var(--white);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 10px;
    }
    .nav-links.open {
        display: flex;
    }
    .logo {
        font-size: 1.2rem;
    }
}

/* ===== HERO ===== */
.hero {
    padding: 40px 0 20px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}
.hero-content h1 .highlight {
    color: var(--primary-light);
}
.hero-content p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin: 16px 0 24px;
}
.hero-stats span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}
.hero-stats i {
    color: var(--gold);
    margin-right: 6px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-image .icon-wrapper {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-glow);
}
.hero-image .icon-wrapper img {
    max-height: 320px;
    width: auto;
    border-radius: var(--radius);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* ===== BANNERS ===== */
.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px 0 40px;
}
.banner-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 28px 32px;
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.banner-card:hover {
    transform: translateY(-4px);
}
.banner-card.vavada {
    border-left-color: #8b5cf6;
}
.banner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}
.banner-card h3 i {
    margin-right: 10px;
}
.banner-card .code {
    background: var(--dark);
    padding: 2px 14px;
    border-radius: 20px;
    color: var(--gold);
    font-weight: 800;
    font-size: 1.1rem;
}
.banner-card p {
    color: var(--gray);
    margin: 10px 0 16px;
    font-size: 0.95rem;
}
.banner-card .btn-gold-sm {
    font-size: 0.9rem;
    padding: 10px 24px;
}

@media (max-width: 700px) {
    .banner-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin: 30px 0 8px;
    color: var(--white);
}
.section-title .sub {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    margin-top: 4px;
}

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin: 24px 0 40px;
}
.game-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}
.popular-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 2px 12px;
    border-radius: 20px;
    z-index: 2;
}
.game-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark);
}
.game-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}
.game-label {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}
.game-card h3 {
    font-size: 1rem;
    margin: 10px 0 4px;
    color: var(--white);
}
.game-card .game-description {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 8px;
}
.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.tags span {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 600;
}
.game-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 30px;
}
.filter-tabs .tab {
    background: var(--dark-card);
    color: var(--gray);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}
.filter-tabs .tab:hover {
    border-color: var(--primary);
    color: var(--white);
}
.filter-tabs .tab.active {
    background: var(--primary);
    color: var(--white);
}

/* ===== TABLE ===== */
.table-wrap {
    overflow-x: auto;
    margin: 20px 0 40px;
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 4px;
    box-shadow: var(--shadow);
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
thead {
    background: var(--primary);
    color: var(--white);
}
th,
td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}
td .check {
    color: #22c55e;
    font-weight: 700;
}
td strong {
    color: var(--white);
}

/* ===== SEO BLOCK ===== */
.seo-block {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 40px 44px;
    margin: 30px 0 40px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-light);
}
.seo-block h2 {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin: 28px 0 12px;
}
.seo-block h2:first-child {
    margin-top: 0;
}
.seo-block h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin: 24px 0 10px;
}
.seo-block h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin: 20px 0 8px;
}
.seo-block p {
    color: var(--gray);
    margin-bottom: 16px;
}
.seo-block ul {
    padding-left: 24px;
    margin: 12px 0 16px;
    color: var(--gray);
}
.seo-block ul li {
    margin-bottom: 8px;
}
.seo-block ul li strong {
    color: var(--white);
}
.seo-block .btn-gold {
    margin-top: 20px;
}
.seo-block .btn-primary {
    margin-top: 20px;
}
@media (max-width: 700px) {
    .seo-block {
        padding: 24px;
    }
    .seo-block h2 {
        font-size: 1.4rem;
    }
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 20px 0 40px;
}
.feature-card {
    background: var(--dark-card);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
}
.feature-card i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}
.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== STICKY BANNER ===== */
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(12px);
    border-top: 3px solid var(--gold);
    padding: 14px 20px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6);
}
.sticky-banner .sticky-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.sticky-banner .sticky-text i {
    color: var(--gold);
    font-size: 1.6rem;
}
.sticky-banner .sticky-text strong {
    color: var(--white);
    font-size: 1rem;
}
.sticky-banner .sticky-text .code {
    background: var(--dark);
    padding: 2px 14px;
    border-radius: 20px;
    color: var(--gold);
    font-weight: 800;
}
.sticky-banner .btn-gold-sm {
    font-size: 0.95rem;
    padding: 10px 28px;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .sticky-banner {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }
    .sticky-banner .sticky-text {
        justify-content: center;
    }
    .sticky-banner .btn-gold-sm {
        width: 100%;
        text-align: center;
    }
    body {
        padding-bottom: 160px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 24px;
}
.footer-grid h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.footer-grid ul {
    list-style: none;
}
.footer-grid ul li {
    margin-bottom: 8px;
}
.footer-grid ul li a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-grid ul li a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}
.footer-bottom .heart {
    color: var(--primary-light);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}
.contact-info-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-info-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 8px;
}
.contact-info-card p {
    color: var(--gray);
}
.contact-info-card a {
    color: var(--primary-light);
}
.contact-info-card a:hover {
    color: var(--gold);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark);
    border: 1px solid var(--dark-light);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 16px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ PAGE ===== */
.faq-item {
    background: var(--dark-card);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-item .faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    user-select: none;
}
.faq-item .faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}
.faq-item .faq-question i {
    color: var(--gold);
    transition: var(--transition);
}
.faq-item .faq-question.active i {
    transform: rotate(180deg);
}
.faq-item .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: var(--gray);
}
.faq-item .faq-answer.open {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* ===== PROS & CONS ===== */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}
.pros-cons .pros {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius);
    padding: 24px;
}
.pros-cons .cons {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius);
    padding: 24px;
}
.pros-cons h3 {
    margin-bottom: 12px;
    color: var(--white);
}
.pros-cons ul {
    list-style: none;
    padding: 0;
}
.pros-cons ul li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray);
}
.pros-cons .pros ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
}
.pros-cons .cons ul li::before {
    content: '❌';
    position: absolute;
    left: 0;
}
@media (max-width: 700px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

/* ===== GAME DETAIL PAGE ===== */
.game-detail-hero {
    padding: 30px 0;
}
.game-detail-hero .game-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.game-detail-hero .game-preview img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.game-detail-hero .game-info h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--white);
}
.game-detail-hero .game-info .subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.game-detail-hero .game-info .game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin: 16px 0;
}
.game-detail-hero .game-info .game-meta span {
    background: var(--dark-card);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-light);
}
.game-detail-hero .game-info .game-meta strong {
    color: var(--white);
}
@media (max-width: 768px) {
    .game-detail-hero .game-header {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}
.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-10 {
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .game-card {
        padding: 10px;
    }
    .game-image img {
        height: 100px;
    }
    .game-card h3 {
        font-size: 0.85rem;
    }
    .game-card .game-description {
        font-size: 0.7rem;
    }
    .tags span {
        font-size: 0.55rem;
        padding: 1px 8px;
    }
    .btn-sm {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .btn-gold-sm {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* ===== ADDITIONAL FIXES FOR DARK TEXT ===== */
/* Все тексты на темном фоне теперь хорошо видны */
.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content h4 {
    color: var(--white);
}
.hero-content p {
    color: var(--gray-light);
}
.banner-card h3 {
    color: var(--white);
}
.banner-card p {
    color: var(--gray-light);
}
.game-card h3 {
    color: var(--white);
}
.game-card .game-description {
    color: var(--gray-light);
}
.faq-item .faq-question {
    color: var(--white);
}
.faq-item .faq-answer {
    color: var(--gray-light);
}
.contact-info-card h3 {
    color: var(--white);
}
.contact-info-card p {
    color: var(--gray-light);
}
.feature-card h3 {
    color: var(--white);
}
.feature-card p {
    color: var(--gray-light);
}
.seo-block p {
    color: var(--gray-light);
}
.seo-block ul li {
    color: var(--gray-light);
}
.seo-block ul li strong {
    color: var(--white);
}
.pros-cons ul li {
    color: var(--gray-light);
}
.pros-cons h3 {
    color: var(--white);
}
td {
    color: var(--gray-light);
}
td strong {
    color: var(--white);
}
.filter-tabs .tab {
    color: var(--gray);
}
.filter-tabs .tab.active {
    color: var(--white);
}
.footer-grid ul li a {
    color: var(--gray);
}
.footer-grid ul li a:hover {
    color: var(--gold);
}
.footer-bottom {
    color: var(--gray);
}
.game-label {
    color: var(--gold);
}
.tags span {
    color: var(--gray-light);
}
