/* =====================================================
   Mine-Slot-mx.com.mx — Global Stylesheet 2026
   Theme: Dark Space / Mines Casino — Electric Blue + Gold
   ===================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --bg: #030918;
    --bg-card: #0a1628;
    --bg-card2: #0d1f3c;
    --bg-hover: #122040;
    --border: rgba(0, 180, 255, 0.12);
    --border-hover: rgba(0, 180, 255, 0.35);

    /* Brand */
    --electric: #00b4ff;
    --electric-dim: rgba(0, 180, 255, 0.15);
    --electric-glow: rgba(0, 180, 255, 0.25);
    --gold: #ffd700;
    --gold-dim: rgba(255, 215, 0, 0.15);
    --danger: #ff3b3b;
    --danger-dim: rgba(255, 59, 59, 0.15);
    --success: #00e676;
    --success-dim: rgba(0, 230, 118, 0.15);
    --purple: #b44fff;
    --purple-dim: rgba(180, 79, 255, 0.15);

    /* Text */
    --text: #e8f0fe;
    --text-muted: #7a9bbf;
    --text-dim: #3d5a7a;

    /* Typography */
    --font-display: 'Orbitron', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Layout */
    --max-w: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;

    /* Shadows */
    --shadow-blue: 0 0 30px rgba(0, 180, 255, 0.2);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --t-fast: 150ms ease;
    --t-med: 250ms ease;
    --t-slow: 400ms ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    max-width: 100%;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('bg.webp') center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

ul {
    list-style: none;
}

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--electric);
    color: #000;
    padding: 8px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
    transition: top var(--t-fast);
}

.skip-link:focus {
    top: 0;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #0a1628, #0d1f3c);
    border: 1px solid var(--electric);
    border-radius: var(--radius);
    padding: 12px 20px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9000;
    opacity: 0;
    transform: translateX(120%);
    transition: opacity var(--t-med), transform var(--t-med);
    box-shadow: var(--shadow-blue);
    max-width: 320px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 9, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 68px;
    display: flex;
    align-items: center;
}

.header.scrolled {
    border-bottom-color: rgba(0, 180, 255, 0.25);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--electric);
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
    flex-shrink: 0;
    transition: color var(--t-fast);
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-logo:hover {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--electric);
    background: var(--electric-dim);
}

.nav-cta {
    background: linear-gradient(135deg, #0044a8, #0077ff);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    border: 1px solid rgba(0, 180, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 100, 255, 0.3);
    margin-left: 4px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #0055cc, #0099ff) !important;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
    transform: translateY(-1px);
}

/* ===== BURGER ===== */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-left: auto;
    flex-shrink: 0;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--electric);
    border-radius: 2px;
    transition: transform var(--t-med), opacity var(--t-fast);
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== DRAWER ===== */
.nav-drawer {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: rgba(6, 14, 35, 0.98);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
    z-index: 1001;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    overflow-y: auto;
}

.nav-drawer.open {
    transform: translateX(0);
}

.nav-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--t-fast);
    border: 1px solid transparent;
}

.nav-drawer-link:hover,
.nav-drawer-link.active {
    color: var(--electric);
    background: var(--electric-dim);
    border-color: var(--border);
}

.nav-drawer-link .drawer-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.nav-drawer-cta {
    background: linear-gradient(135deg, #0044a8, #0077ff);
    color: #fff !important;
    border-color: rgba(0, 180, 255, 0.3) !important;
    margin-top: 8px;
    box-shadow: 0 0 16px rgba(0, 100, 255, 0.25);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-slow);
}

.nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* ===== SECTION ===== */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--electric);
    background: var(--electric-dim);
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--electric);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.hero-badge::before {
    content: '💣';
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--electric);
    text-shadow: 0 0 40px rgba(0, 180, 255, 0.5);
    display: block;
}

.hero-title .accent2 {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--t-med);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0044a8, #0099ff);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 100, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 100, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--electric);
    border: 1px solid rgba(0, 180, 255, 0.35);
}

.btn-secondary:hover {
    background: var(--electric-dim);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #800000, #cc0000);
    color: #fff;
    box-shadow: 0 4px 20px rgba(200, 0, 0, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 0, 0, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-stat {
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    transition: border-color var(--t-med), box-shadow var(--t-med);
}

.hero-stat:hover {
    border-color: var(--electric);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.15);
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ===== HERO VISUAL — MINI GRID ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-grid-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 380px;
}

.hgp-tile {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all var(--t-med);
    position: relative;
    overflow: hidden;
}

.hgp-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.05), transparent);
}

.hgp-tile.gem {
    background: rgba(0, 100, 180, 0.3);
    border-color: rgba(0, 180, 255, 0.4);
    box-shadow: 0 0 16px rgba(0, 180, 255, 0.2);
}

.hgp-tile.bomb {
    background: rgba(120, 0, 0, 0.35);
    border-color: rgba(255, 59, 59, 0.4);
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.25);
}

.hgp-tile.hidden {
    animation: tileGlow 3s ease-in-out infinite alternate;
}

@keyframes tileGlow {
    from {
        border-color: rgba(0, 180, 255, 0.08);
    }

    to {
        border-color: rgba(0, 180, 255, 0.35);
        box-shadow: 0 0 12px rgba(0, 180, 255, 0.15);
    }
}

.hgp-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-sm) - 1px);
}

/* ===== CARD ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric), transparent);
    opacity: 0;
    transition: opacity var(--t-med);
}

.card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== DATA TABLE ===== */
.table-wrap {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 480px;
}

.data-table thead tr {
    background: linear-gradient(135deg, #0a1628, #0d1f3c);
    border-bottom: 1px solid rgba(0, 180, 255, 0.2);
}

.data-table th {
    padding: 14px 16px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--electric);
    white-space: nowrap;
}

.data-table td {
    padding: 13px 16px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

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

.data-table tbody tr {
    transition: background var(--t-fast);
}

.data-table tbody tr:hover {
    background: rgba(0, 180, 255, 0.04);
}

.data-table .highlight-col {
    color: var(--gold);
    font-weight: 700;
}

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.badge-blue {
    background: var(--electric-dim);
    color: var(--electric);
    border: 1px solid rgba(0, 180, 255, 0.2);
}

.badge-gold {
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.badge-green {
    background: var(--success-dim);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.badge-red {
    background: var(--danger-dim);
    color: var(--danger);
    border: 1px solid rgba(255, 59, 59, 0.2);
}

.badge-purple {
    background: var(--purple-dim);
    color: var(--purple);
    border: 1px solid rgba(180, 79, 255, 0.2);
}

/* ===== PROGRESS BAR ===== */
.progress-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.progress-item {
    display: block;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.progress-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.progress-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--electric);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0055aa, #00b4ff);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-fill.gold {
    background: linear-gradient(90deg, #b8860b, #ffd700);
}

.progress-fill.danger {
    background: linear-gradient(90deg, #800000, #ff3b3b);
}

/* ===== CHART CONTAINER ===== */
.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.chart-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 20px;
    overflow: hidden;
    word-break: break-word;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    transition: all var(--t-med);
}

.stat-item:hover {
    border-color: var(--electric);
    box-shadow: var(--shadow-blue);
    transform: translateY(-3px);
}

.stat-item-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 8px;
}

.stat-item-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.stat-item-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ===== MINES GAME (DEMO) ===== */
.game-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 100, 255, 0.1);
}

.game-header {
    background: linear-gradient(135deg, #060e24, #0a1628);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.game-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--electric);
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-balance-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.balance-item {
    text-align: center;
}

.balance-label {
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
}

.balance-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.balance-value.danger {
    color: var(--danger);
}

.balance-value.success {
    color: var(--success);
}

/* Mines Settings */
.game-settings {
    padding: 16px 24px;
    background: rgba(3, 9, 24, 0.6);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.setting-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.setting-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.setting-input {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    width: 90px;
    transition: border-color var(--t-fast);
}

.setting-input:focus {
    outline: none;
    border-color: var(--electric);
}

.setting-select {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    width: 110px;
}

.setting-select:focus {
    outline: none;
    border-color: var(--electric);
}

/* Multiplier display */
.multiplier-display {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--success);
    background: var(--success-dim);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    margin-left: auto;
}

/* Mine Grid */
.game-board {
    padding: 24px;
    position: relative;
}

.mine-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 100%;
}

.mine-tile {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    background: var(--bg-card2);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--t-med);
    font-size: 0;
}

.mine-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
}

.mine-tile:hover:not(.revealed):not(.disabled) {
    border-color: var(--electric);
    box-shadow: 0 0 16px rgba(0, 180, 255, 0.3);
    transform: scale(1.04);
}

.mine-tile.revealed-gem {
    background: rgba(0, 80, 160, 0.4);
    border-color: rgba(0, 180, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
    cursor: default;
}

.mine-tile.revealed-bomb {
    background: rgba(120, 0, 0, 0.5);
    border-color: rgba(255, 59, 59, 0.7);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    cursor: default;
    animation: bombShake 0.3s ease;
}

.mine-tile.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.mine-tile img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

@keyframes bombShake {

    0%,
    100% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-4px, 2px);
    }

    40% {
        transform: translate(4px, -2px);
    }

    60% {
        transform: translate(-4px, 0);
    }

    80% {
        transform: translate(2px, 2px);
    }
}

@keyframes gemReveal {
    0% {
        transform: scale(0) rotate(-20deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.mine-tile img.animate {
    animation: gemReveal 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Game Overlay */
.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 9, 24, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: var(--radius);
    z-index: 10;
    transition: opacity var(--t-med);
    backdrop-filter: blur(4px);
}

.game-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.overlay-icon {
    font-size: 4rem;
}

.overlay-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 0.05em;
}

.overlay-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Game Controls */
.game-controls {
    padding: 16px 24px;
    background: rgba(3, 9, 24, 0.6);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-play {
    background: linear-gradient(135deg, #005500, #00cc44);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0, 180, 0, 0.3);
    transition: all var(--t-med);
    letter-spacing: 0.05em;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 0, 0.4);
}

.btn-cashout {
    background: linear-gradient(135deg, #805500, #ffaa00);
    color: #000;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(255, 150, 0, 0.3);
    transition: all var(--t-med);
    letter-spacing: 0.05em;
}

.btn-cashout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 150, 0, 0.4);
}

.btn-cashout:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.game-status {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--t-fast);
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--electric);
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--electric);
    flex-shrink: 0;
    transition: transform var(--t-med);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow);
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ===== CASINO CARDS ===== */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--t-med);
}

.casino-card:hover {
    border-color: var(--electric);
    box-shadow: var(--shadow-blue);
    transform: translateY(-3px);
}

.casino-logo-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 50, 120, 0.5), rgba(0, 100, 200, 0.3));
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.casino-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.casino-bonus {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.casino-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.casino-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.casino-chip {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--electric-dim);
    color: var(--electric);
    border: 1px solid rgba(0, 180, 255, 0.15);
}

/* ===== STRATEGY STEPS ===== */
.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    width: 100%;
}

.strategy-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--t-med);
}

.strategy-step:hover {
    border-color: var(--electric);
}

.step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0044a8, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0, 100, 255, 0.3);
}

.step-content {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.step-title {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    font-size: 0.95rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ===== RTP METER ===== */
.rtp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-bottom: 48px;
}

.rtp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.paytable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.rtp-meter-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
}

.rtp-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    position: relative;
}

.rtp-circle svg {
    transform: rotate(-90deg);
}

.rtp-circle-bg {
    fill: none;
    stroke: rgba(0, 180, 255, 0.08);
    stroke-width: 10;
}

.rtp-circle-fill {
    fill: none;
    stroke: url(#rtp-gradient);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    transition: stroke-dashoffset 2s ease;
}

.rtp-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.rtp-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rtp-sublabel {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrap {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 600px;
}

.comparison-table th {
    background: var(--bg-card2);
    padding: 14px 16px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--electric);
    text-align: left;
    border-bottom: 1px solid rgba(0, 180, 255, 0.15);
}

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

.comparison-table .highlight-col {
    color: var(--gold);
    font-weight: 700;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 180, 255, 0.03);
}

/* ===== RESPONSIBLE GAMING ===== */
.rg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rg-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--t-med);
}

.rg-card:hover {
    border-color: var(--electric);
}

.rg-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

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

.rg-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(3, 9, 24, 0.98) 100%);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--electric);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-about-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.footer-about-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.6;
    padding: 10px 12px;
    background: rgba(255, 59, 59, 0.05);
    border: 1px solid rgba(255, 59, 59, 0.1);
    border-radius: var(--radius-sm);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.83rem;
    color: var(--text-muted);
    transition: color var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--electric);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-text {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-dev-link {
    color: var(--electric);
    font-weight: 600;
}

.footer-dev-link:hover {
    color: var(--gold);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 59, 59, 0.15);
    border: 2px solid rgba(255, 59, 59, 0.3);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--danger);
    margin-top: 12px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GLOW DIVIDER ===== */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric), transparent);
    opacity: 0.3;
    margin: 0;
}

/* ===== MOBILE NAV RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .nav-burger {
        display: flex;
    }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

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

    .hero-grid-preview {
        max-width: 280px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
    }

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

    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        overflow: hidden;
    }

    .strategy-grid>* {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .rtp-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .rtp-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .paytable-grid {
        grid-template-columns: 1fr !important;
    }

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

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

    .rtp-hero-grid>*,
    .rtp-cards-grid>*,
    .paytable-grid>* {
        min-width: 0;
    }

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

    .section {
        padding: 56px 0;
    }

    .game-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-settings {
        gap: 10px;
    }

    .setting-input,
    .setting-select {
        width: 80px;
    }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        overflow: visible;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .game-controls {
        flex-direction: column;
    }

    .btn-play,
    .btn-cashout {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .mine-grid {
        gap: 5px;
    }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== ADDITIONAL PAGE COMPONENTS ===== */

/* Grid 4 */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsible Gambling Cards */
.rg-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: border-color var(--t-med), transform var(--t-med);
}

.rg-card:hover {
    border-color: var(--electric);
    transform: translateY(-4px);
}

.rg-icon {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--electric);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--electric-dim);
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    margin-bottom: 12px;
}

.rg-title {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.rg-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Glow Divider */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric), transparent);
    margin: 0;
    opacity: 0.35;
}

/* Section small */
.section-sm {
    padding: 48px 20px;
}

/* Casino cards grid */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}

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

.casino-logo-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--gold-dim);
    border: 1px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.casino-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.casino-bonus {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.casino-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.casino-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.casino-chip {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--electric);
    background: var(--electric-dim);
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: 20px;
    padding: 3px 10px;
}

/* Comparison table highlight */
.comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.comparison-table th {
    background: var(--bg-card2);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: middle;
}

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

.comparison-table tr:hover td {
    background: var(--bg-card2);
}

.comparison-table .highlight-col {
    background: rgba(0, 180, 255, 0.05);
    font-weight: 700;
    color: var(--text);
    border-left: 1px solid rgba(0, 180, 255, 0.15);
    border-right: 1px solid rgba(0, 180, 255, 0.15);
}

/* Badge variants */
.badge-purple {
    background: var(--purple-dim);
    color: var(--purple);
    border-color: rgba(180, 79, 255, 0.25);
}

/* Progress fill variants */
.progress-fill.gold {
    background: linear-gradient(90deg, var(--gold), #ffaa00);
}

.progress-fill.danger {
    background: linear-gradient(90deg, var(--danger), #ff6600);
}

/* RTP Hero Grid */
.rtp-hero-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 32px;
}

/* RTP Cards Grid */
.rtp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive for new components */
@media (max-width: 900px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .rtp-hero-grid {
        grid-template-columns: 1fr;
    }

    .rtp-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .section-sm {
        padding: 32px 16px;
    }
}