/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* JackpotCity Colors */
    --bg-root: #21134B;
    --bg-surface: #381644;
    --bg-hero-top: #6B2C7A;
    --bg-hero-bottom: #21134B;
    --accent-primary: #F6AB0B;
    --accent-primary-hover: #FFBE2E;
    --accent-primary-active: #DA8B00;
    --accent-secondary: #6B2C7A;
    --text-primary: #FFFFFF;
    --text-secondary: #F6E3FF;
    --text-inverse: #21134B;
    --border-subtle: #522169;
    --shadow-base: rgba(0, 0, 0, 0.55);
    --shadow-soft: rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --h1-size: 32px;
    --h1-line-height: 1.25;
    --h1-weight: 700;
    --h2-size: 24px;
    --h2-line-height: 1.3;
    --h2-weight: 700;
    --h3-size: 18px;
    --h3-line-height: 1.35;
    --h3-weight: 600;
    --body-size: 14px;
    --body-line-height: 1.45;
    --body-weight: 400;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 40px 20px;
    
    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 9999px;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-family);
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--text-primary);
    background: linear-gradient(180deg, #21134B 0%, #381644 60%, #21134B 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 20px 0;
    background: var(--bg-root);
}

.breadcrumbs__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.breadcrumbs__list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs__item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumbs__item:last-child {
    color: var(--text-primary);
}

/* Header */
.header {
    background: rgba(33, 19, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    will-change: transform;
    contain: layout style paint;
}

.header__top {
    background: rgba(33, 19, 75, 0.95);
    padding: 10px 0;
}

.header__top-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__cta-buttons {
    display: flex;
    gap: 12px;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.header__nav {
    background: rgba(33, 19, 75, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav__list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 32px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.nav__link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--body-size);
    transition: color 0.3s;
}

.nav__link:hover {
    color: var(--accent-primary);
}

/* ToC */
.header__toc-wrapper {
    background: rgba(33, 19, 75, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
}

.header__toc-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    scroll-behavior: smooth;
}

.header__toc-container::-webkit-scrollbar {
    height: 4px;
}

.header__toc-container::-webkit-scrollbar-track {
    background: transparent;
}

.header__toc-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.header__toc-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.toc {
    overflow: visible;
    display: block;
}

.toc__list {
    display: inline-flex;
    list-style: none;
    gap: 16px;
    padding: 10px 0;
    white-space: nowrap;
    justify-content: flex-start;
    min-width: 100%;
    flex-wrap: nowrap;
}

.toc__item {
    display: inline-block;
    flex-shrink: 0;
}

.toc__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    transition: all 0.3s;
    white-space: nowrap;
}

.toc__link:hover,
.toc__link.active {
    color: var(--text-primary);
    background: rgba(246, 171, 11, 0.2);
}

/* Buttons */
.btn {
    font-family: var(--font-family);
    font-size: var(--body-size);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 12px;
    padding: 16px 32px;
    min-width: 60px;
    text-decoration: none;
    display: inline-block;
    will-change: transform;
}

.btn--primary {
    background: linear-gradient(180deg, #FFD54A 0%, #F6AB0B 50%, #DA8B00 100%);
    color: var(--text-primary);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.65);
}

.btn--primary:hover {
    background: linear-gradient(180deg, #FFE06E 0%, #FFBE2E 50%, #F6AB0B 100%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
}

.btn--primary:active {
    background: linear-gradient(180deg, #F6AB0B 0%, #DA8B00 70%, #B56E00 100%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
    transform: translateY(1px);
}

.btn--primary:focus {
    outline: 2px solid #FFBE2E;
    outline-offset: 2px;
}

.btn--secondary {
    background: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    background: linear-gradient(180deg, #6B2C7A 0%, #5A1F8F 25%, #4A1A6B 50%, #381644 75%, #21134B 100%);
}

.hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.hero__title {
    font-size: var(--h1-size);
    line-height: var(--h1-line-height);
    font-weight: var(--h1-weight);
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 24px;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.hero__lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero__meta-wrapper {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__meta {
    margin-top: 0;
}

.reading-time {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reading-time__label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.reading-time__value {
    color: var(--accent-primary);
    font-weight: 700;
}

.hero__image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__figure {
    margin: 0;
}

.hero__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.btn--hero-cta {
    align-self: center;
}

.hero__fact-check {
    text-align: left;
    padding-top: 0;
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__fact-check span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__fact-check span::before {
    content: '✓';
    color: #4CAF50;
    font-weight: 700;
    font-size: 16px;
}

/* Games Section */
.games {
    padding: var(--section-padding);
    background: var(--bg-root);
}

.games__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.games__title {
    font-size: var(--h2-size);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-weight);
    margin-bottom: 32px;
    text-align: center;
}

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

.game-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-card__image {
    transform: scale(1.05);
}

.game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__play {
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Content Sections */
.content-section {
    padding: var(--section-padding);
    background: var(--bg-root);
}

.content-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.content-section__title {
    font-size: var(--h2-size);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-weight);
    margin-bottom: 24px;
    scroll-margin-top: 120px;
}

.content-section__figure {
    margin: 0 0 32px 0;
    text-align: center;
}

.content-section__image {
    max-width: 47%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: contain;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.content-section__content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-section__content p {
    margin-bottom: 16px;
}

.content-section__content h3 {
    font-size: var(--h3-size);
    line-height: var(--h3-line-height);
    font-weight: var(--h3-weight);
    margin: 24px 0 16px 0;
    color: var(--text-primary);
}

.content-section__content ul,
.content-section__content ol {
    margin: 16px 0 16px 24px;
}

.content-section__content li {
    margin-bottom: 8px;
}

.content-section__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.content-section__content th {
    background: rgba(183, 73, 226, 0.3);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.content-section__content td {
    padding: 12px;
    border-top: 1px solid var(--border-subtle);
}

.content-section__content tr:hover {
    background: rgba(183, 73, 226, 0.1);
}

/* Steps Section */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.step-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    border: 1px solid var(--border-subtle);
}

.step-index {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-body {
    flex: 1;
}

.step-title {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

.pros-col,
.cons-col {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-subtle);
}

.pros-list,
.cons-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pros-list li,
.cons-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 0;
}

.icon-check {
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-cross {
    color: #F44336;
    flex-shrink: 0;
    margin-top: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Author Section */
.author-section {
    padding: var(--section-padding);
    background: var(--bg-root);
}

.author-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.author-section__content {
    display: flex;
    gap: 24px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-subtle);
}

.author-section__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-section__info {
    flex: 1;
}

.author-section__name {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.author-section__bio {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.author-section__date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-root);
}

.faq-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.faq-section__title {
    font-size: var(--h2-size);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-weight);
    margin-bottom: 24px;
}

.faq-section__figure {
    margin: 0 0 32px 0;
    text-align: center;
}

.faq-section__image {
    max-width: 47%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: contain;
    margin: 0 auto;
}

.faq-section__content {
    color: var(--text-secondary);
}

.faq-section__content > p {
    margin-bottom: 24px;
}

.faq-item {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.faq-item__question {
    padding: 20px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-root);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 20px 30px;
}

.footer__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo img {
    height: 50px;
    width: auto;
}

.footer__nav-list {
    list-style: none;
}

.footer__nav-list li {
    margin-bottom: 12px;
}

.footer__nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__nav-list a:hover {
    color: var(--accent-primary);
}

.footer__payment-title {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer__payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-icon {
    padding: 8px 12px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
}

.footer__responsible-gaming a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__responsible-gaming a:hover {
    color: var(--accent-primary);
}

.footer__copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Bonus Slider */
.bonus-slider {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.bonus-cards {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bonus-cards::-webkit-scrollbar {
    display: none;
}

.bonus-card {
    flex: 0 0 300px;
    background: linear-gradient(135deg, rgba(107, 44, 122, 0.2) 0%, rgba(126, 44, 207, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(107, 44, 122, 0.3);
}

.bonus-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-primary);
    color: var(--text-inverse);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    padding-right: 80px;
}

.bonus-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.bonus-card__cta {
    width: 100%;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-primary);
}

@media (max-width: 768px) {
    .bonus-card {
        flex: 0 0 280px;
    }
    
    .slider-prev,
    .slider-next {
        display: none;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--text-inverse);
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all 0.3s;
}

.back-to-top:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header__top-container {
        gap: 8px;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .header__logo {
        flex-shrink: 0;
        max-width: 140px;
    }
    
    .header__logo img {
        height: 32px;
        width: auto;
        max-width: 100%;
    }
    
    .header__cta-buttons {
        display: flex;
        gap: 6px;
        flex-shrink: 1;
        justify-content: flex-end;
        align-items: center;
        min-width: 0;
        margin-left: auto;
    }
    
    .header__burger {
        display: flex;
        flex-shrink: 0;
        margin-left: 4px;
    }
    
    .header__cta-buttons .btn {
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.2px;
        border-radius: 8px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.3;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .header__cta-buttons .btn--register {
        flex-shrink: 1;
    }
    
    .header__cta-buttons .btn--app {
        flex-shrink: 1;
    }
    
    @media (max-width: 480px) {
        .header__logo {
            max-width: 120px;
        }
        
        .header__logo img {
            height: 28px;
        }
        
        .header__cta-buttons .btn {
            padding: 7px 10px;
            font-size: 10px;
            letter-spacing: 0.1px;
        }
        
        .header__cta-buttons {
            gap: 4px;
        }
    }
    
    .header__nav {
        display: none;
    }
    
    .header__nav.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-root);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .header__nav.mobile-open .nav__list {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .header__nav.mobile-open ~ .header__toc-wrapper {
        display: none;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
    }
    
    .hero__image-wrapper {
        order: -1;
    }
    
    .hero__fact-check {
        text-align: center;
    }
    
    .content-section__image,
    .faq-section__image {
        max-width: 100%;
    }
    
    .games__grid {
        grid-template-columns: repeat(10, 1fr);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 10px;
    }
    
    .game-card {
        scroll-snap-align: start;
        min-width: 200px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .author-section__content {
        flex-direction: column;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --h1-size: 24px;
        --h2-size: 20px;
        --h3-size: 16px;
        --body-size: 14px;
    }
}


/* Print Styles */
@media print {
    .header,
    .footer,
    .header__toc-wrapper,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}
