@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

/* Popups hidden by default – JS shows when needed (localStorage); no flash on refresh */
.vhe_age-verify-notice,
.vhe_cookie-consent-banner {
    display: none !important;
}
.vhe_age-verify-notice.is-visible {
    display: flex !important;
}
.vhe_cookie-consent-banner.is-visible {
    display: block !important;
}

:root {
    /* Dark modern + neon gaming palette */
    --vhe-color-bg: #0d0d14;
    --vhe-color-surface: #151520;
    --vhe-color-card: #1a1a28;
    --vhe-color-card-hover: #222235;
    --vhe-color-border: rgba(123, 104, 238, 0.25);
    --vhe-color-accent: #7b68ee;
    --vhe-color-accent-glow: rgba(123, 104, 238, 0.5);
    --vhe-color-cyan: #00d4ff;
    --vhe-color-cyan-glow: rgba(0, 212, 255, 0.4);
    --vhe-color-text: #e4e4f0;
    --vhe-color-text-muted: #a8a8c8;
    --vhe-color-text-light: #6d6d8a;
    --vhe-color-success: #22c55e;
    --vhe-color-warning: #eab308;
    --vhe-color-error: #ef4444;
    --vhe-color-shadow: rgba(0, 0, 0, 0.35);
    --vhe-font-heading: 'Outfit', sans-serif;
    --vhe-font-body: 'Inter', sans-serif;
    --vhe-radius-small: 12px;
    --vhe-radius-medium: 18px;
    --vhe-radius-large: 24px;
    --vhe-transition-fast: 0.25s ease;
    --vhe-transition-medium: 0.4s ease;
    /* Legacy aliases for compatibility */
    --vhe-color-sky-light: #1e1e2e;
    --vhe-color-sky-medium: #7b68ee;
    --vhe-color-sky-deep: #00d4ff;
    --vhe-color-sunrise: #a78bfa;
    --vhe-color-sunset: #7b68ee;
    --vhe-color-text-dark: #e4e4f0;
    --vhe-color-text-medium: #a8a8c8;
    --vhe-color-background: #0d0d14;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--vhe-font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vhe-color-text-muted);
    background-color: var(--vhe-color-bg);
    overflow-x: hidden;
    min-width: 285px;
}

.vhe_age-verify-notice {
    position: fixed;
    inset: 0;
    z-index: 9997;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: vhe_ageNoticeFadeIn 0.4s ease-out;
}
.vhe_age-verify-notice.is-visible .vhe_age-verify-notice__panel {
    animation: vhe_ageNoticePanelIn 0.5s ease-out;
}
.vhe_age-verify-notice__panel {
    background: var(--vhe-color-card);
    border: 1px solid var(--vhe-color-border);
    border-radius: var(--vhe-radius-large);
    padding: 2rem 2.25rem;
    box-shadow: 0 20px 60px var(--vhe-color-shadow), 0 0 40px var(--vhe-color-accent-glow);
    max-width: 420px;
    width: 100%;
}
.vhe_age-verify-notice__text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--vhe-color-text);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}
.vhe_age-verify-notice__text i {
    color: var(--vhe-color-cyan);
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 1.4rem;
}
.vhe_age-verify-notice__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.vhe_age-verify-notice__btn {
    padding: 0.9rem 1.75rem;
    border: none;
    border-radius: var(--vhe-radius-small);
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--vhe-transition-fast);
    flex-grow: 1;
}
.vhe_age-verify-notice__btn--confirm {
    background: var(--vhe-color-accent);
    color: white;
    box-shadow: 0 0 15px var(--vhe-color-accent-glow);
}
.vhe_age-verify-notice__btn--confirm:hover {
    box-shadow: 0 0 25px var(--vhe-color-accent-glow);
    transform: translateY(-2px);
}
.vhe_age-verify-notice__btn--leave {
    background: transparent;
    color: var(--vhe-color-text-muted);
    border: 1px solid var(--vhe-color-border);
}
.vhe_age-verify-notice__btn--leave:hover {
    background: var(--vhe-color-surface);
    color: var(--vhe-color-text);
}
@keyframes vhe_ageNoticeFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes vhe_ageNoticePanelIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.vhe_cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--vhe-color-card);
    border-top: 1px solid var(--vhe-color-border);
    padding: 1.2rem 1.5rem;
    box-shadow: 0 -5px 30px var(--vhe-color-shadow), 0 0 20px var(--vhe-color-accent-glow);
    animation: vhe_cookieBannerSlideUp 0.5s ease-out;
}
.vhe_cookie-consent-banner.is-visible::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.vhe_cookie-consent-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.vhe_cookie-consent-banner__message {
    flex: 1;
    font-size: 0.95rem;
    color: var(--vhe-color-text-muted);
    min-width: 250px;
}
.vhe_cookie-consent-banner__link {
    color: var(--vhe-color-cyan);
    text-decoration: none;
    font-weight: 500;
}
.vhe_cookie-consent-banner__link:hover {
    text-decoration: underline;
    color: var(--vhe-color-accent);
}
.vhe_cookie-consent-banner__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.vhe_cookie-consent-banner__accept,
.vhe_cookie-consent-banner__reject {
    padding: 0.7rem 1.5rem;
    border-radius: var(--vhe-radius-small);
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all var(--vhe-transition-fast);
}
.vhe_cookie-consent-banner__accept {
    background: var(--vhe-color-accent);
    color: white;
    box-shadow: 0 0 15px var(--vhe-color-accent-glow);
}
.vhe_cookie-consent-banner__accept:hover {
    box-shadow: 0 0 25px var(--vhe-color-accent-glow);
    transform: translateY(-2px);
}
.vhe_cookie-consent-banner__reject {
    background: transparent;
    color: var(--vhe-color-text-muted);
    border: 1px solid var(--vhe-color-border);
}
.vhe_cookie-consent-banner__reject:hover {
    background: var(--vhe-color-surface);
    color: var(--vhe-color-text);
}
@keyframes vhe_cookieBannerSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.vhe_site-header {
    background: var(--vhe-color-card);
    border-bottom: 1px solid var(--vhe-color-border);
    box-shadow: 0 4px 24px var(--vhe-color-shadow), 0 0 20px rgba(123, 104, 238, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.vhe_site-header__disclaimer {
    background: var(--vhe-color-surface);
    padding: 0.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--vhe-color-border);
}
.vhe_site-header__disclaimer-icon {
    color: var(--vhe-color-cyan);
    font-size: 1rem;
}
.vhe_site-header__disclaimer-text {
    font-size: 0.85rem;
    color: var(--vhe-color-text-muted);
    text-align: center;
    font-weight: 500;
}
.vhe_site-header__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.vhe_site-header__brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}
.vhe_site-header__logo {
    width: auto;
    max-width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}
.vhe_site-header__title {
    font-family: var(--vhe-font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    background: linear-gradient(90deg, var(--vhe-color-cyan), var(--vhe-color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.vhe_site-header__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.vhe_site-header__nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}
.vhe_site-header__nav-item {
    position: relative;
}
.vhe_site-header__nav-link {
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    color: var(--vhe-color-text-muted);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: var(--vhe-radius-small);
    transition: color var(--vhe-transition-fast), background var(--vhe-transition-fast);
}
.vhe_site-header__nav-link:hover {
    color: var(--vhe-color-cyan);
    background: rgba(0, 212, 255, 0.08);
}
.vhe_site-header__nav-trigger {
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    color: var(--vhe-color-text-muted);
    background: none;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: var(--vhe-radius-small);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    transition: color var(--vhe-transition-fast), background var(--vhe-transition-fast);
}
.vhe_site-header__nav-trigger:hover {
    color: var(--vhe-color-cyan);
    background: rgba(0, 212, 255, 0.08);
}
.vhe_site-header__nav-trigger i {
    font-size: 0.7rem;
    transition: transform var(--vhe-transition-fast);
}
.vhe_site-header__nav-item.open .vhe_site-header__nav-trigger i {
    transform: rotate(180deg);
}
.vhe_site-header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    min-width: 200px;
    background: var(--vhe-color-card);
    border: 1px solid var(--vhe-color-border);
    border-radius: var(--vhe-radius-small);
    box-shadow: 0 12px 32px var(--vhe-color-shadow), 0 0 20px var(--vhe-color-accent-glow);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--vhe-transition-fast), transform var(--vhe-transition-fast), visibility var(--vhe-transition-fast);
    z-index: 1001;
}
.vhe_site-header__nav-item.open .vhe_site-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vhe_site-header__dropdown a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--vhe-color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--vhe-transition-fast), background var(--vhe-transition-fast);
}
.vhe_site-header__dropdown a:hover {
    color: var(--vhe-color-cyan);
    background: rgba(0, 212, 255, 0.08);
}
.vhe_site-header__contact-btn {
    background: var(--vhe-color-accent);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--vhe-transition-fast);
    margin-left: 0.5rem;
    box-shadow: 0 0 20px var(--vhe-color-accent-glow);
}
.vhe_site-header__contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--vhe-color-accent-glow);
}
.vhe_site-header__menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    margin-left: 1rem;
    color: var(--vhe-color-text);
}
.vhe_site-header__menu-icon,
.vhe_site-header__menu-icon::before,
.vhe_site-header__menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--vhe-color-cyan);
    border-radius: 3px;
    transition: all var(--vhe-transition-medium);
}
.vhe_site-header__menu-icon {
    top: 50%;
    transform: translateY(-50%);
}
.vhe_site-header__menu-icon::before {
    top: -8px;
}
.vhe_site-header__menu-icon::after {
    bottom: -8px;
}
.vhe_site-header__menu-toggle.active .vhe_site-header__menu-icon {
    background-color: transparent;
}
.vhe_site-header__menu-toggle.active .vhe_site-header__menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.vhe_site-header__menu-toggle.active .vhe_site-header__menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.vhe_section-welcome {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
}
.vhe_section-welcome__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.88) 0%, rgba(21, 21, 32, 0.92) 100%);
    z-index: 1;
}
.vhe_section-welcome__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    animation: vhe_welcomeFadeIn 1s ease-out;
}
.vhe_section-welcome__badge {
    display: inline-block;
    background: var(--vhe-color-accent);
    color: white;
    font-family: var(--vhe-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px var(--vhe-color-accent-glow);
}
.vhe_section-welcome__title {
    font-family: var(--vhe-font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--vhe-color-text);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px var(--vhe-color-cyan-glow);
}
.vhe_section-welcome__subtitle {
    font-size: 1.3rem;
    color: var(--vhe-color-text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.vhe_section-welcome__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}
.vhe_section-welcome__action-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all var(--vhe-transition-medium);
}
.vhe_section-welcome__action-btn--explore {
    background: var(--vhe-color-accent);
    color: white;
    border: 1px solid rgba(123, 104, 238, 0.5);
    box-shadow: 0 0 25px var(--vhe-color-accent-glow);
}
.vhe_section-welcome__action-btn--explore:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px var(--vhe-color-accent-glow);
}
.vhe_section-welcome__action-btn--learn {
    background: transparent;
    color: var(--vhe-color-cyan);
    border: 2px solid var(--vhe-color-cyan);
}
.vhe_section-welcome__action-btn--learn:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px var(--vhe-color-cyan-glow);
    transform: translateY(-3px);
}
.vhe_section-welcome__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid var(--vhe-color-border);
    padding-top: 2.5rem;
}
.vhe_section-welcome__stat {
    text-align: center;
}
.vhe_section-welcome__stat-number {
    display: block;
    font-family: var(--vhe-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vhe-color-cyan);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px var(--vhe-color-cyan-glow);
}
.vhe_section-welcome__stat-label {
    font-size: 0.95rem;
    color: var(--vhe-color-text-light);
}
@keyframes vhe_welcomeFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.vhe_section-about {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 1.5rem;
}
.vhe_section-about__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(13, 13, 20, 0.92) 0%, rgba(21, 21, 32, 0.9) 100%);
    z-index: 1;
}
.vhe_section-about__wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}
.vhe_section-about__image-container {
    flex: 1;
    min-width: 280px;
    position: relative;
}
.vhe_section-about__image {
    width: 100%;
    max-width: 380px;
    height: 100%;
    max-height: 380px;
    border-radius: var(--vhe-radius-large);
    box-shadow: 0 12px 40px var(--vhe-color-shadow), 0 0 30px var(--vhe-color-accent-glow);
    border: 2px solid var(--vhe-color-border);
    animation: vhe_aboutImageFloat 4s ease-in-out infinite;
}
.vhe_section-about__image-caption {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--vhe-color-accent);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: var(--vhe-font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 0 15px var(--vhe-color-accent-glow);
}
.vhe_section-about__content {
    flex: 1;
    min-width: 300px;
}
.vhe_section-about__title {
    font-family: var(--vhe-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 1.5rem;
    position: relative;
}
.vhe_section-about__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--vhe-color-cyan), var(--vhe-color-accent));
    border-radius: 2px;
}
.vhe_section-about__intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--vhe-color-text-muted);
    margin-bottom: 2.5rem;
}
.vhe_section-about__details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.vhe_section-about__detail-block {
    flex: 1;
    min-width: 200px;
    background: var(--vhe-color-card);
    padding: 1.8rem;
    border-radius: var(--vhe-radius-medium);
    border: 1px solid var(--vhe-color-border);
    box-shadow: 0 8px 24px var(--vhe-color-shadow), 0 0 20px rgba(123, 104, 238, 0.1);
    transition: box-shadow var(--vhe-transition-fast);
}
.vhe_section-about__detail-block:hover {
    box-shadow: 0 12px 32px var(--vhe-color-shadow), 0 0 30px var(--vhe-color-accent-glow);
}
.vhe_section-about__detail-title {
    font-family: var(--vhe-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 0.8rem;
}
.vhe_section-about__detail-text {
    color: var(--vhe-color-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}
.vhe_section-about__legal {
    background: var(--vhe-color-surface);
    padding: 1.5rem;
    border-radius: var(--vhe-radius-small);
    border-left: 4px solid var(--vhe-color-accent);
}
.vhe_section-about__legal p {
    color: var(--vhe-color-text);
    font-size: 0.95rem;
    margin: 0;
}
@keyframes vhe_aboutImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.vhe_section-features {
    padding: 5rem 1.5rem;
    background: var(--vhe-color-bg);
}
.vhe_section-features__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.vhe_section-features__main-title {
    font-family: var(--vhe-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 1rem;
}
.vhe_section-features__subtitle {
    font-size: 1.15rem;
    color: var(--vhe-color-text-light);
}
.vhe_section-features__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.vhe_section-features__card {
    flex: 1;
    min-width: 280px;
    background: var(--vhe-color-card);
    border-radius: var(--vhe-radius-large);
    padding: 2.5rem 2rem;
    border: 1px solid var(--vhe-color-border);
    box-shadow: 0 8px 24px var(--vhe-color-shadow), 0 0 20px rgba(123, 104, 238, 0.06);
    transition: all var(--vhe-transition-medium);
    position: relative;
    overflow: hidden;
}
.vhe_section-features__card:hover {
    transform: translateY(-8px);
    border-color: var(--vhe-color-accent);
    box-shadow: 0 16px 40px var(--vhe-color-shadow), 0 0 30px var(--vhe-color-accent-glow);
}
.vhe_section-features__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--vhe-color-cyan), var(--vhe-color-accent));
    box-shadow: 0 0 15px var(--vhe-color-cyan-glow);
}
.vhe_section-features__card-icon {
    font-size: 2.8rem;
    color: var(--vhe-color-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--vhe-color-cyan-glow);
}
.vhe_section-features__card-content {
    min-height: 280px;
}
.vhe_section-features__card-title {
    font-family: var(--vhe-font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 1rem;
}
.vhe_section-features__card-text {
    color: var(--vhe-color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.vhe_section-features__card-list {
    list-style: none;
    padding-left: 0;
}
.vhe_section-features__card-list li {
    padding: 0.4rem 0;
    color: var(--vhe-color-text-muted);
    position: relative;
    padding-left: 1.8rem;
}
.vhe_section-features__card-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--vhe-color-accent);
    font-weight: bold;
}

.vhe_section-games {
    padding: 5rem 1.5rem;
    background: var(--vhe-color-surface);
}
.vhe_section-games__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}
.vhe_section-games__title {
    font-family: var(--vhe-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 1rem;
}
.vhe_section-games__description {
    font-size: 1.15rem;
    color: var(--vhe-color-text-light);
}
.vhe_section-games__showcase {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.vhe_section-games__card {
    background: var(--vhe-color-card);
    border-radius: var(--vhe-radius-medium);
    overflow: hidden;
    border: 1px solid var(--vhe-color-border);
    box-shadow: 0 12px 32px var(--vhe-color-shadow), 0 0 25px rgba(123, 104, 238, 0.08);
    width: 100%;
    max-width: 320px;
    transition: all var(--vhe-transition-medium);
    position: relative;
}
.vhe_section-games__card:hover {
    transform: translateY(-12px);
    border-color: var(--vhe-color-accent);
    box-shadow: 0 20px 48px var(--vhe-color-shadow), 0 0 35px var(--vhe-color-accent-glow);
}
.vhe_section-games__card-header {
    position: relative;
    overflow: hidden;
}
.vhe_section-games__card-image {
    width: 100%;
    max-width: 320px;
    height: 100%;
    max-height: 220px;
    display: block;
    transition: transform 0.6s ease;
}
.vhe_section-games__card:hover .vhe_section-games__card-image {
    transform: scale(1.05);
}
.vhe_section-games__card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-family: var(--vhe-font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vhe_section-games__card-badge--popular {
    background: var(--vhe-color-accent);
    box-shadow: 0 0 15px var(--vhe-color-accent-glow);
}
.vhe_section-games__card-badge--new {
    background: var(--vhe-color-success);
}
.vhe_section-games__card-badge--trending {
    background: var(--vhe-color-cyan);
    box-shadow: 0 0 15px var(--vhe-color-cyan-glow);
}
.vhe_section-games__card-badge--classic {
    background: var(--vhe-color-accent);
}
.vhe_section-games__card-badge--challenge {
    background: var(--vhe-color-warning);
}
.vhe_section-games__card-body {
    padding: 1.8rem;
}
.vhe_section-games__card-title {
    font-family: var(--vhe-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 0.5rem;
}
.vhe_section-games__card-theme {
    font-size: 0.9rem;
    color: var(--vhe-color-cyan);
    font-weight: 500;
    margin-bottom: 1rem;
}
.vhe_section-games__card-desc {
    color: var(--vhe-color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 70px;
}
.vhe_section-games__card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}
.vhe_section-games__card-meta-item {
    color: var(--vhe-color-text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.vhe_section-games__card-meta-item i {
    color: var(--vhe-color-accent);
}
.vhe_section-games__card-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    background: transparent;
    color: var(--vhe-color-cyan);
    text-decoration: none;
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    border-radius: var(--vhe-radius-small);
    transition: all var(--vhe-transition-fast);
    border: 1px solid var(--vhe-color-cyan);
}
.vhe_section-games__card-link:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px var(--vhe-color-cyan-glow);
}

.vhe_section-faq {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 1.5rem;
}
.vhe_section-faq__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.92) 0%, rgba(21, 21, 32, 0.95) 100%);
    z-index: 1;
}
.vhe_section-faq__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.vhe_section-faq__heading {
    font-family: var(--vhe-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    text-align: center;
    margin-bottom: 1rem;
}
.vhe_section-faq__lead {
    text-align: center;
    font-size: 1.15rem;
    color: var(--vhe-color-text-light);
    margin-bottom: 3rem;
}
.vhe_section-faq__accordions {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
}
.vhe_section-faq__accordion {
    background: var(--vhe-color-card);
    border-radius: var(--vhe-radius-medium);
    overflow: hidden;
    border: 1px solid var(--vhe-color-border);
    box-shadow: 0 6px 20px var(--vhe-color-shadow);
}
.vhe_section-faq__accordion[open] {
    border-color: var(--vhe-color-accent);
    box-shadow: 0 0 20px var(--vhe-color-accent-glow);
}
.vhe_section-faq__accordion[open] .vhe_section-faq__accordion-icon {
    transform: rotate(180deg);
}
.vhe_section-faq__accordion-summary {
    padding: 1.8rem 2rem;
    font-family: var(--vhe-font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--vhe-color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--vhe-transition-fast);
}
.vhe_section-faq__accordion-summary:hover {
    background: var(--vhe-color-surface);
}
.vhe_section-faq__accordion-summary::-webkit-details-marker {
    display: none;
}
.vhe_section-faq__accordion-icon {
    color: var(--vhe-color-cyan);
    transition: transform var(--vhe-transition-medium);
}
.vhe_section-faq__accordion-content {
    padding: 0 2rem 1.8rem;
    color: var(--vhe-color-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--vhe-color-border);
}

.vhe_section-reviews {
    padding: 5rem 1.5rem;
    background: var(--vhe-color-bg);
    position: relative;
    overflow: hidden;
}
.vhe_section-reviews__decoration {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    pointer-events: none;
    opacity: 0.1;
}
.vhe_section-reviews__decoration-star {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--vhe-color-sunrise);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: vhe_starRotate 20s linear infinite;
}
.vhe_section-reviews__decoration-star:nth-child(2) {
    top: 30px;
    left: 40px;
    width: 25px;
    height: 25px;
    background-color: var(--vhe-color-sky-deep);
    animation-duration: 15s;
}
.vhe_section-reviews__title {
    font-family: var(--vhe-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    text-align: center;
    margin-bottom: 1rem;
}
.vhe_section-reviews__subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--vhe-color-text-light);
    margin-bottom: 3.5rem;
}
.vhe_section-reviews__carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.vhe_section-reviews__carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 2rem;
    padding: 1rem 0.5rem 2.5rem;
}
.vhe_section-reviews__carousel::-webkit-scrollbar {
    display: none;
}
.vhe_section-reviews__slide {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 280px;
}
.vhe_section-reviews__card {
    background: var(--vhe-color-card);
    border-radius: var(--vhe-radius-large);
    padding: 2rem;
    border: 1px solid var(--vhe-color-border);
    box-shadow: 0 12px 32px var(--vhe-color-shadow), 0 0 20px rgba(123, 104, 238, 0.06);
    height: 100%;
    transition: all var(--vhe-transition-medium);
}
.vhe_section-reviews__card:hover {
    transform: translateY(-8px);
    border-color: var(--vhe-color-accent);
    box-shadow: 0 16px 40px var(--vhe-color-shadow), 0 0 25px var(--vhe-color-accent-glow);
}
.vhe_section-reviews__card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.vhe_section-reviews__avatar {
    width: 100%;
    max-width: 70px;
    height: 100%;
    max-height: 70px;
    border-radius: 50%;
    border: 2px solid var(--vhe-color-border);
}
.vhe_section-reviews__user-info {
    flex: 1;
}
.vhe_section-reviews__user-name {
    display: block;
    font-family: var(--vhe-font-heading);
    font-weight: 600;
    color: var(--vhe-color-text);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.vhe_section-reviews__user-location {
    display: block;
    font-size: 0.9rem;
    color: var(--vhe-color-text-light);
    margin-bottom: 0.4rem;
}
.vhe_section-reviews__user-badge {
    display: inline-block;
    background-color: var(--vhe-color-sky-light);
    color: var(--vhe-color-sky-deep);
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-weight: 500;
}
.vhe_section-reviews__card-body {
    min-height: 180px;
}
.vhe_section-reviews__text {
    color: var(--vhe-color-text-medium);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.2rem;
    min-height: 136px;
}
.vhe_section-reviews__text::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    color: var(--vhe-color-sky-medium);
    font-family: serif;
    line-height: 1;
}
.vhe_section-reviews__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.vhe_section-reviews__date {
    color: var(--vhe-color-text-light);
}
.vhe_section-reviews__rating {
    color: var(--vhe-color-sunrise);
}
.vhe_section-reviews__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--vhe-color-card);
    color: var(--vhe-color-sky-deep);
    border: 1px solid var(--vhe-color-border);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--vhe-color-shadow);
    transition: all var(--vhe-transition-fast);
    z-index: 10;
}
.vhe_section-reviews__carousel-btn:hover {
    background: var(--vhe-color-accent);
    color: white;
    border-color: var(--vhe-color-accent);
    box-shadow: 0 0 25px var(--vhe-color-accent-glow);
    transform: translateY(-50%) scale(1.1);
}
.vhe_section-reviews__carousel-btn--prev {
    left: -24px;
}
.vhe_section-reviews__carousel-btn--next {
    right: -24px;
}
@keyframes vhe_starRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vhe_section-responsible {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4.5rem 1.5rem;
}
.vhe_section-responsible__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 20, 0.92) 0%, rgba(21, 21, 32, 0.95) 100%);
    z-index: 1;
}
.vhe_section-responsible__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}
.vhe_section-responsible__content {
    flex: 1;
    min-width: 300px;
}
.vhe_section-responsible__title {
    font-family: var(--vhe-font-heading);
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 1.5rem;
}
.vhe_section-responsible__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--vhe-color-text-muted);
    margin-bottom: 2rem;
}
.vhe_section-responsible__resources {
    background: var(--vhe-color-surface);
    padding: 1.8rem;
    border-radius: var(--vhe-radius-medium);
    margin-bottom: 2rem;
    border: 1px solid var(--vhe-color-border);
}
.vhe_section-responsible__links {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
}
.vhe_section-responsible__links li {
    margin-bottom: 0.8rem;
    color: var(--vhe-color-text-muted);
}
.vhe_section-responsible__link {
    color: var(--vhe-color-cyan);
    text-decoration: none;
    font-weight: 500;
}
.vhe_section-responsible__link:hover {
    text-decoration: underline;
    color: var(--vhe-color-accent);
}
.vhe_section-responsible__reminder {
    font-size: 0.95rem;
    color: var(--vhe-color-text);
    background: var(--vhe-color-surface);
    padding: 1.2rem;
    border-radius: var(--vhe-radius-small);
    border-left: 4px solid var(--vhe-color-warning);
}
.vhe_section-responsible__partners {
    flex: 0 0 320px;
    background: var(--vhe-color-card);
    border-radius: var(--vhe-radius-large);
    padding: 2rem;
    border: 1px solid var(--vhe-color-border);
    box-shadow: 0 12px 32px var(--vhe-color-shadow);
}
.vhe_section-responsible__partners-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.vhe_section-responsible__partners-header img {
    width: 60px;
    height: 60px;
}
.vhe_section-responsible__partners-header p {
    flex: 1;
    font-weight: 500;
    color: var(--vhe-color-text);
    font-size: 0.95rem;
}
.vhe_section-responsible__partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    background: var(--vhe-color-text-light);
    border-radius: var(--vhe-radius-small);
}
.vhe_section-responsible__partner-link {
    display: block;
    transition: transform var(--vhe-transition-fast);
}
.vhe_section-responsible__partner-link:hover {
    transform: scale(1.05);
}
.vhe_section-responsible__partner-link img {
    width: 140px;
    height: 55px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.9;
    transition: all var(--vhe-transition-fast);
}
.vhe_section-responsible__partner-link:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.vhe_scroll-navigation {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.vhe_scroll-navigation__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--vhe-color-card);
    color: var(--vhe-color-sky-deep);
    border: 1px solid var(--vhe-color-border);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--vhe-color-shadow);
    transition: all var(--vhe-transition-fast);
}
.vhe_scroll-navigation__btn:hover {
    background-color: var(--vhe-color-sky-deep);
    color: white;
    transform: scale(1.1);
}
.vhe_scroll-navigation__progress {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--vhe-color-card);
    border: 3px solid var(--vhe-color-sky-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vhe-font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vhe-color-sky-deep);
    box-shadow: 0 3px 10px var(--vhe-color-shadow);
}

/* Safe gambling block – before footer */
.safe-gambling {
    background: var(--vhe-color-surface);
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--vhe-color-border);
}
.safe-gambling__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.safe-gambling__title {
    font-family: var(--vhe-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 1.5rem;
}
.safe-gambling__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.safe-gambling__logos a {
    display: block;
    transition: transform var(--vhe-transition-fast);
}
.safe-gambling__logos a:hover {
    transform: scale(1.05);
}
.safe-gambling__logos img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 768px) {
    .safe-gambling__logos {
        gap: 1.5rem;
    }
    .safe-gambling__logos img {
        width: 100px;
        height: 50px;
    }
}

.vhe_site-footer {
    background: var(--vhe-color-surface);
    border-top: 1px solid var(--vhe-color-border);
    color: var(--vhe-color-text-muted);
    padding-top: 4rem;
}
.vhe_site-footer__main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}
.vhe_site-footer__brand-col {
    flex: 2;
    min-width: 250px;
}
.vhe_site-footer__brand {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1.2rem;
}
.vhe_site-footer__brand-name {
    font-family: var(--vhe-font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--vhe-color-cyan), var(--vhe-color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.vhe_site-footer__tagline {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 280px;
}
.vhe_site-footer__contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.vhe_site-footer__mail {
    color: var(--vhe-color-cyan);
    text-decoration: none;
}
.vhe_site-footer__mail:hover {
    color: var(--vhe-color-accent);
    text-decoration: underline;
}
.vhe_site-footer__nav-col {
    flex: 1;
    min-width: 180px;
}
.vhe_site-footer__nav-title {
    font-family: var(--vhe-font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 1.5rem;
}
.vhe_site-footer__nav-list {
    list-style: none;
    padding-left: 0;
}
.vhe_site-footer__nav-list li {
    margin-bottom: 0.8rem;
}
.vhe_site-footer__nav-link {
    color: var(--vhe-color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--vhe-transition-fast);
}
.vhe_site-footer__nav-link:hover {
    color: var(--vhe-color-cyan);
}
.vhe_site-footer__action-col {
    flex: 2;
    min-width: 280px;
}
.vhe_site-footer__subscribe-btn {
    background: var(--vhe-color-accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--vhe-transition-fast);
    margin-bottom: 1.2rem;
    width: 100%;
    box-shadow: 0 0 20px var(--vhe-color-accent-glow);
}
.vhe_site-footer__subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--vhe-color-accent-glow);
}
.vhe_site-footer__action-text {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--vhe-color-text-muted);
}
.vhe_site-footer__disclaimer {
    background: var(--vhe-color-card);
    padding: 1.2rem;
    border-radius: var(--vhe-radius-small);
    border-left: 3px solid var(--vhe-color-accent);
}
.vhe_site-footer__disclaimer p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--vhe-color-text-muted);
}
.vhe_site-footer__bottom {
    border-top: 1px solid var(--vhe-color-border);
    padding: 1.8rem 1.5rem;
    text-align: center;
}
.vhe_site-footer__copyright {
    font-size: 0.9rem;
    color: var(--vhe-color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

.vhe_contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 20, 0.9);
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--vhe-transition-medium), visibility var(--vhe-transition-medium);
    overflow-y: auto;
}
.vhe_contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.vhe_contact-modal-container {
    background: var(--vhe-color-card);
    border: 1px solid var(--vhe-color-border);
    border-radius: var(--vhe-radius-large);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px var(--vhe-color-shadow), 0 0 40px var(--vhe-color-accent-glow);
    animation: vhe_modalSlideUp 0.5s ease-out;
    scrollbar-width: thin;
    scrollbar-color: var(--vhe-color-sky-medium) transparent;
}
.vhe_contact-modal-container::-webkit-scrollbar {
    width: 6px;
}
.vhe_contact-modal-container::-webkit-scrollbar-track {
    background: transparent;
}
.vhe_contact-modal-container::-webkit-scrollbar-thumb {
    background-color: var(--vhe-color-sky-medium);
    border-radius: 3px;
}
.vhe_contact-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--vhe-color-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.vhe_contact-modal-title {
    font-family: var(--vhe-font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin: 0;
}
.vhe_contact-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--vhe-color-text-muted);
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--vhe-transition-fast);
}
.vhe_contact-modal-close:hover {
    background: var(--vhe-color-surface);
    color: var(--vhe-color-accent);
}
.vhe_contact-modal-body {
    padding: 2rem;
}
.vhe_contact-modal-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.8rem;
}
.vhe_contact-modal-field {
    position: relative;
}
.vhe_contact-modal-label {
    display: block;
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    color: var(--vhe-color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.vhe_contact-modal-input-wrapper {
    position: relative;
}
.vhe_contact-modal-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vhe-color-cyan);
    font-size: 1.1rem;
}
.vhe_contact-modal-input,
.vhe_contact-modal-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--vhe-color-border);
    border-radius: var(--vhe-radius-small);
    font-family: var(--vhe-font-body);
    font-size: 1rem;
    color: var(--vhe-color-text);
    background: var(--vhe-color-surface);
    transition: all var(--vhe-transition-fast);
}
.vhe_contact-modal-textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
}
.vhe_contact-modal-input:focus,
.vhe_contact-modal-textarea:focus {
    outline: none;
    border-color: var(--vhe-color-accent);
    box-shadow: 0 0 0 3px var(--vhe-color-accent-glow);
}
.vhe_contact-modal-input-wrapper--textarea .vhe_contact-modal-icon {
    top: 1.2rem;
    transform: none;
}
.vhe_contact-modal-hint {
    font-size: 0.85rem;
    color: var(--vhe-color-text-light);
    margin-top: 0.4rem;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity var(--vhe-transition-fast);
}
.vhe_contact-modal-checkbox-field {
    margin-top: 0.5rem;
}
.vhe_contact-modal-checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color var(--vhe-transition-fast);
}
.vhe_contact-modal-checkbox-wrapper:hover {
    background: var(--vhe-color-surface);
}
.vhe_contact-modal-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    flex-shrink: 0;
    cursor: pointer;
}
.vhe_contact-modal-checkbox-label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--vhe-color-text-muted);
    user-select: none;
}
.vhe_contact-modal-link {
    color: var(--vhe-color-cyan);
    text-decoration: none;
    font-weight: 500;
}
.vhe_contact-modal-link:hover {
    text-decoration: underline;
    color: var(--vhe-color-accent);
}
.vhe_contact-modal-submit {
    background: var(--vhe-color-accent);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: var(--vhe-radius-small);
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--vhe-transition-medium);
    margin-top: 1rem;
    box-shadow: 0 0 20px var(--vhe-color-accent-glow);
}
.vhe_contact-modal-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--vhe-color-accent-glow);
}
.vhe_contact-modal-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
@keyframes vhe_modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.vhe_subscription-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 46, 0.75);
    z-index: 10000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--vhe-transition-medium), visibility var(--vhe-transition-medium);
}
.vhe_subscription-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.vhe_subscription-modal-content {
    background-color: var(--vhe-color-card);
    border-radius: var(--vhe-radius-large);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: vhe_subscriptionModalAppear 0.6s ease-out;
    scrollbar-width: thin;
    scrollbar-color: var(--vhe-color-sunrise) transparent;
}
.vhe_subscription-modal-content::-webkit-scrollbar {
    width: 6px;
}
.vhe_subscription-modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.vhe_subscription-modal-content::-webkit-scrollbar-thumb {
    background-color: var(--vhe-color-sunrise);
    border-radius: 3px;
}
.vhe_subscription-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--vhe-color-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, var(--vhe-color-sky-light) 0%, transparent 100%);
}
.vhe_subscription-modal-title {
    font-family: var(--vhe-font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--vhe-color-text-dark);
    margin: 0;
}
.vhe_subscription-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--vhe-color-text-light);
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--vhe-transition-fast);
}
.vhe_subscription-modal-close:hover {
    background-color: var(--vhe-color-sky-light);
    color: var(--vhe-color-sunset);
}
.vhe_subscription-modal-body {
    padding: 2rem;
}
.vhe_subscription-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.8rem;
}
.vhe_subscription-form-text {
    color: var(--vhe-color-text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.vhe_subscription-form-field {
    position: relative;
}
.vhe_subscription-form-label {
    display: block;
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    color: var(--vhe-color-text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.vhe_subscription-form-input-wrapper {
    position: relative;
}
.vhe_subscription-form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vhe-color-sunrise);
    font-size: 1.1rem;
}
.vhe_subscription-form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--vhe-color-border);
    border-radius: var(--vhe-radius-small);
    font-family: var(--vhe-font-body);
    font-size: 1rem;
    color: var(--vhe-color-text-dark);
    background-color: var(--vhe-color-background);
    transition: all var(--vhe-transition-fast);
}
.vhe_subscription-form-input:focus {
    outline: none;
    border-color: var(--vhe-color-sunrise);
    box-shadow: 0 0 0 3px rgba(255, 204, 128, 0.2);
}
.vhe_subscription-form-hint {
    font-size: 0.85rem;
    color: var(--vhe-color-text-light);
    margin-top: 0.4rem;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity var(--vhe-transition-fast);
}
.vhe_subscription-form-checkbox-field {
    margin-top: 0.5rem;
}
.vhe_subscription-form-checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color var(--vhe-transition-fast);
}
.vhe_subscription-form-checkbox-wrapper:hover {
    background-color: var(--vhe-color-sky-light);
}
.vhe_subscription-form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    flex-shrink: 0;
    cursor: pointer;
}
.vhe_subscription-form-checkbox-label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--vhe-color-text-medium);
    user-select: none;
}
.vhe_subscription-form-submit {
    background: linear-gradient(90deg, var(--vhe-color-sunrise), var(--vhe-color-sunset));
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: var(--vhe-radius-small);
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--vhe-transition-medium);
    margin-top: 0.5rem;
}
.vhe_subscription-form-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 102, 0.4);
}
.vhe_subscription-form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
@keyframes vhe_subscriptionModalAppear {
    0% { transform: scale(0.8) rotate(-5deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.vhe_success-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 46, 0.9);
    z-index: 10001;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--vhe-transition-medium), visibility var(--vhe-transition-medium);
}
.vhe_success-alert-overlay.active {
    opacity: 1;
    visibility: visible;
}
.vhe_success-alert-card {
    background-color: var(--vhe-color-card);
    border-radius: var(--vhe-radius-large);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: vhe_successAlertPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vhe_success-alert-icon {
    font-size: 4rem;
    color: var(--vhe-color-success);
    margin-bottom: 1.5rem;
    animation: vhe_successIconPulse 1s ease infinite;
}
.vhe_success-alert-title {
    font-family: var(--vhe-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--vhe-color-text-dark);
    margin-bottom: 1rem;
}
.vhe_success-alert-message {
    color: var(--vhe-color-text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.vhe_success-alert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.vhe_success-alert-btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: var(--vhe-font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--vhe-transition-fast);
    min-width: 140px;
}
.vhe_success-alert-btn--primary {
    background: linear-gradient(90deg, var(--vhe-color-sky-deep), var(--vhe-color-sunrise));
    color: white;
}
.vhe_success-alert-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 191, 255, 0.4);
}
@keyframes vhe_successAlertPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes vhe_successIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 1024px) {
    .vhe_section-welcome__title {
        font-size: 2.8rem;
    }
    .vhe_section-about__wrapper {
        gap: 3rem;
    }
    .vhe_section-reviews__slide {
        flex: 0 0 calc(50% - 1rem);
    }
    .vhe_site-footer__main {
        gap: 2.5rem;
    }
}
@media (max-width: 768px) {
    .vhe_site-header__nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--vhe-color-card);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 30px var(--vhe-color-shadow);
        border-top: 1px solid var(--vhe-color-border);
        gap: 1rem;
        z-index: 1000;
    }
    .vhe_site-header__nav-item.open .vhe_site-header__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        box-shadow: none;
        border: 1px solid var(--vhe-color-border);
    }
    .vhe_site-header__nav-list.active {
        display: flex;
    }
    .vhe_site-header__menu-toggle {
        display: block;
    }
    .vhe_section-welcome__title {
        font-size: 2.4rem;
    }
    .vhe_section-welcome__subtitle {
        font-size: 1.15rem;
    }
    .vhe_section-about__image-caption {
        position: static;
        margin-top: 1rem;
        text-align: center;
        display: inline-block;
    }
    .vhe_section-reviews__slide {
        flex: 0 0 100%;
    }
    .vhe_section-reviews__carousel-btn {
        display: none;
    }
    .vhe_site-footer__brand-col,
    .vhe_site-footer__nav-col,
    .vhe_site-footer__action-col {
        flex: 1 1 100%;
    }
    .vhe_site-footer__nav-col {
        min-width: 100%;
    }
    .vhe_scroll-navigation {
        right: 15px;
        bottom: 80px;
    }
}
@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }
    .vhe_age-verify-notice {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    .vhe_cookie-consent-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .vhe_cookie-consent-banner__controls {
        justify-content: center;
    }
    .vhe_site-header__disclaimer {
        display: none;
    }
    .vhe_site-header__container {
        padding: 0.8rem 1rem;
    }
    .vhe_site-header__title {
        font-size: 1.4rem;
    }
    .vhe_section-welcome {
        padding: 3rem 1rem;
        min-height: 80vh;
    }
    .vhe_section-welcome__title {
        font-size: 2rem;
    }
    .vhe_section-welcome__subtitle {
        font-size: 1.05rem;
    }
    .vhe_section-welcome__actions {
        flex-direction: column;
        width: 100%;
    }
    .vhe_section-welcome__action-btn {
        width: 100%;
        text-align: center;
    }
    .vhe_section-welcome__stats {
        gap: 1.5rem;
    }
    .vhe_section-welcome__stat-number {
        font-size: 2rem;
    }
    .vhe_section-about,
    .vhe_section-features,
    .vhe_section-games,
    .vhe_section-faq,
    .vhe_section-reviews,
    .vhe_section-responsible {
        padding: 3rem 0.1rem;
    }
    .vhe_section-about__title,
    .vhe_section-features__main-title,
    .vhe_section-games__title,
    .vhe_section-faq__heading,
    .vhe_section-reviews__title {
        font-size: 2rem;
    }
    .vhe_section-about__intro,
    .vhe_section-features__subtitle,
    .vhe_section-games__description,
    .vhe_section-faq__lead,
    .vhe_section-reviews__subtitle {
        font-size: 1.05rem;
    }
    .vhe_section-about__details {
        flex-direction: column;
    }
    .vhe_section-features__card {
        min-width: 100%;
    }
    .vhe_section-games__showcase {
        gap: 1.5rem;
    }
    .vhe_section-responsible__inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .vhe_section-responsible__partners {
        flex: 0 0 auto;
        width: 100%;
    }
    .vhe_contact-modal-header,
    .vhe_contact-modal-body,
    .vhe_subscription-modal-header,
    .vhe_subscription-modal-body {
        padding: 1.5rem;
    }
    .vhe_contact-modal-title,
    .vhe_subscription-modal-title {
        font-size: 1.6rem;
    }
    .vhe_success-alert-card {
        padding: 2.5rem 1.5rem;
    }
    .vhe_success-alert-title {
        font-size: 1.7rem;
    }
    .vhe_success-alert-message {
        font-size: 1rem;
    }
    .vhe_site-footer__main {
        padding: 0 1rem 2.5rem;
        gap: 2rem;
    }
    .vhe_site-footer__bottom {
        padding: 1.5rem 1rem;
    }
    .vhe_scroll-navigation {
        display: none;
    }
    .vhe_section-welcome__badge,
    .vhe_section-welcome__action-btn--explore:hover,
    .vhe_section-welcome__action-btn--learn:hover,
    .vhe_section-features__card:hover,
    .vhe_section-games__card:hover,
    .vhe_section-reviews__card:hover {
        transform: none;
    }
}
/* Inner pages (policy, etc.) */
.page-hero {
    padding: 3rem 1.5rem;
    text-align: center;
    background: var(--vhe-color-surface);
    border-bottom: 1px solid var(--vhe-color-border);
}
.page-hero__title {
    font-family: var(--vhe-font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin-bottom: 0.75rem;
}
.page-hero__subtitle {
    font-size: 1.1rem;
    color: var(--vhe-color-text-light);
    max-width: 600px;
    margin: 0 auto;
}
.page-hero--with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-hero--with-bg .page-hero__title,
.page-hero--with-bg .page-hero__subtitle {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,20,0.88) 0%, rgba(21,21,32,0.9) 100%);
    z-index: 1;
}
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}
.page-content h2 {
    font-family: var(--vhe-font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vhe-color-text);
    margin: 2.5rem 0 1rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li {
    color: var(--vhe-color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.page-content a {
    color: var(--vhe-color-cyan);
    text-decoration: none;
}
.page-content a:hover {
    text-decoration: underline;
    color: var(--vhe-color-accent);
}
@media (max-width: 768px) {
    .page-hero__title { font-size: 1.8rem; }
    .page-content { padding: 1.5rem 1rem 3rem; }
}

@media (max-width: 320px) {
    .vhe_site-header__title {
        font-size: 1.3rem;
    }
    .vhe_section-welcome__title {
        font-size: 1.8rem;
    }
    .vhe_section-welcome__stats {
        flex-direction: column;
        gap: 1.2rem;
    }
    .vhe_section-games__card {
        max-width: 100%;
    }
    .vhe_success-alert-btn {
        min-width: 120px;
        padding: 0.8rem 1.5rem;
    }
}