/* ============================================================
   McLuck Official CA — Main Stylesheet
   Brand: Dark Purple + Gold + Rainbow accents
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

/* === CSS Variables === */
:root {
    --purple-deep: #0d0120;
    --purple-dark: #1a0533;
    --purple-mid: #2d0b5c;
    --purple-light: #5b21b6;
    --gold: #FFD700;
    --gold-dark: #d4aa00;
    --gold-light: #ffe84d;
    --pink: #e91e8c;
    --cyan: #00d4ff;
    --green: #00e676;
    --white: #ffffff;
    --text-main: #e8e0f5;
    --text-muted: #9b8fb5;
    --border: rgba(255, 215, 0, 0.2);
    --card-bg: rgba(45, 11, 92, 0.6);
    --card-hover: rgba(91, 33, 182, 0.5);
    --gradient-hero: linear-gradient(135deg, #0d0120 0%, #1a0533 40%, #2d0b5c 100%);
    --gradient-gold: linear-gradient(90deg, #FFD700, #ff8c42, #e91e8c);
    --gradient-btn: linear-gradient(135deg, #FFD700, #ff8c42);
    --gradient-card: linear-gradient(135deg, rgba(45, 11, 92, 0.8), rgba(26, 5, 51, 0.9));
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-purple: 0 8px 32px rgba(13, 1, 32, 0.6);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
}

/* === Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--purple-deep);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    color: var(--gold-light);
}

ul {
    list-style: none;
}

/* === Skip to content === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--gold);
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 6px;
}

/* ===================== HEADER ===================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 1, 32, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--purple-light);
    -webkit-text-fill-color: var(--purple-light);
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav.main-nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active {
    background: var(--purple-mid);
    color: var(--gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-login {
    padding: 9px 20px;
    border-radius: var(--radius);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.btn-login:hover {
    background: var(--gold);
    color: #000;
}

.btn-register {
    padding: 10px 22px;
    border-radius: var(--radius);
    background: var(--gradient-btn);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.45);
    color: #000;
}

/* Tracker button */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    background: var(--gradient-btn);
    color: #000;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
    text-decoration: none;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 215, 0, 0.55);
    color: #000;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(233, 30, 140, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    opacity: 0.55;
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 80px 20px;
}

.section-sm {
    padding: 50px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--gold);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title .gold {
    color: var(--gold);
}

.section-sub {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
}

/* ===================== CARDS ===================== */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================== GRIDS ===================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===================== TABLES ===================== */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    /* allows overflow-x to work inside flex containers */
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card-bg);
    display: block;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

caption {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    text-align: left;
    padding: 16px 20px 12px;
    font-family: 'Montserrat', sans-serif;
}

thead th {
    background: rgba(91, 33, 182, 0.6);
    color: var(--gold);
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(91, 33, 182, 0.2);
}

tbody td {
    padding: 13px 16px;
    color: var(--text-main);
}

tbody td:first-child {
    font-weight: 600;
    color: var(--white);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-purple {
    background: rgba(91, 33, 182, 0.3);
    color: #c084fc;
    border: 1px solid rgba(91, 33, 182, 0.5);
}

/* ===================== CHART CONTAINER ===================== */
.chart-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}

.chart-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.chart-container {
    position: relative;
    height: 280px;
    min-height: 180px;
    width: 100%;
}

.chart-container canvas {
    max-width: 100% !important;
}

/* ===================== SEO CONTENT ===================== */
.seo-content {
    background: rgba(26, 5, 51, 0.7);
    padding: 70px 20px;
    border-top: 1px solid var(--border);
}

.seo-article {
    max-width: 900px;
    margin: 0 auto;
}

.seo-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    margin: 40px 0 16px;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin: 28px 0 12px;
}

.seo-article p {
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
}

.seo-article strong {
    color: var(--white);
}

.seo-article a.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-article a.text-link:hover {
    color: var(--gold-light);
}

.seo-article ul.seo-list {
    margin: 16px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-article ul.seo-list li {
    padding-left: 20px;
    position: relative;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.7;
}

.seo-article ul.seo-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===================== FAQ ===================== */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}

.faq-q {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: var(--card-bg);
    transition: var(--transition);
    user-select: none;
}

.faq-q:hover {
    background: var(--card-hover);
}

.faq-q .arrow {
    color: var(--gold);
    font-size: 18px;
    transition: transform 0.2s;
}

.faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(13, 1, 32, 0.5);
}

.faq-a p {
    padding: 16px 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    padding: 14px 20px;
    background: rgba(13, 1, 32, 0.5);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb-inner a {
    color: var(--text-muted);
}

.breadcrumb-inner a:hover {
    color: var(--gold);
}

.breadcrumb-inner .sep {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-inner .current {
    color: var(--white);
}

/* ===================== FOOTER ===================== */
footer {
    background: rgba(6, 0, 16, 0.98);
    border-top: 1px solid var(--border);
    padding: 60px 20px 24px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: rgba(155, 143, 181, 0.6);
    max-width: 600px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

/* ===================== UTILITIES ===================== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-muted);
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-40 {
    margin-bottom: 40px;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* Highlight box */
.highlight-box {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}

/* Coins visual */
.coins-strip {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 32px 0;
}

.coin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.coin-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.coin-gc {
    background: linear-gradient(135deg, #FFD700, #ff8c42);
}

.coin-sc {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
}

.coin-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Progress bar */
.progress-bar {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    height: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--gradient-gold);
    transition: width 1s ease;
}

/* Star rating */
.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 18px;
}

/* ===================== MOBILE ===================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {

    /* ---- Navigation ---- */
    nav.main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(13, 1, 32, 0.98);
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }

    nav.main-nav.open {
        display: flex;
    }

    nav.main-nav a {
        padding: 13px 16px;
        width: 100%;
        border-radius: 8px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta .btn-login,
    .header-cta .btn-register {
        display: none;
    }

    /* ---- Grids (class-based) ---- */
    .grid-3,
    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr !important;
    }

    /* Override ONLY specific known inline grids — авторский + review страницы */
    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:2fr 1fr"],
    div[style*="grid-template-columns: 2fr 1fr"],
    div[style*="grid-template-columns:1fr 1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* ---- Hero ---- */
    .hero {
        min-height: 380px;
    }

    .hero-img {
        display: none;
    }

    .hero-content {
        padding: 48px 16px;
    }

    .hero h1 {
        max-width: 100%;
    }

    /* ---- Footer ---- */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* ---- Hero stats ---- */
    .hero-stats {
        gap: 16px;
    }

    /* ---- Charts ---- */
    .chart-container {
        height: 200px;
    }

    /* ---- Section paddings ---- */
    .section {
        padding: 48px 16px;
    }

    .section-sm {
        padding: 36px 16px;
    }

    .seo-content {
        padding: 48px 16px;
    }

    /* ---- Review stars panel — fix for inline grid ---- */
    .card [style*="grid-template-columns"],
    section [style*="grid-template-columns:1fr 1fr"],
    section [style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:2fr 1fr"],
    div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* ---- VIP tier grid ---- */
    div[style*="repeat(auto-fit"] {
        grid-template-columns: 1fr 1fr !important;
    }

    /* ---- Buttons full-width on small screens ---- */
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    /* ---- Mobile tracker bar ---- */
    .mobile-tracker-bar {
        padding: 10px 14px;
        gap: 10px;
    }

    .mobile-tracker-bar .promo-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 14px;
    }

    .section-sm {
        padding: 28px 14px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .grid-4 {
        grid-template-columns: 1fr !important;
    }

    .section-title {
        font-size: 22px;
    }

    .btn-play {
        padding: 12px 22px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .chart-container {
        height: 180px;
    }

    /* VIP tiers — 1 col on phones */
    div[style*="repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }

    /* Card paddings */
    .card {
        padding: 20px;
    }

    /* Table font size */
    table {
        font-size: 12px;
    }

    thead th {
        padding: 10px 10px;
    }

    tbody td {
        padding: 10px 10px;
    }

    caption {
        font-size: 14px;
        padding: 12px 12px;
    }

    /* Step cards in how-to-play */
    .card[style*="grid-template-columns:56px"] {
        grid-template-columns: 44px 1fr !important;
    }
}