:root {
    --primary: #39ff14;
    --primary-dark: #25b80c;
    --secondary: #00e5ff;
    --accent: #ffb800;

    --bg-dark: #1b1b2f;
    --bg-darker: #13131f;
    --bg-card: #232340;
    --bg-card-alt: #2b2b4a;

    --led-line: rgba(57, 255, 20, 0.18);

    --text-primary: #f1f1f7;
    --text-secondary: #b6b6cf;
    --text-muted: #7d7d9c;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --header-height: 70px;

    --font-body: 'Barlow Condensed', sans-serif;
    --font-heading: 'Teko', sans-serif;

    --glow: 0 0 12px rgba(57, 255, 20, 0.55);
}

.yea-m-main { min-height: 60vh; }

.yea-btn--sm { font-size: 1.1rem; padding: 8px 16px; }

.yea-m-header__link:hover,
.yea-m-header__link.is-active { color: var(--primary); text-shadow: var(--glow); }

.yea-m-header__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }

.yea-m-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.yea-m-header__nav { display: flex; gap: var(--space-xl); }

h4 { font-size: 1.4rem; }

img { max-width: 100%; display: block; }

.yea-m-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yea-btn--ghost:hover { background: var(--primary); color: var(--bg-darker); }

body {
    font-family: var(--font-body), sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.55;
    font-size: 18px;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 38px, var(--led-line) 39px, transparent 40px),
        radial-gradient(circle at 20% 0%, rgba(57,255,20,0.06), transparent 45%);
}

.yea-m-container--narrow { max-width: 820px; }

.yea-m-mobile-menu__link--cta {
    color: var(--bg-dark);
    background: var(--primary);
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-bottom: none;
}

h2 { font-size: 2.6rem; }

.yea-m-header__link.is-active::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: var(--primary);
    box-shadow: var(--glow);
}

.yea-m-mobile-menu.is-open { display: flex; }

.yea-btn--block { display: block; width: 100%; }

.yea-btn--accent {
    background: var(--primary);
    color: var(--bg-darker);
    box-shadow: var(--glow);
}

.yea-m-hero {
    position: relative;
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    background:
        radial-gradient(ellipse at 50% -20%, rgba(57,255,20,0.18), transparent 60%),
        linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
    border-bottom: 2px solid var(--primary);
    overflow: hidden;
}

.yea-m-mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--bg-darker);
    border-bottom: 2px solid var(--primary);
    flex-direction: column;
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-sm);
    display: none;
    z-index: 999;
}

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

.yea-m-hero__container { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }

.yea-m-hero__tag {
    display: inline-block;
    font-family: var(--font-heading), sans-serif;
    letter-spacing: 3px;
    font-size: 1.1rem;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 16px;
    border-radius: 4px;
    text-shadow: var(--glow);
    animation: ledblink 2.2s infinite;
}

p { margin-bottom: var(--space-md); }

.yea-logo--footer { font-size: 1.7rem; }

ul { list-style: none; }

.yea-m-hero--small { padding: var(--space-2xl) var(--space-lg); }

.yea-btn {
    display: inline-block;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: .2s;
    text-align: center;
    background: none;
}

.yea-btn--lg { font-size: 1.6rem; padding: 16px 40px; }

.yea-btn--accent:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(57,255,20,0.8);
}

.yea-m-hero__scoreboard { margin-bottom: var(--space-md); }

.yea-m-header__actions { display: flex; align-items: center; gap: var(--space-md); }

h1 { font-size: 3.4rem; }

.yea-m-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.yea-m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(57,255,20,0.04) 7px, transparent 8px);
    pointer-events: none;
}

.yea-m-mobile-menu__link {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.yea-m-hero__container--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    max-width: 1100px;
    text-align: left;
}

.yea-m-header__burger span {
    width: 26px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: .3s;
}

.yea-m-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(19, 19, 31, 0.96);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 0 18px rgba(57,255,20,0.25);
    backdrop-filter: blur(8px);
}

.yea-m-header__link {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color .2s, text-shadow .2s;
    position: relative;
}

html { scroll-behavior: smooth; }

.yea-m-mobile-menu__link:hover,
.yea-m-mobile-menu__link.is-active { color: var(--primary); }

.yea-m-header__burger.is-open span:nth-child(2) { opacity: 0; }

.yea-logo {
    font-family: var(--font-heading), sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    text-shadow: var(--glow);
}

.yea-m-header__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.yea-btn--ghost {
    border-color: var(--primary);
    color: var(--primary);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading), sans-serif;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h3 { font-size: 1.9rem; }

@keyframes ledblink { 0%,100%{opacity:1;} 50%{opacity:.55;} }

.yea-m-hero__title--404 { font-size: 8rem; }

.yea-m-hero__tagline {
    font-size: 1.6rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading), sans-serif;
    margin-bottom: var(--space-md);
}

.yea-m-hero__subtitle {
    font-family: var(--font-heading), sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.yea-m-grid--3 { grid-template-columns: repeat(3, 1fr); }

.yea-m-grid { display: grid; gap: var(--space-lg); }

.yea-benefit-card__desc { color: var(--text-secondary); font-size: 1.1rem; margin: 0; }

.yea-m-hero__title--small { font-size: 3.4rem; }

.yea-m-section__title--mt { margin-top: var(--space-3xl); }

.yea-m-grid--4 { grid-template-columns: repeat(4, 1fr); }

.yea-benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: .2s;
}

.yea-m-section { padding: var(--space-3xl) 0; }

.yea-m-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.yea-benefit-card__icon { font-size: 2.6rem; display: block; margin-bottom: var(--space-md); }

.yea-m-hero__auth { display: flex; gap: var(--space-sm); flex-shrink: 0; }

.yea-m-grid--2 { grid-template-columns: repeat(2, 1fr); }

.yea-m-section__title {
    text-align: center;
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 8px rgba(57,255,20,0.4);
}

.yea-m-section--page-top { padding-top: var(--space-2xl); }

.yea-benefit-card__title { color: var(--primary); margin-bottom: var(--space-sm); }

.yea-benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.yea-m-section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-bottom: var(--space-2xl);
}

.yea-m-hero__text {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.yea-m-hero__container--row .yea-m-hero__text { margin: 0; }

.yea-m-section__cta { text-align: center; margin-top: var(--space-2xl); }

.yea-featured-provider__title {
    color: var(--secondary);
    border-left: 4px solid var(--primary);
    padding-left: var(--space-md);
    margin-bottom: var(--space-lg);
}

.yea-m-hero__title {
    font-size: 5rem;
    color: var(--primary);
    text-shadow: var(--glow);
    margin-bottom: var(--space-md);
}

.yea-featured-provider { margin-bottom: var(--space-2xl); }

@media (max-width: 768px) {
    .yea-m-games-grid { grid-template-columns: repeat(2, 1fr); }
}

.yea-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .yea-games-grid { grid-template-columns: repeat(2, 1fr); }
}

.yea-provider-filter__btn {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: .2s;
}

.yea-game-card:hover,
.yea-m-game-tile:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.yea-m-content-card h2 { color: var(--primary); margin: var(--space-xl) 0 var(--space-md); }

.yea-unlock-banner strong { color: var(--primary); }

.yea-unlock-banner .yea-btn { margin-left: auto; }

.yea-cookie-consent__text { color: var(--text-secondary); font-size: 1.05rem; margin: 0; max-width: 760px; }

.yea-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    padding: var(--space-lg);
    transition: opacity .25s;
}

.yea-back-to-top.is-visible { opacity: 1; visibility: visible; }

.yea-article-card__content { padding: var(--space-xl); }

.yea-auth-tabs__btn.is-active { background: var(--primary); color: var(--bg-darker); }

.yea-offer-card__stats {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    border-top: 1px solid rgba(57,255,20,0.15);
    padding-top: var(--space-md);
}

.yea-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.yea-game-card__media,
.yea-m-game-tile__image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-darker);
}

.yea-disclaimer-box__title { color: var(--accent); margin-bottom: var(--space-md); }

.yea-article-card__title { color: var(--text-primary); margin-bottom: var(--space-sm); }

.yea-m-footer__disclaimer { font-size: .85rem; }

.yea-disclaimer-box p:last-child { margin-bottom: 0; }

.yea-m-provider-section__title {
    color: var(--secondary);
    border-left: 4px solid var(--primary);
    padding-left: var(--space-md);
}

.yea-modal__box {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 30px rgba(57,255,20,0.35);
}

.yea-game-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(19,19,31,0.45);
    opacity: 0;
    transition: opacity .2s;
    text-shadow: var(--glow);
}

.yea-m-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-lg);
    text-align: center;
}

.yea-faq-item__q::after { content: '+'; color: var(--primary); font-size: 1.8rem; }

.yea-modal__title { color: var(--primary); margin-bottom: var(--space-md); text-align: center; text-shadow: var(--glow); }

.yea-m-footer__link {
    display: block;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 4px 0;
    transition: color .2s;
}

.yea-auth-tabs__btn {
    flex: 1;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: .2s;
}

.yea-modal.is-open { opacity: 1; visibility: visible; }

.yea-m-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-2xl);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}

.yea-xp-block {
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.yea-game-card,
.yea-m-game-tile {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: .2s;
}

.yea-offer-card__desc { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: var(--space-md); flex-grow: 1; }

.yea-profile-level__label { font-family: var(--font-heading), sans-serif; font-size: 1rem; color: var(--text-secondary); letter-spacing: 1px; }

.yea-stat-card__value {
    display: block;
    font-family: var(--font-heading), sans-serif;
    font-size: 2.6rem;
    color: var(--primary);
    text-shadow: var(--glow);
    line-height: 1;
}

.yea-provider-games-list li {
    background: var(--bg-darker);
    border-left: 3px solid var(--primary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-heading), sans-serif;
    font-size: 1.2rem;
    letter-spacing: .5px;
}

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

.yea-stars { color: #ffc107; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: var(--space-md); }

.yea-m-content-card a:hover { text-shadow: var(--glow); }

::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 5px; }

.yea-m-provider-section__count {
    font-family: var(--font-heading), sans-serif;
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.yea-form-group { margin-bottom: var(--space-md); }

.yea-m-section--disclaimer { padding-top: 0; }

.yea-offer-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: .2s;
}

.yea-faq-item[open] .yea-faq-item__q::after,
.yea-faq-item.is-open .yea-faq-item__q::after { content: '−'; }

.yea-xp-block__labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.yea-m-game-tile__lock-text {
    font-family: var(--font-heading), sans-serif;
    color: var(--primary);
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.yea-unlock-banner {
    background: linear-gradient(90deg, rgba(57,255,20,0.12), rgba(0,229,255,0.08));
    border: 1px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.yea-profile-head {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--glow);
}

.yea-modal__game-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.yea-faq-item__q {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.5rem;
    letter-spacing: .5px;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compliance-badge img { height: 34px; width: auto; }

.yea-profile-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

.yea-profile-stats { margin-bottom: var(--space-xl); }

.yea-provider-filter__btn.is-active {
    background: var(--primary);
    color: var(--bg-darker);
    box-shadow: var(--glow);
}

.yea-auth-form.is-active { display: block; }

.yea-m-content-card h2:first-child { margin-top: 0; }

.yea-games-list { display: block; }

.yea-xp-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    box-shadow: var(--glow);
    transition: width .5s;
}

.yea-m-game-tile__lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,35,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-sm);
}

.yea-form-group input:focus { outline: none; border-color: var(--primary); box-shadow: var(--glow); }

.yea-m-page-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
}

.yea-cookie-consent.is-open { display: flex; }

.yea-provider-filter__btn:hover { color: var(--primary); }

.yea-article-card__overlay { position: absolute; inset: 0; z-index: 1; }

.yea-m-breadcrumb a:hover { color: var(--primary); }

.yea-m-breadcrumb span { margin: 0 var(--space-xs); }

.yea-m-game-tile__lock-icon { font-size: 2rem; }

.yea-article-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.yea-disclaimer-box--inline { margin-top: var(--space-2xl); }

.yea-m-breadcrumb {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.15rem;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.yea-profile-info__name { color: var(--text-primary); margin-bottom: var(--space-xs); }

.yea-profile-info__email { color: var(--text-muted); font-size: 1.05rem; margin: 0; }

.yea-account-forms { margin-bottom: var(--space-3xl); }

.yea-profile-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88px; height: 88px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: var(--glow);
    flex-shrink: 0;
}

.yea-xp-block__labels strong { color: var(--primary); }

.yea-xp-bar {
    height: 18px;
    background: var(--bg-darker);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(57,255,20,0.25);
}

.yea-m-footer__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: var(--space-md) 0;
}

.yea-form-group input {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body), sans-serif;
    font-size: 1.05rem;
    background: var(--bg-darker);
    border: 1px solid rgba(57,255,20,0.25);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
}

.yea-m-content-card {
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
}

.yea-m-game-tile--locked .yea-m-game-tile__image img {
    filter: blur(4px) grayscale(50%);
    opacity: 0.6;
}

.yea-account-card {
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.yea-game-card__name,
.yea-m-game-tile__title {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading), sans-serif;
    font-size: 1.25rem;
    letter-spacing: .5px;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yea-auth-tabs { display: flex; gap: var(--space-sm); margin-bottom: var(--space-lg); }

.yea-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.yea-m-provider-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(57,255,20,0.2);
    padding-bottom: var(--space-sm);
}

.yea-game-card:hover .yea-game-card__media img,
.yea-m-game-tile:hover .yea-m-game-tile__image img { transform: scale(1.06); }

.yea-m-content-card ul { margin: 0 0 var(--space-md) var(--space-lg); list-style: disc; color: var(--text-secondary); }

.yea-m-content-card ul li { margin-bottom: var(--space-sm); font-size: 1.15rem; }

.yea-faq-list { display: flex; flex-direction: column; gap: var(--space-md); }

.yea-modal__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

.yea-m-content-card__cta { margin-top: var(--space-xl); text-align: center; }

.yea-provider-games-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    list-style: none !important;
    margin-left: 0 !important;
}

.yea-m-content-card a { color: var(--primary); }

.yea-modal__text { color: var(--text-secondary); text-align: center; margin-bottom: var(--space-lg); }

::-webkit-scrollbar { width: 10px; }

.yea-m-breadcrumb a { color: var(--text-secondary); }

.yea-modal__game-frame iframe { width: 100%; height: 100%; border: none; }

.yea-account-card__title { color: var(--primary); margin-bottom: var(--space-lg); text-align: center; }

.yea-m-footer__bottom p { color: var(--text-muted); font-size: .95rem; margin-bottom: var(--space-sm); max-width: 1000px; margin-left: auto; margin-right: auto; }

.yea-m-provider-section { margin-bottom: var(--space-2xl); }

.yea-auth-form__title { color: var(--primary); text-align: center; margin-bottom: var(--space-lg); }

.yea-account-benefits { margin-top: var(--space-2xl); }

.yea-article-card__desc { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: var(--space-md); }

.yea-article-card__more {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
}

.yea-game-card__media img,
.yea-m-game-tile__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.yea-faq-item.is-open { border-color: var(--primary); }

.yea-offer-card:hover { border-color: var(--primary); box-shadow: var(--glow); transform: translateY(-4px); }

.yea-offer-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-md); }

.yea-profile-level__num { font-family: var(--font-heading), sans-serif; font-size: 2.4rem; color: var(--primary); line-height: 1; }

.yea-age-badge {
    display: inline-block;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.3rem;
    color: var(--bg-darker);
    background: var(--accent);
    border-radius: 50%;
    width: 44px; height: 44px;
    line-height: 44px;
    text-align: center;
}

.yea-stat-card__label {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.yea-back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--bg-darker);
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 900;
    box-shadow: var(--glow);
}

.yea-m-footer__link:hover { color: var(--primary); }

.yea-bonus-amount {
    font-family: var(--font-heading), sans-serif;
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    text-shadow: var(--glow);
    margin-bottom: var(--space-lg);
}

.yea-disclaimer-box {
    background: var(--bg-darker);
    border: 1px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

::-webkit-scrollbar-track { background: var(--bg-darker); }

.yea-modal__box--game { max-width: 920px; }

.yea-cookie-consent {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 1500;
    flex-wrap: wrap;
}

.yea-m-footer__title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.yea-faq-item__a { color: var(--text-secondary); font-size: 1.1rem; margin: var(--space-md) 0 0; }

.yea-article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: .2s;
}

.yea-article-card__cat {
    display: inline-block;
    font-family: var(--font-heading), sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg-darker);
    background: var(--primary);
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: var(--space-md);
}

.yea-form-group label {
    display: block;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
}

.yea-disclaimer-box p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: var(--space-sm); }

.yea-auth-form { display: none; }

.yea-faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
}

.yea-m-page-title {
    text-align: center;
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 10px rgba(57,255,20,0.4);
}

.yea-offer-card__title { color: var(--primary); }

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

.yea-m-footer__compliance { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }

.yea-provider-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.yea-m-content-card p { color: var(--text-secondary); font-size: 1.15rem; }

.yea-m-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary);
    padding-top: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.compliance-badge {
    display: inline-block;
    background: #fff;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
}

@media (max-width: 992px) {
    .yea-m-footer__inner { grid-template-columns: 1fr 1fr; }
    .yea-m-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .yea-m-hero__title { font-size: 4rem; }
}

@media (max-width: 768px) {
    .yea-m-header__nav { display: none; }
    .yea-m-header__account { display: none; }
    .yea-m-header__burger { display: flex; }
    .yea-m-grid--3, .yea-m-grid--4 { grid-template-columns: 1fr; }
    .yea-m-grid--2 { grid-template-columns: 1fr; }
    .yea-m-hero__container--row { flex-direction: column; text-align: center; }
    .yea-m-hero__container--row .yea-m-hero__text { margin: 0 auto; }
    .yea-m-hero__auth { justify-content: center; }
    .yea-m-hero__title { font-size: 3rem; }
    .yea-m-hero__title--small { font-size: 2.4rem; }
    .yea-m-hero__title--404 { font-size: 5rem; }
    .yea-m-footer__inner { grid-template-columns: 1fr; }
    .yea-unlock-banner .yea-btn { margin-left: 0; }
    .yea-provider-games-list { grid-template-columns: 1fr; }
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }
    body { padding-bottom: 90px; }
    .yea-cookie-consent { padding-bottom: var(--space-lg); }
}

@media (max-width: 480px) {
    .yea-m-container { padding: 0 var(--space-md); }
    .yea-m-content-card { padding: var(--space-lg); }
    .yea-modal__box { padding: var(--space-lg); }
    .yea-profile-head { flex-direction: column; text-align: center; }
}

:root { --cookie-banner-h: 0px; }

body { padding-bottom: var(--cookie-banner-h); }

.yea-cookie-consent.is-visible ~ * body,
body.has-cookie-banner { --cookie-banner-h: 120px; }

html, body { overflow-x: hidden; }

@media (max-width: 768px) {
    body.has-cookie-banner { --cookie-banner-h: 160px; }
}

[id$="GamesContainer"],
[id$="gamesContainer"],
#yeaGamesContainer {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    width: 100%;
}

.yea-provider-section,
.yea-m-provider-section,
[class*="provider-section"] {
    width: 100%;
    margin-bottom: 24px;
}

[id$="GamesContainer"] > *,
[id$="gamesContainer"] > *,
#yeaGamesContainer > * {
    grid-column: unset !important;
    width: 100%;
}

@media (max-width: 480px) {
    .yea-games-grid,
    .yea-m-games-grid,
    [class*="games-grid"]:not([class*="featured"]) {
        grid-template-columns: 1fr !important;
    }
}

.yea-m-filter > *, .yea-filter-bar > *, .yea-filters > * { flex-shrink: 0; }

.yea-modal, .yea-m-modal, [class*="modal"][class*="overlay"] { z-index: 9999 !important; }

.yea-modal__overlay, .yea-m-modal__overlay { z-index: 9998 !important; }

#gameFrame, .yea-game-iframe, iframe.game {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border: 0;
    display: block;
}

.yea-m-filter, .yea-filter-bar, .yea-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 4px 12px;
    scrollbar-width: thin;
}

@media (max-width: 480px) {
    .yea-site-header__inner, .yea-m-header__inner {
        gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

[data-game-scale] {
    position: relative;
    overflow: hidden;
}

[class*="game-tile__image"] img,
[class*="game-card__media"] img,
[class*="m-game-tile__image"] img,
[class*="m-game-card__media"] img,
[class*="provider-game"] img {
    object-fit: contain !important;
    background: #0a0a0a;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

[class*="disclaimer__title"],
[class*="disclaimer-title"] {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--primary, #00e676) !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[class*="modal__box--game"],
[class*="modal__dialog--game"],
[class*="m-modal__box--game"],
[class*="m-modal__dialog--game"],
[class*="modal--game"] [class*="modal__box"],
[class*="modal--game"] [class*="modal__dialog"],
[class*="m-modal--game"] [class*="modal__box"],
[class*="m-modal--game"] [class*="modal__dialog"],
[class*="modal--game"] > [class*="__box"],
[class*="modal--game"] > [class*="__dialog"],
[class*="m-modal--game"] > [class*="__box"],
[class*="m-modal--game"] > [class*="__dialog"],
[class*="modal--game"][class*="-game"],
[class*="m-modal--game"][class*="-game"] {
    max-width: 1360px !important;
    width: 65vw !important;
    max-height: 73vh !important;
    height: auto !important;
    margin: auto !important;
}

.yea-m-notification__icon    { font-size: 1.25rem; flex-shrink: 0; }

.yea-m-notification__content { display: flex; align-items: center; gap: 0.75rem; }

[class*="modal--game"],
[class*="m-modal--game"],
.yea-nit-m-modal[id*="GameModal"],
[id*="GameModal"][class*="modal"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.yea-m-notification__message { flex: 1; line-height: 1.4; }

.yea-m-notification--info    { border-left: 4px solid #3498db; }

[class*="disclaimer"]:not([class*="disclaimer__"]):not([class*="disclaimer-"]) {
    border-left: 5px solid var(--primary, #00e676) !important;
    background: var(--bg-card-alt, var(--bg-card, #1a1a1a)) !important;
    padding: 28px 32px !important;
    margin: 32px 0 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

[data-game-scale] iframe {
    width: 1920px !important;
    height: 1080px !important;
    transform: scale(var(--game-scale, 1));
    transform-origin: top left;
    position: absolute;
    top: 0;
    left: 0;
}

.yea-m-notification--error   { border-left: 4px solid #e74c3c; }

.yea-m-notification.show { opacity: 1; transform: translateX(0); }

[class*="disclaimer__text"],
[class*="disclaimer-text"],
[class*="disclaimer"]:not([class*="disclaimer__"]):not([class*="disclaimer-"]) p {
    font-size: 1.02rem !important;
    line-height: 1.6 !important;
    color: var(--text-primary, #fff) !important;
}

.yea-m-notification--success { border-left: 4px solid #4caf7a; }

.yea-m-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    padding: 1rem 1.5rem;
    min-width: 240px;
    max-width: 360px;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(120%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: inherit;
}

.yea-m-notification--warning { border-left: 4px solid #f39c12; }

[class*="game-tile__image"],
[class*="game-card__media"],
[class*="m-game-tile__image"],
[class*="m-game-card__media"] {
    background: #0a0a0a;
    overflow: hidden;
}

[class*="modal--game"] iframe,
[class*="m-modal--game"] iframe,
[class*="modal__box--game"] iframe,
[class*="modal__dialog--game"] iframe,
[class*="m-modal__box--game"] iframe,
[class*="m-modal__dialog--game"] iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

[class*="modal--game"] [class*="frame-wrap"],
[class*="m-modal--game"] [class*="frame-wrap"],
[class*="modal--game"] [class*="modal__body"],
[class*="m-modal--game"] [class*="modal__body"] ,
[class*="modal__box--game"] [class*="frame-wrap"],
[class*="modal__dialog--game"] [class*="frame-wrap"],
[class*="m-modal__box--game"] [class*="frame-wrap"],
[class*="m-modal__dialog--game"] [class*="frame-wrap"] {
    aspect-ratio: 16/10;  /* slot games standard */
    max-height: calc(92vh - 60px);
}

@media (max-width: 768px) {
    [class*="modal__box--game"],
    [class*="modal__dialog--game"],
    [class*="m-modal__box--game"],
    [class*="m-modal__dialog--game"],
    [class*="modal--game"] [class*="modal__box"],
    [class*="modal--game"] [class*="modal__dialog"],
    [class*="m-modal--game"] [class*="modal__box"],
    [class*="m-modal--game"] [class*="modal__dialog"],
    [class*="modal--game"] > [class*="__box"],
    [class*="modal--game"] > [class*="__dialog"],
    [class*="m-modal--game"] > [class*="__box"],
    [class*="m-modal--game"] > [class*="__dialog"],
    [class*="modal--game"][class*="-game"],
    [class*="m-modal--game"][class*="-game"] {
        max-width: 95vw !important;
        width: 95vw !important;
        max-height: 90vh !important;
        height: 90vh !important;
        border-radius: 8px !important;
        margin: auto !important;
    }
    [class*="modal--game"] [class*="frame-wrap"],
    [class*="m-modal--game"] [class*="frame-wrap"],
    [class*="modal--game"] [class*="modal__body"],
    [class*="m-modal--game"] [class*="modal__body"],
    [class*="modal__box--game"] [class*="frame-wrap"],
    [class*="modal__dialog--game"] [class*="frame-wrap"],
    [class*="m-modal__box--game"] [class*="frame-wrap"],
    [class*="m-modal__dialog--game"] [class*="frame-wrap"] {
        aspect-ratio: unset !important;
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
    }
}