/* ========== BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #1b2838;
    color: #c6d4df;
    min-height: 100vh;
    overflow-x: hidden;
}
img { display: block; }
h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========== NAV ========== */
.main-nav {
    background: #171a21;
    border-bottom: 2px solid #3d4450;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.nav-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #a4d007;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nav-links { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.nav-link {
    color: #c6d4df;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all .2s;
}
.nav-link:hover { background: rgba(102, 192, 244, .1); color: #66c0f4; }
.nav-link.active { background: rgba(164, 208, 7, .15); color: #a4d007; font-weight: 700; }

/* ========== BRAND ========== */
.brand-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo__icon { width: 34px; height: 34px; filter: drop-shadow(0 0 6px rgba(164, 208, 7, .35)); }
.brand-logo__text { font-size: 1.45rem; font-weight: 900; letter-spacing: 2px; color: #fff; white-space: nowrap; }
.brand-logo__accent { color: #a4d007; }
.brand-logo__zone { font-size: .75rem; color: #8f98a0; letter-spacing: 1px; margin-left: 5px; font-weight: 500; vertical-align: super; }
.brand-logo--footer .brand-logo__icon { width: 28px; height: 28px; }
.brand-logo--footer .brand-logo__text { font-size: 1.15rem; }

/* ========== LANDING ========== */
.landing-page { background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%); }
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 192, 244, .1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { max-width: 800px; position: relative; z-index: 1; }
.hero-brand { display: flex; justify-content: center; margin-bottom: 18px; }
.hero-brand__icon {
    width: 84px;
    height: 84px;
    filter: drop-shadow(0 0 18px rgba(102, 192, 244, .35));
    animation: diceFloat 4s ease-in-out infinite;
}
@keyframes diceFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.highlight { color: #a4d007; text-shadow: 0 0 30px rgba(164, 208, 7, .3); }
.highlight-roll { color: #66c0f4; }
.subtitle-text { font-size: 2.2rem; color: #66c0f4; }
.hero-description { font-size: 1.2rem; line-height: 1.8; color: #c6d4df; margin-bottom: 30px; }
.hero-description strong { color: #fff; }
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #8f98a0;
    font-size: 1rem;
    animation: bounce 2s infinite;
}
.cta-arrow { font-size: 2rem; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 12px; color: #fff; }
.section-subtitle { text-align: center; color: #8f98a0; font-size: 1.05rem; margin-bottom: 40px; }

.services-section { padding: 70px 20px; background: #16202d; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border: 1px solid #3d4450;
    border-radius: 8px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); border-color: #66c0f4; box-shadow: 0 10px 30px rgba(102, 192, 244, .2); }
.service-card.disabled { opacity: .5; cursor: not-allowed; }
.service-card.disabled:hover { transform: none; border-color: #3d4450; box-shadow: none; }
.service-icon { font-size: 3rem; margin-bottom: 20px; }
.service-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.service-description { color: #c6d4df; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.service-stats { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.service-stats .stat {
    padding: 6px 12px;
    background: rgba(102, 192, 244, .1);
    border: 1px solid #3d6280;
    border-radius: 4px;
    font-size: .85rem;
    color: #66c0f4;
    font-weight: 600;
}
.service-stats .stat.coming-soon { background: rgba(164, 208, 7, .1); border-color: #a4d007; color: #a4d007; }
.service-cta { color: #a4d007; font-weight: 700; font-size: 1rem; margin-top: auto; }

.how-it-works { padding: 70px 20px; background: #1b2838; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.step { text-align: center; }
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a4d007 5%, #536904 95%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(164, 208, 7, .3);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.step p { color: #8f98a0; line-height: 1.6; }

.benefits { padding: 70px 20px; background: #16202d; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit { text-align: center; padding: 20px; }
.benefit-icon { font-size: 3rem; margin-bottom: 16px; }
.benefit h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.benefit p { color: #c6d4df; line-height: 1.6; }

.faq-section { padding: 70px 20px; background: #1b2838; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #16202d; border: 1px solid #3d4450; border-radius: 6px; padding: 16px 20px; }
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 0; color: #a4d007; font-size: 1.2rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 10px; color: #c6d4df; line-height: 1.65; font-size: .95rem; }

.footer { padding: 40px 20px; background: #0e1419; text-align: center; color: #8f98a0; border-top: 1px solid #3d4450; }
.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.footer__copy { margin-top: 10px; color: #8f98a0; font-size: .9rem; }
.footer__contact { margin-top: 6px; color: #8f98a0; font-size: .85rem; }
.footer__contact a { color: #66c0f4; text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }
.footer__age {
    display: inline-block;
    border: 1px solid #8f98a0;
    border-radius: 3px;
    padding: 1px 6px;
    font-size: .75rem;
    margin-left: 6px;
}
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: #66c0f4; text-decoration: none; font-size: .9rem; }
.footer__legal a:hover { text-decoration: underline; }
.footer__disclaimer { margin: 18px auto 0; font-size: .78rem; color: #556772; line-height: 1.55; max-width: 1200px; }

/* ========== ROULETTE PAGE ========== */
.subtitle { font-size: 1rem; color: #8f98a0; font-weight: 300; margin-bottom: 8px; }
.main-layout { max-width: 1400px; margin: 0 auto; padding: 30px 20px 90px; display: flex; gap: 30px; }
.content-area { flex: 1; display: flex; flex-direction: column; align-items: center; min-width: 0; }
.content-area header { text-align: center; margin-bottom: 25px; }

/* Filters + чекбоксы со свечением (без галочки) */
.filters-container {
    background: #16202d;
    border: 1px solid #3d4450;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 900px;
}
.filter-group { margin-bottom: 15px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-title {
    display: block;
    font-size: .85rem;
    color: #8f98a0;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin: 0 14px 8px 0;
    user-select: none;
    transition: opacity .2s;
}
.checkbox-label:hover { opacity: .8; }
.checkbox-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    background: #22303f;
    border: 1px solid #3d6280;
    border-radius: 4px;
    margin-right: 9px;
    flex-shrink: 0;
    transition: all .18s ease;
}
.checkbox-label:hover .checkmark { border-color: #66c0f4; }
.checkbox-label input[type="radio"] ~ .checkmark { border-radius: 50%; }
.checkbox-label input:checked ~ .checkmark {
    background: rgba(164, 208, 7, .18);
    border-color: #a4d007;
    box-shadow: 0 0 6px rgba(164, 208, 7, .9), 0 0 14px rgba(164, 208, 7, .55), inset 0 0 5px rgba(164, 208, 7, .8);
}
.checkbox-label input:checked ~ .label-text { color: #d2efa9; text-shadow: 0 0 8px rgba(164, 208, 7, .45); }
.source-group .label-text { font-weight: 700; }
.genres-checkboxes { display: flex; flex-wrap: wrap; gap: 4px 6px; }
.genres-checkboxes .checkbox-label { margin: 0 8px 6px 0; font-size: .85rem; }
.genres-checkboxes .checkmark { width: 16px; height: 16px; border-radius: 3px; }
.loading-text { color: #8f98a0; font-style: italic; font-size: .9rem; }

/* Controls */
.controls {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 900px;
    justify-content: center;
}
.spin-button {
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    background: linear-gradient(to right, #a4d007 5%, #536904 95%);
    color: #d2efa9;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .4);
}
.spin-button:hover {
    background: linear-gradient(to right, #b6e608 5%, #6b8705 95%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(164, 208, 7, .3);
}
.spin-button:active { transform: translateY(1px); }
.spin-button:disabled { background: #3d4450; color: #8f98a0; cursor: not-allowed; transform: none; box-shadow: none; }

/* Roulette */
.roulette-wrapper { width: 100%; max-width: 900px; margin-bottom: 35px; }
.roulette-wrapper * { -webkit-user-select: none; user-select: none; }
.roulette-container {
    background: #171a21;
    border-radius: 4px;
    padding: 25px 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, .8), 0 4px 10px rgba(0, 0, 0, .3);
    border: 1px solid #3d4450;
}
.roulette-window {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: #121418;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.selector-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #a4d007;
    transform: translateX(-50%);
    z-index: 100;
    box-shadow: 0 0 10px #a4d007;
}
.selector-arrow {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #a4d007;
    z-index: 101;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}
.roulette-track {
    display: flex;
    gap: 12px;
    position: relative;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.game-card {
    flex-shrink: 0;
    width: 260px;
    height: 160px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    border: 2px solid #2a475e;
    background: linear-gradient(135deg, #2a475e 0%, #1b2838 100%);
    transition: border-color .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    pointer-events: none;
    transition: background .3s;
    z-index: 2;
}
.game-card.winner { border-color: #a4d007; box-shadow: 0 0 20px rgba(164, 208, 7, .4); }
.game-card.winner::after { background: rgba(0, 0, 0, 0); }
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1;
    transition: opacity .3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.game-card img[src=""], .game-card img:not([src]), .game-card img[src*="placeholder"] { opacity: .3; }

/* Winner */
.winner { width: 100%; max-width: 500px; animation: fadeIn .5s ease; }
.winner.hidden { display: none; }
.winner-card {
    background: #16202d;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    border: 1px solid #3d4450;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}
.winner-card h2 { color: #a4d007; font-size: 1.5rem; margin-bottom: 20px; letter-spacing: 1px; }
.winner-card img { width: 100%; max-width: 400px; border-radius: 3px; margin: 0 auto 20px; border: 1px solid #3d4450; }
.winner-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #fff; }
.winner-info { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
.rating, .year { padding: 6px 15px; border-radius: 2px; font-weight: 700; font-size: .9rem; }
.rating { background: #3d4450; color: #a4d007; }
.year { background: #2a475e; color: #66c0f4; }
.winner-card .genres { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.winner-card .genres span {
    padding: 4px 12px;
    background: rgba(102, 192, 244, .1);
    border: 1px solid #3d6280;
    border-radius: 2px;
    font-size: .85rem;
    color: #66c0f4;
}
.winner-description {
    font-size: .95rem;
    color: #8f98a0;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
    padding: 15px;
    background: rgba(0, 0, 0, .2);
    border-radius: 3px;
    border-left: 3px solid #66c0f4;
}
.play-btn {
    display: inline-block;
    padding: 14px 50px;
    background: linear-gradient(to right, #a4d007 5%, #536904 95%);
    color: #d2efa9;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .2s;
    letter-spacing: 1px;
}
.play-btn:hover { background: linear-gradient(to right, #b6e608 5%, #6b8705 95%); color: #fff; box-shadow: 0 4px 15px rgba(164, 208, 7, .3); }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sidebar / marquee */
.sidebar {
    width: 280px;
    background: #16202d;
    border: 1px solid #3d4450;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 500px;
    flex-shrink: 0;
}
.sidebar-header { background: #2a475e; padding: 15px; text-align: center; border-bottom: 1px solid #3d4450; }
.sidebar-header h3 { color: #66c0f4; font-size: .9rem; letter-spacing: 1.5px; font-weight: 700; }
.marquee-container { flex: 1; overflow: hidden; position: relative; }
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 40px;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before { top: 0; background: linear-gradient(to bottom, #16202d, transparent); }
.marquee-container::after { bottom: 0; background: linear-gradient(to top, #16202d, transparent); }
.marquee-content { display: flex; flex-direction: column; gap: 10px; padding: 10px; animation: scrollUp 20s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.win-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(42, 71, 94, .5);
    border-radius: 3px;
    border: 1px solid transparent;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.win-item:hover { border-color: #66c0f4; background: rgba(42, 71, 94, .8); transform: translateX(3px); }
.win-item img { width: 50px; height: 35px; object-fit: cover; border-radius: 2px; }
.win-item-info { flex: 1; overflow: hidden; }
.win-item-name { font-size: .85rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.win-item-rating { font-size: .75rem; color: #a4d007; }
.empty-state { text-align: center; color: #8f98a0; font-size: .85rem; padding: 20px; font-style: italic; }

/* Stats counter */
.stats-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(23, 26, 33, .95);
    border: 1px solid #3d4450;
    border-radius: 4px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .5);
    backdrop-filter: blur(5px);
    z-index: 1000;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-label { font-size: .7rem; color: #8f98a0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.stat-value { font-size: 1.2rem; font-weight: 700; color: #66c0f4; }
.stat-divider { width: 1px; height: 30px; background: #3d4450; }

/* Particles */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 999; }
.particle { position: absolute; width: 6px; height: 6px; background: #a4d007; border-radius: 50%; animation: particleFly 1s ease-out forwards; }
@keyframes particleFly {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-150px) scale(0); }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(23, 26, 33, .97);
    border-top: 1px solid #3d4450;
    padding: 14px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    z-index: 2000;
    backdrop-filter: blur(6px);
}
.cookie-banner--visible { display: flex; }
.cookie-banner__text { max-width: 880px; font-size: .84rem; color: #c6d4df; line-height: 1.55; }
.cookie-banner__text a { color: #66c0f4; }
.cookie-banner__buttons { display: flex; gap: 10px; }
.cookie-btn {
    padding: 9px 22px;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cookie-btn--accept { background: linear-gradient(to right, #a4d007 5%, #536904 95%); color: #d2efa9; }
.cookie-btn--accept:hover { background: linear-gradient(to right, #b6e608 5%, #6b8705 95%); color: #fff; }
.cookie-btn--decline { background: transparent; border: 1px solid #3d6280; color: #8f98a0; }
.cookie-btn--decline:hover { border-color: #66c0f4; color: #66c0f4; }

/* Legal page */
.legal-page { max-width: 860px; padding: 40px 20px 70px; margin: 0 auto; }
.legal-page h1 { font-size: 1.7rem; margin-bottom: 10px; text-transform: none; letter-spacing: .5px; }
.legal-page h2 { color: #66c0f4; font-size: 1.15rem; margin: 28px 0 10px; }
.legal-page p, .legal-page li { color: #c6d4df; line-height: 1.7; font-size: .95rem; margin-bottom: 8px; }
.legal-page ul { padding-left: 22px; }
.legal-date { color: #8f98a0; font-size: .85rem; }

/* ========== MOBILE ========== */
@media (max-width: 900px) {
    .main-layout { flex-direction: column; padding: 20px 15px 90px; }
    .sidebar { width: 100%; height: 320px; }
    .roulette-window { height: 130px; }
    .game-card { width: 190px; height: 115px; }
    .roulette-container { padding: 20px 0; }
    h1 { font-size: 1.9rem; }
    .subtitle { font-size: .9rem; }
    .filters-container { padding: 15px; }
    .spin-button { padding: 10px 30px; font-size: 1rem; }
    .winner-card { padding: 20px; }
    .winner-card h3 { font-size: 1.3rem; }
    .hero-title { font-size: 2.8rem; }
    .subtitle-text { font-size: 1.6rem; }
    .section-title { font-size: 1.8rem; }
}
@media (max-width: 768px) {
    .particles { display: none !important; }
    .marquee-content { animation-duration: 30s; }
    .service-card:hover, .game-card:hover, .win-item:hover { transform: none; }
    .services-grid, .steps-grid, .benefits-grid { grid-template-columns: 1fr; }
    .hero { min-height: 60vh; padding: 40px 15px; }
    .hero-description { font-size: 1.05rem; }
    .nav-container { flex-direction: column; gap: 10px; }
    .roulette-window { height: 120px; }
    .game-card { width: 150px; height: 90px; }
    .roulette-track { gap: 8px; }
    .selector-arrow { border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 14px solid #a4d007; }
    .stats-counter { bottom: 10px; right: 10px; padding: 8px 15px; }
    .stat-value { font-size: 1rem; }
    .footer__grid { flex-direction: column; align-items: flex-start; }
    .cookie-banner { flex-direction: column; align-items: stretch; }
    .cookie-banner__buttons { justify-content: flex-end; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .subtitle-text { font-size: 1.2rem; }
    .hero-description { font-size: 1rem; }
    .hero-brand__icon { width: 64px; height: 64px; }
    .roulette-window { height: 100px; }
    .game-card { width: 120px; height: 75px; }
    .roulette-track { gap: 6px; }
    h1 { font-size: 1.5rem; }
    .spin-button { padding: 8px 20px; font-size: .9rem; }
    .filters-container { padding: 12px; }
    .genres-checkboxes .checkbox-label { font-size: .75rem; margin-right: 6px; }
    .genres-checkboxes .checkmark { width: 14px; height: 14px; }
    .checkmark { width: 17px; height: 17px; }
    .winner-card { padding: 15px; }
    .winner-card h2 { font-size: 1.2rem; }
    .winner-card h3 { font-size: 1.1rem; }
    .play-btn { padding: 10px 25px; font-size: .9rem; }
}
