:root {
    --color-primary: #027B5B;
    --color-primary-dark: #015C44;
    --color-primary-light: #03996F;
    --color-accent: #F9DC1C;
    --color-accent-dark: #E0C400;
    --color-bg-dark: #1A1A2E;
    --color-bg-darker: #0F0F1A;
    --color-bg-card: #16213E;
    --color-white: #FFFFFF;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #CCCCCC;
    --color-gray-600: #666666;
    --color-gray-800: #333333;
    --color-text: #FFFFFF;
    --color-text-muted: #B0B0C0;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1200px;
    --header-height: 70px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.2);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent-dark);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 2.25rem; margin-bottom: 8px; }
h2 { font-size: 1.625rem; margin-bottom: 6px; }
h3 { font-size: 1.125rem; margin-bottom: 4px; }
h4 { font-size: 1rem; margin-bottom: 4px; }

p {
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}

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

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg-darker);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-bg-darker);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-bg-darker);
}

.btn-green {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-green:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 1rem;
}

/* ===== HEADER ===== */

.site-header {
    background: var(--color-bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav ul {
    display: flex;
    gap: 4px;
}

.header-nav a {
    display: block;
    padding: 8px 14px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.header-actions {
    display: flex;
    gap: 10px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    position: relative;
    z-index: 1001;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 32px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    display: block;
}

/* ===== INNER HERO ===== */

.inner-hero {
    background: var(--color-bg-darker);
    padding: 16px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.inner-hero h1 {
    margin-bottom: 4px;
}

.inner-hero-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
    max-width: 680px;
}

/* ===== BREADCRUMBS ===== */

.breadcrumbs {
    padding: 0 0 8px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.8125rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 4px;
    color: var(--color-gray-600);
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs span {
    color: var(--color-white);
}

/* ===== HERO ===== */

.hero {
    background: linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-primary-dark) 50%, var(--color-bg-darker) 100%);
    padding: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(2, 123, 91, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(249, 220, 28, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-white), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    margin: 0 6px;
}

/* ===== SECTIONS ===== */

.section {
    padding: 36px 0;
}

.section-alt {
    background: var(--color-bg-darker);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    margin-bottom: 6px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SLOTS GRID ===== */

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.slot-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.slot-card a {
    display: block;
    text-decoration: none;
}

.slot-card-img {
    aspect-ratio: 3 / 2;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-bg-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slot-card-img .slot-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.slot-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slot-card-body {
    padding: 10px;
}

.slot-card-body h3 {
    color: var(--color-white);
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.slot-card-body .slot-provider {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.slot-card-body .slot-rtp {
    font-size: 0.6875rem;
    color: var(--color-primary-light);
    font-weight: 600;
}

/* ===== PAGE CONTENT ===== */

.page-header {
    padding: 10px 0 8px;
}

.page-header h1 {
    margin-bottom: 6px;
}

.page-content {
    padding: 0 0 16px;
}

.page-content h2 {
    margin: 16px 0 6px;
    color: var(--color-white);
}

.page-content h3 {
    margin: 12px 0 4px;
    color: var(--color-white);
}

.page-content ul,
.page-content ol,
.content-block ul,
.content-block ol {
    margin: 10px 0 14px;
    padding-left: 24px;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.page-content ul,
.content-block ul {
    list-style: disc;
}

.page-content ol,
.content-block ol {
    list-style: decimal;
}

.page-content li,
.content-block li {
    margin-bottom: 4px;
    font-size: 0.9375rem;
}

.page-content li::marker,
.content-block li::marker {
    color: var(--color-primary-light);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 14px 0 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.page-content table th {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.page-content table td {
    padding: 10px 14px;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

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

.page-content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.page-content table td strong {
    color: var(--color-white);
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.content-block {
    margin-bottom: 20px;
}

.content-image {
    margin: 16px 0 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .content-image {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===== GAME SINGLE ===== */

.game-screenshot {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.game-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-screenshot-placeholder {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.game-screenshot-placeholder .placeholder-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 6px;
}

.game-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 24px;
    gap: 20px;
}

.game-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.game-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-meta-label {
    font-size: 0.6875rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.game-meta-value {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-white);
}

.btn-play {
    padding: 12px 32px;
    font-size: 0.9375rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

/* ===== APP PAGE ===== */

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.app-feature-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-feature-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.app-feature-card h3 {
    color: var(--color-white);
    margin-bottom: 4px;
}

.app-download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

/* ===== LIVE PAGE ===== */

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.live-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform var(--transition);
}

.live-card:hover {
    transform: translateY(-2px);
}

.live-card-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
    background: var(--color-bg-darker);
}

.live-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.live-card-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-card-header h3 {
    color: #fff;
    margin: 0;
}

.live-badge {
    background: #E74C3C;
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 20px;
}

.live-card-body {
    padding: 14px 16px;
}

.live-card-body p {
    margin-top: 0;
    margin-bottom: 12px;
}

/* ===== 404 PAGE ===== */

.page-404 {
    text-align: center;
    padding: 60px 0;
}

.page-404 h1 {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.page-404 p {
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

/* ===== TOC ===== */

.toc {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
}

.toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.toc-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
}

.toc-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition);
    color: var(--color-text-muted);
}

.toc.open .toc-arrow {
    transform: rotate(180deg);
}

.toc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.toc-body ol {
    padding: 4px 20px 14px;
    counter-reset: toc-counter;
    list-style: none;
}

.toc-body li {
    counter-increment: toc-counter;
    padding: 3px 0;
}

.toc-body li::before {
    content: counter(toc-counter) ". ";
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.toc-body a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    padding: 4px 0;
    display: inline;
    transition: color var(--transition);
}

.toc-body a:hover {
    color: var(--color-accent);
}

/* ===== REVIEWS ===== */

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

.review-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 18px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-white);
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.review-stars {
    margin-left: auto;
    color: var(--color-accent);
    font-size: 0.875rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* ===== FAQ ===== */

.faq-list {
    width: 100%;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
    overflow: hidden;
}

h3.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
    gap: 16px;
}

h3.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

h3.faq-question .faq-icon {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--color-primary-light);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 16px 14px;
}

.faq-answer-inner p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */

.site-footer {
    background: var(--color-bg-darker);
    padding: 36px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 24px;
}

.footer-brand p {
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-brand img {
    height: 32px;
    width: auto;
}

.footer-links h3 {
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.footer-links a {
    display: block;
    padding: 3px 0;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    transition: color var(--transition);
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--color-gray-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    margin: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    h1 { font-size: 1.625rem; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1rem; }

    .header-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-darker);
        z-index: 999;
        padding: 70px 24px 24px;
        transition: right var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 2px;
    }

    .header-nav a {
        padding: 10px 14px;
        font-size: 0.9375rem;
    }

    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 32px 0;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .hero .btn {
        margin: 3px;
    }

    .inner-hero {
        padding: 12px 0 16px;
    }

    .section {
        padding: 28px 0;
    }

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

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

    .app-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .app-download-buttons {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.375rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 0.9375rem; }

    .hero {
        padding: 24px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section {
        padding: 22px 0;
    }

    .slots-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .game-info-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 14px 16px;
    }

    .game-meta {
        justify-content: center;
        gap: 20px;
    }

    .btn-play {
        width: 100%;
    }

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

    .live-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
