/* ============================================
   Quebec Vehicule Social Casino — quebecvehicule.ca
   CSS ARCHITECTURE: SMACSS (Layout, Module, State, Theme)
   PALETTE: Quebec Winter / Hockey (ice-blue, maple-red, snow-white, rink-dark, gold-medal)
   EFFECT: Animated gradient + snow particles, glassmorphism cards
   TYPOGRAPHY: Barlow Condensed + Outfit
   BUTTONS: 3D hockey-puck style (raised, bold)
   ============================================ */

:root {
    /* Quebec / Winter / Hockey theme */
    --qv-ice-blue: #7eb8da;
    --qv-ice-dark: #2c5282;
    --qv-maple-red: #c41e3a;
    --qv-snow-white: #f8fafc;
    --qv-rink-dark: #0f172a;
    --qv-puck-black: #1e293b;
    --qv-gold-medal: #eab308;
    --qv-frost-glass: rgba(248, 250, 252, 0.12);
    --qv-frost-border: rgba(255, 255, 255, 0.18);
    --qv-font-heading: 'Barlow Condensed', sans-serif;
    --qv-font-body: 'Outfit', sans-serif;
}

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

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

body {
    margin: 0;
    font-family: var(--qv-font-body);
    background: var(--qv-rink-dark);
    color: var(--qv-snow-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Layout: animated background */
.qv-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(160deg, var(--qv-rink-dark) 0%, var(--qv-ice-dark) 40%, var(--qv-puck-black) 100%);
    background-attachment: scroll;
}

.qv-canvas__gradient {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    animation: qv_gradient_shift 18s ease-in-out infinite;
}

.qv-canvas__gradient--1 {
    background: radial-gradient(ellipse 80% 50% at 20% 20%, var(--qv-ice-blue) 0%, transparent 50%);
}

.qv-canvas__gradient--2 {
    background: radial-gradient(ellipse 60% 80% at 80% 80%, var(--qv-maple-red) 0%, transparent 45%);
    animation-delay: -6s;
}

.qv-canvas__gradient--3 {
    background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--qv-ice-dark) 0%, transparent 55%);
    animation-delay: -12s;
}

@keyframes qv_gradient_shift {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Snowflakes */
.qv-snow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.qv-snow__flake {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: qv_snow_fall linear infinite;
}

@keyframes qv_snow_fall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 0.8; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0.2; }
}

/* Layout: main container */
.qv-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Layout: header */
.qv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--qv-frost-border);
}

.qv-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.qv-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--qv-snow-white);
    font-family: var(--qv-font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.qv-logo:hover {
    color: var(--qv-ice-blue);
}

.qv-logo__badge {
    background: var(--qv-maple-red);
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.qv-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
}

.qv-nav__link {
    color: var(--qv-snow-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.qv-nav__link:hover {
    background: var(--qv-frost-glass);
    color: var(--qv-ice-blue);
}

.qv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-family: var(--qv-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.qv-btn--primary {
    background: linear-gradient(180deg, var(--qv-maple-red) 0%, #9b1529 100%);
    color: white;
    box-shadow: 0 4px 0 #7a1828, 0 6px 12px rgba(196, 30, 58, 0.4);
}

.qv-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #7a1828, 0 8px 16px rgba(196, 30, 58, 0.5);
}

.qv-btn--primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #7a1828, 0 2px 8px rgba(196, 30, 58, 0.3);
}

.qv-btn--outline {
    background: transparent;
    color: var(--qv-ice-blue);
    border: 2px solid var(--qv-ice-blue);
}

.qv-btn--outline:hover {
    background: var(--qv-frost-glass);
    transform: translateY(-1px);
}

/* Burger: visible only <= 991px */
.qv-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: var(--qv-puck-black);
    border: 2px solid var(--qv-ice-blue);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
}

.qv-burger__line {
    width: 100%;
    height: 3px;
    background: var(--qv-snow-white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.qv-burger.is-open .qv-burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.qv-burger.is-open .qv-burger__line:nth-child(2) {
    opacity: 0;
}

.qv-burger.is-open .qv-burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Burger and mobile nav: 991px breakpoint */
@media (max-width: 991px) {
    .qv-burger {
        display: flex;
    }

    .qv-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 100vw);
        height: 100vh;
        background: var(--qv-rink-dark);
        border-left: 1px solid var(--qv-frost-border);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 1.5rem 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
    }

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

    .qv-nav__link {
        width: 100%;
        padding: 0.75rem 1rem;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .qv-nav {
        display: flex;
    }
}

/* Hero */
.qv-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: clamp(2rem, 6vw, 4rem);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.qv-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.qv-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.92) 100%);
    z-index: 1;
}

.qv-hero .qv-wrap {
    position: relative;
    z-index: 2;
}

.qv-hero__inner {
    text-align: center;
}

.qv-hero__title {
    font-family: var(--qv-font-heading);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.qv-hero__title span {
    color: var(--qv-ice-blue);
}

.qv-hero__sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(248, 250, 252, 0.9);
    margin: 0 0 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.qv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Section titles */
.qv-section {
    padding: clamp(5rem, 5vw, 5rem) 0;
}

.qv-section__title {
    font-family: var(--qv-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.5rem;
}

.qv-section__sub {
    text-align: center;
    color: rgba(248, 250, 252, 0.8);
    margin: 0 0 2rem;
}

/* Cards grid: benefits */
.qv-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.25rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.qv-card {
    flex: 0 0 auto;
    width: clamp(280px, 30%, 320px);
    max-width: 320px;
    background: var(--qv-frost-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--qv-frost-border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.qv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.qv-card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.qv-card--with-img {
    padding: 0;
    overflow: hidden;
}

.qv-card__img-wrap {
    height: 140px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: var(--qv-ice-dark);
}

.qv-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qv-card--with-img .qv-card__title,
.qv-card--with-img .qv-card__text {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.qv-card--with-img .qv-card__title {
    padding-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.qv-card--with-img .qv-card__text {
    padding-bottom: 1.75rem;
}

.qv-card__title {
    font-family: var(--qv-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.qv-card__text {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.85);
    line-height: 1.5;
}

/* Games grid */
.qv-games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.qv-game-card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    max-width: 350px;
    background: var(--qv-frost-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--qv-frost-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.qv-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.qv-game-card__thumb {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--qv-ice-dark) 0%, var(--qv-puck-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--qv-ice-blue);
}

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

.qv-game-card__thumb {
    background: var(--qv-puck-black);
}

.qv-game-card__body {
    padding: 1.25rem;
}

.qv-game-card__title {
    font-family: var(--qv-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.qv-game-card__meta {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.7);
    margin: 0 0 1rem;
}

.qv-game-card .qv-btn {
    width: 100%;
}

/* FAQ accordion */
.qv-faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.qv-faq-item {
    background: var(--qv-frost-glass);
    border: 1px solid var(--qv-frost-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.qv-faq-item__head {
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--qv-snow-white);
    font-family: var(--qv-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.qv-faq-item__head:hover {
    background: rgba(255, 255, 255, 0.05);
}

.qv-faq-item__head::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--qv-ice-blue);
    flex-shrink: 0;
}

.qv-faq-item.is-open .qv-faq-item__head::after {
    content: '−';
}

.qv-faq-item__body {
    padding: 0 1.25rem 1rem;
    display: none;
}

.qv-faq-item.is-open .qv-faq-item__body {
    display: block;
}

.qv-faq-item__body p {
    margin: 0;
    color: rgba(248, 250, 252, 0.88);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Disclaimer */
.qv-disclaimer {
    background: linear-gradient(135deg, var(--qv-puck-black) 0%, var(--qv-ice-dark) 100%);
    border: 2px solid var(--qv-maple-red);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin: 2rem 0;
}

.qv-disclaimer__title {
    font-family: var(--qv-font-heading);
    font-size: 1.25rem;
    color: var(--qv-gold-medal);
    margin: 0 0 1rem;
}

.qv-disclaimer__text {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.9);
    line-height: 1.5;
}

.qv-disclaimer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.qv-disclaimer__badge {
    background: var(--qv-frost-glass);
    border: 1px solid var(--qv-frost-border);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer */
.qv-footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid var(--qv-frost-border);
    padding: clamp(2rem, 5vw, 3rem) 0 1.5rem;
}

.qv-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

@media (min-width: 768px) {
    .qv-footer__grid {
        grid-template-columns: 1fr 1fr auto;
    }
}

.qv-footer__brand {
    font-family: var(--qv-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.qv-footer__copy {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.8);
    margin: 0 0 0.25rem;
    line-height: 1.5;
}

.qv-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.qv-footer__nav a {
    color: rgba(248, 250, 252, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
}

.qv-footer__nav a:hover {
    color: var(--qv-ice-blue);
}

.qv-footer__compliance {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.qv-footer__compliance a {
    display: inline-block;
}

.qv-compliance-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    background: var(--qv-snow-white);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--qv-frost-border);
    opacity: 0.95;
    transition: opacity 0.2s, border-color 0.2s;
}

.qv-compliance-logo:hover {
    opacity: 1;
    border-color: var(--qv-ice-blue);
}

/* Modals */
.qv-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.qv-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.qv-modal {
    background: linear-gradient(180deg, var(--qv-puck-black) 0%, var(--qv-rink-dark) 100%);
    border: 1px solid var(--qv-frost-border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.qv-modal__title {
    font-family: var(--qv-font-heading);
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.qv-modal__text {
    color: rgba(248, 250, 252, 0.9);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.qv-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.qv-modal--auth {
    position: relative;
    max-width: 440px;
    padding: 2rem 2rem 2.5rem;
}

.qv-modal__close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--qv-frost-glass);
    border: 1px solid var(--qv-frost-border);
    border-radius: 10px;
    color: var(--qv-snow-white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.qv-modal__close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--qv-ice-blue);
}

.qv-tabs--modal {
    margin-bottom: 1.25rem;
}

.qv-auth-form .qv-form-group {
    margin-bottom: 1rem;
}

.qv-auth-form .qv-form-group:last-of-type {
    margin-bottom: 1.25rem;
}

.qv-form-error,
.qv-form-success {
    font-size: 0.9rem;
    margin: 0 0 0.75rem;
    display: none;
}

.qv-form-success {
    color: #22c55e;
}

.qv-btn--full {
    width: 100%;
}

.qv-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.9);
}

.qv-checkbox-label input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.qv-checkbox-label a {
    color: var(--qv-ice-blue);
}

.qv-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--qv-snow-white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}

/* Cookie banner */
.qv-cookie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 360px;
    background: var(--qv-puck-black);
    border: 2px solid var(--qv-ice-blue);
    border-radius: 16px;
    padding: 1.25rem;
    z-index: 9998;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.qv-cookie.is-visible {
    display: block;
}

.qv-cookie__text {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.9);
    line-height: 1.5;
}

.qv-cookie__text a {
    color: var(--qv-ice-blue);
}

.qv-cookie__btn {
    padding: 0.5rem 1rem;
    background: var(--qv-maple-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Form */
.qv-form-group {
    margin-bottom: 1rem;
}

.qv-form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.qv-form-group input {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid var(--qv-frost-border);
    border-radius: 10px;
    background: var(--qv-frost-glass);
    color: var(--qv-snow-white);
    font-size: 1rem;
}

.qv-form-group input::placeholder {
    color: rgba(248, 250, 252, 0.5);
}

.qv-form-group input:focus {
    outline: none;
    border-color: var(--qv-ice-blue);
    box-shadow: 0 0 0 3px rgba(126, 184, 218, 0.2);
}

/* Account page */
.qv-account-welcome {
    font-family: var(--qv-font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.qv-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.qv-tabs__btn {
    padding: 0.6rem 1.2rem;
    background: var(--qv-frost-glass);
    border: 1px solid var(--qv-frost-border);
    border-radius: 10px;
    color: var(--qv-snow-white);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.qv-tabs__btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qv-tabs__btn.is-active {
    background: var(--qv-maple-red);
    border-color: var(--qv-maple-red);
}

.qv-tab-panel {
    display: none;
}

.qv-tab-panel.is-active {
    display: block;
}

/* Games page tabs */
.qv-games-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.qv-games-tabs .qv-tabs__btn.is-active {
    background: var(--qv-ice-blue);
    border-color: var(--qv-ice-blue);
}

.qv-lock-msg {
    text-align: center;
    padding: 2rem;
    background: var(--qv-frost-glass);
    border-radius: 16px;
    border: 1px solid var(--qv-frost-border);
    margin-bottom: 2rem;
}

.qv-lock-msg__title {
    font-family: var(--qv-font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Mobile hero padding */
@media (max-width: 768px) {
    .qv-hero {
        padding-top: 100px;
        min-height: calc(100vh - 60px);
    }

    .qv-games-grid {
        flex-direction: column;
        align-items: center;
    }

    .qv-game-card {
        width: 100%;
        max-width: 400px;
    }

    .qv-benefits {
        flex-direction: column;
        align-items: center;
    }

    .qv-card {
        width: 100%;
        max-width: 400px;
    }

    .qv-cookie {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}

/* ========== Policy / content pages — modern gaming style ========== */
.qv-page {
    padding-top: 100px;
    padding-bottom: 3rem;
    min-height: 60vh;
}

.qv-page__wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.qv-page__title {
    font-family: var(--qv-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin: 0 0 0.5rem;
    color: var(--qv-snow-white);
}

.qv-page__sub {
    text-align: center;
    color: rgba(248, 250, 252, 0.75);
    font-size: 1rem;
    margin: 0 0 2.5rem;
}

.qv-content-block {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid var(--qv-frost-border);
    border-radius: 20px;
    padding: 2rem clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.qv-content-block:hover {
    border-color: rgba(126, 184, 218, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.qv-content-block__heading {
    font-family: var(--qv-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--qv-ice-blue);
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qv-content-block__heading::before {
    content: '';
    width: 4px;
    height: 1.2em;
    background: linear-gradient(180deg, var(--qv-maple-red), var(--qv-gold-medal));
    border-radius: 2px;
}

.qv-content-block p {
    margin: 0 0 1rem;
    color: rgba(248, 250, 252, 0.9);
    line-height: 1.65;
    font-size: 1rem;
}

.qv-content-block p:last-child {
    margin-bottom: 0;
}

.qv-content-block ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
    color: rgba(248, 250, 252, 0.9);
    line-height: 1.7;
}

.qv-content-block ul li {
    margin-bottom: 0.35rem;
}

.qv-content-block a {
    color: var(--qv-ice-blue);
    text-decoration: none;
}

.qv-content-block a:hover {
    text-decoration: underline;
}
