/* CSS Design System for Vesuvio Slots - Volcanic Magma Premium Aesthetic */

:root {
    /* Color Palette */
    --color-bg: #0d0c0c;
    --color-card-bg: rgba(22, 19, 19, 0.85);
    --color-card-bg-solid: #161313;
    --color-primary: #ff4e20;
    --color-primary-rgb: 255, 78, 32;
    --color-primary-dark: #b21f00;
    --color-gold: #d4af37;
    --color-gold-rgb: 212, 175, 55;
    --color-gold-text: #ffdf7a;
    --color-text: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-border: rgba(212, 175, 55, 0.15);
    --color-border-active: rgba(255, 78, 32, 0.4);
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 78, 32, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: var(--color-gold);
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold-text); }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }

.grid {
    display: grid;
    gap: 2rem;
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 78, 32, 0.4);
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn--primary:hover::after {
    left: 120%;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 78, 32, 0.6);
}

.btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--color-border);
}

.btn--secondary:hover {
    border-color: var(--color-primary);
    background: rgba(255, 78, 32, 0.05);
    transform: translateY(-2px);
}

.btn--gold {
    background: linear-gradient(135deg, var(--color-gold), #ffdf7a);
    color: #0d0c0c;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn--gold:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(35, 18, 12, 0.96) 0%, rgba(8, 6, 6, 0.99) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Luxury spring layout starting point: slightly smaller and slightly rotated */
    transform: translate(-50%, -50%) scale(0.92) rotate(-0.5deg);
    background: linear-gradient(135deg, #1f100b 0%, #0d0806 100%);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    z-index: 1001;
    /* Spring animation curves for high-end look */
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 0 35px rgba(255, 78, 32, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.1), 0 15px 50px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.modal--active .modal__dialog {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.modal__badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 78, 32, 0.3);
}

.modal__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal__text {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Cookie Consent Popup Helper Classes */
.modal__policy-links {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.95rem;
}

.modal__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--color-primary);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.modal__link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.modal__actions--cookies {
    display: flex;
    gap: 1rem;
    width: 100%;
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(13, 12, 12, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
}

.logo-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop {
    display: none;
}

.nav-desktop__list {
    display: flex;
    list-style: none;
    gap: 0.75rem;
}

.nav-desktop__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-desktop__link:hover, .nav-desktop__link--active {
    color: #ffffff;
}

.nav-desktop__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-desktop__link:hover::after, .nav-desktop__link--active::after {
    width: 100%;
}

.controls-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0.2rem 0.4rem;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.lang-switcher__btn--active, .lang-switcher__btn:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.auth-ctas {
    display: flex;
    gap: 0.75rem;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Drawer Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.mobile-menu--active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 12, 12, 0.7);
    backdrop-filter: blur(5px);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 380px;
    height: 100%;
    background-color: var(--color-card-bg-solid);
    border-left: 1px solid var(--color-border);
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu--active .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu__link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.mobile-menu__link:hover {
    color: var(--color-primary);
}

/* Site Footer */
.site-footer {
    background-color: #060505;
    border-top: 1px solid var(--color-border);
    padding: 5rem 0 3rem;
    margin-top: 5rem;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.site-footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.site-footer__text--compliance {
    margin-bottom: 1.5rem;
}

.site-footer__badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge--18 {
    background-color: var(--color-primary-dark);
    color: #ffffff;
}

.badge--security {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.badge--rng {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    border: 1px solid var(--color-border);
}

.site-footer__heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.site-footer__link--active {
    color: var(--color-primary);
}

.site-footer__link:hover {
    color: #ffffff;
}

/* Home Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 12, 12, 0.4) 0%, rgba(13, 12, 12, 0.75) 100%);
    z-index: 1;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 78, 32, 0.15);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 78, 32, 0.35);
}

.hero__desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--color-border);
}

.section--alt {
    background-color: rgba(255, 255, 255, 0.01);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header__desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Cards & Layouts */
.card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 78, 32, 0.1);
}

.card__image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.card__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Game Simulator grid */
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    background-color: var(--color-card-bg-solid);
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 12, 12, 0.95) 90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
}

.game-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.game-card__badge {
    align-self: flex-start;
    background-color: rgba(255, 78, 32, 0.2);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.game-card__play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 12, 12, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 3;
}

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

.game-card__screen {
    width: 100%;
    height: 100%;
    background-color: #060505;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.5rem;
}

.game-card__reels {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.game-card__reel {
    width: 60px;
    height: 80px;
    background-color: #1a1717;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold-text);
}

.game-card__score-board {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-family: var(--font-heading);
}

/* Membership tables */
.plan-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.plan-card {
    background-color: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.plan-card--vip {
    border-color: var(--color-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.plan-card--vip::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--color-gold);
    color: #0d0c0c;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.plan-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.plan-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-card__cost {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-gold-text);
    margin-bottom: 1.5rem;
}

.plan-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-card__feature {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-card__feature::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
}

/* Forms layout */
.form {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.06);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    cursor: pointer;
}

.form-check input {
    margin-top: 0.25rem;
    accent-color: var(--color-primary);
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Accordion layout */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 2rem;
    text-align: left;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-top: 0 solid transparent;
}

.faq-item--active .faq-question {
    color: var(--color-primary);
}

.faq-item--active .faq-answer {
    padding: 1.25rem 2rem;
    max-height: 500px;
    border-top: 1px solid var(--color-border);
}

/* Info content styling (standard for content pages) */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 1rem;
}

.content-wrapper h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-wrapper ul, .content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* Registration info column */
.reg-info-col {
    padding-right: 2rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */

/* ── ≤ 1100px (переключение на гамбургер) ── */
@media (max-width: 1100px) {
    .nav-desktop, .auth-ctas {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .controls-group {
        gap: 0.75rem;
    }
}

/* ── ≤ 1024px (tablet landscape) ──────── */
@media (max-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .site-footer__col--brand {
        grid-column: span 2;
    }
}

/* ── ≤ 768px (tablet portrait / large phone) ── */
@media (max-width: 768px) {

    /* Hero */
    .hero {
        padding: 6rem 0 4rem;
    }
    .hero__inner {
        max-width: 100%;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Grids: force single column */
    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Registration info column: remove side padding when stacked */
    .reg-info-col {
        padding-right: 0;
    }

    /* Footer */
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .site-footer__col--brand {
        grid-column: span 1;
    }

    /* Forms */
    .form {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    /* Modal */
    .modal__dialog {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    /* Cookie banner */
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__text {
        flex-basis: auto;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }

    /* Plan table */
    .plan-table {
        grid-template-columns: 1fr;
    }
}

/* ── ≤ 480px (phone) ───────────────────── */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Header */
    .site-logo {
        font-size: 1.2rem;
    }
    .site-logo svg {
        width: 32px;
        height: 32px;
    }

    /* Hero */
    .hero {
        padding: 5rem 0 3rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }

    /* Cards */
    .card {
        padding: 1.75rem 1.25rem;
    }

    /* Grids: all single column on small phones */
    .grid--4 {
        grid-template-columns: 1fr;
    }

    /* Forms */
    .form {
        padding: 1.5rem 1rem;
        border-radius: var(--border-radius-sm);
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    .hero__actions {
        flex-direction: column;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Modal */
    .modal__dialog {
        padding: 1.5rem 1rem;
    }
    .modal__actions {
        flex-direction: column;
    }
    .modal__actions .btn {
        width: 100%;
    }

    /* Footer */
    .site-footer {
        padding: 3rem 0 2rem;
    }

    /* Mobile drawer */
    .mobile-menu__panel {
        width: 90%;
    }

    /* Slot simulator reels */
    .game-card__reel {
        width: 48px;
        height: 64px;
        font-size: 1.5rem;
    }

    /* Plan cards */
    .plan-card {
        padding: 2rem 1.5rem;
    }

    /* Cookie banner buttons stacked */
    .cookie-banner__actions {
        flex-direction: column;
    }
    .cookie-banner__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Games Iframe & Modal player _vsu26
   ========================================================================== */
.featured-game-container_vsu26 {
    position: relative;
    max-width: 960px;
    margin: 2rem auto;
    background: #1a0f0a;
    border: 4px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 0 35px rgba(255, 78, 32, 0.4);
    overflow: hidden;
}

.featured-game-ratio_vsu26 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.featured-game-ratio_vsu26 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000000;
    overflow: hidden;
    display: block;
}

.featured-game-control_vsu26 {
    background: #2a1a15;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-border);
}

.featured-game-title_vsu26 {
    color: var(--color-gold-text);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.featured-game-buttons_vsu26 {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.featured-game-control_vsu26 .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .featured-game-control_vsu26 {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }
    
    .featured-game-title_vsu26 {
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .featured-game-buttons_vsu26 {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .featured-game-buttons_vsu26 .btn {
        flex: 1;
        justify-content: center;
        text-align: center;
        min-width: 120px;
    }
}

.game-modal_vsu26 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.game-modal_vsu26.modal--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.game-modal__overlay_vsu26 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(35, 18, 12, 0.96) 0%, rgba(8, 6, 6, 0.99) 100%);
    backdrop-filter: blur(15px);
    z-index: 2000;
}

.game-modal__dialog_vsu26 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95) rotate(-0.5deg);
    background: linear-gradient(135deg, #1f100b 0%, #0d0806 100%);
    border: 3px solid var(--color-primary);
    border-radius: 16px;
    width: 95%;
    max-width: 960px;
    z-index: 2001;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 0 35px rgba(255, 78, 32, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.1), 0 15px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.game-modal_vsu26.modal--active .game-modal__dialog_vsu26 {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.game-modal__header_vsu26 {
    background-color: #2a1a15;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.game-modal__title_vsu26 {
    color: var(--color-gold-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.game-modal__close_vsu26 {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.game-modal__close_vsu26:hover {
    color: var(--color-primary);
}

.game-modal__body_vsu26 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    background: #000;
    overflow: hidden;
}

.game-modal__iframe_vsu26 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
    display: block;
}

/* ==========================================================================
   Toaster Notification System _vsu26
   ========================================================================== */
.toast-container_vsu26 {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: none;
    max-width: 380px;
    width: calc(100vw - 48px);
}

.toast_vsu26 {
    display: flex;
    gap: 14px;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    background-color: rgba(13, 12, 12, 0.95);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    animation: toast-slide-in_vsu26 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast_vsu26.toast--success_vsu26 {
    border-color: #2ed573;
    box-shadow: 0 5px 25px rgba(46, 213, 115, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6);
}

.toast_vsu26.toast--error_vsu26 {
    border-color: #ff4757;
    box-shadow: 0 5px 25px rgba(255, 71, 87, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6);
}

.toast_vsu26.toast-closing_vsu26 {
    animation: toast-slide-out_vsu26 0.3s ease forwards;
}

.toast__icon_vsu26 {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.toast--success_vsu26 .toast__icon_vsu26 {
    color: #2ed573;
}

.toast--error_vsu26 .toast__icon_vsu26 {
    color: #ff4757;
}

.toast--info_vsu26 .toast__icon_vsu26 {
    color: var(--color-primary);
}

.toast__body_vsu26 {
    flex-grow: 1;
    padding-right: 12px;
}

.toast__title_vsu26 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.toast__message_vsu26 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.toast__close_vsu26 {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.15rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    margin-top: 1px;
    transition: color var(--transition-fast);
}

.toast__close_vsu26:hover {
    color: #ffffff;
}

.toast__progress_vsu26 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--color-primary);
    width: 100%;
    animation: toast-progress-bar_vsu26 linear forwards;
}

.toast--success_vsu26 .toast__progress_vsu26 {
    background-color: #2ed573;
}

.toast--error_vsu26 .toast__progress_vsu26 {
    background-color: #ff4757;
}

@keyframes toast-slide-in_vsu26 {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out_vsu26 {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes toast-progress-bar_vsu26 {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* ==========================================================================
   Interactive Security Gate Captcha _vsu26
   ========================================================================== */
.security-gate_vsu26 {
    background-color: rgba(26, 15, 10, 0.4);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    margin: 1.5rem 0;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.security-gate_vsu26:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 78, 32, 0.15);
}

.verify-circle_vsu26 {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(13, 12, 12, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-fast) ease;
}

.verify-ring_vsu26 {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition-normal);
}

.security-gate_vsu26:hover .verify-ring_vsu26 {
    border-color: var(--color-primary);
}

/* Verifying state */
.verify-circle_vsu26.verifying_vsu26 .verify-ring_vsu26 {
    border-color: rgba(255, 78, 32, 0.15);
    border-top-color: var(--color-primary);
    border-right-color: var(--color-gold);
    animation: spin-lava_vsu26 0.8s linear infinite;
}

/* Verified state */
.verify-circle_vsu26.verified_vsu26 {
    background-color: rgba(46, 213, 115, 0.05);
}

.verify-circle_vsu26.verified_vsu26 .verify-ring_vsu26 {
    border: 2.5px solid #2ed573;
    animation: none;
    box-shadow: 0 0 15px rgba(46, 213, 115, 0.4);
}

.verify-icon_vsu26 {
    position: relative;
    z-index: 2;
    color: var(--color-text-muted);
    transition: transform var(--transition-fast) ease, opacity var(--transition-fast) ease;
}

.security-gate_vsu26:hover .verify-icon_vsu26 {
    transform: scale(1.08);
}

.security-gate_vsu26:hover .verify-icon_vsu26 svg {
    animation: shake-robot_vsu26 0.8s ease-in-out infinite;
}

.verify-circle_vsu26.verifying_vsu26 .verify-icon_vsu26 {
    transform: scale(0.6);
    opacity: 0;
}

.verify-checkmark_vsu26 {
    color: #2ed573;
}

.verify-text-container_vsu26 {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}

.verify-label_vsu26 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    transition: color var(--transition-normal);
}

.verify-sublabel_vsu26 {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    transition: color var(--transition-normal);
}

.security-gate-logo_vsu26 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    transition: opacity var(--transition-normal);
    gap: 2px;
}

.security-gate-logo_vsu26 svg {
    color: var(--color-text-muted);
}

.security-gate-logo_vsu26 span {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-gate_vsu26:hover .security-gate-logo_vsu26 {
    opacity: 0.7;
}

@keyframes spin-lava_vsu26 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake-robot_vsu26 {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-8deg); }
    80% { transform: rotate(8deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pop-checkmark_vsu26 {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Custom Lobby Game Card */
.lobby-game-card_vsu26 {
    position: relative;
    background-color: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
    width: 100%;
    height: auto;
}

.lobby-game-card_vsu26:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.lobby-game-card_vsu26__img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.lobby-game-card_vsu26__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.lobby-game-card_vsu26:hover .lobby-game-card_vsu26__img {
    transform: scale(1.05);
}

.lobby-game-card_vsu26__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    box-sizing: border-box;
}




