:root {
    --container: 1160px;
    --space: 20px;
    --text: #111111;
    --bg: #0c0c0c;
    --yellow: #f6e507;
    --black:#000;
    --red: #a41414;
    --font-body: "Kanit", Arial, sans-serif;
    --font-title: "Bangers", "Arial Black", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: #090909;
    font-family: var(--font-body);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-copy,
.stats-big {
    font-family: var(--font-title);
    letter-spacing: 0.02em;
}

.container {
    width: min(100% - 2 * var(--space), var(--container));
    margin-inline: auto;
}

.site-footer {
    padding: 8px 0;
    min-height: 80px;
    background: #121212;
    color: #ffffff;
}

.site-footer .container {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 0;
    flex: 0 0 auto;
}

.site-footer__consent-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--yellow);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.site-footer__consent-link:hover,
.site-footer__consent-link:focus-visible {
    color: #fff8a6;
}

.menu-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-footer li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-footer a {
    color: var(--yellow);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.menu-footer a:hover,
.menu-footer a:focus-visible {
    color: #fff8a6;
}

.cookie-consent {
    position: fixed;
    inset: auto 16px 16px;
    z-index: 1000;
}

.cookie-consent__panel {
    width: min(100%, 720px);
    padding: 22px;
    border: 1px solid rgba(255, 246, 0, 0.28);
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
    color: #fff;
}

.cookie-consent__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cookie-consent__title {
    margin: 0;
    color: var(--yellow);
    font-size: 1.35rem;
    line-height: 1.1;
}

.cookie-consent__close {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-consent__text,
.cookie-consent__policy,
.cookie-consent__option p {
    margin: 12px 0 0;
}

.cookie-consent__policy a {
    color: var(--yellow);
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.cookie-consent__btn {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent__btn--primary {
    border: 1px solid #fff05c;
    background: var(--yellow);
    color: #111;
}

.cookie-consent__btn--secondary,
.cookie-consent__btn--ghost {
    border: 1px solid rgba(255, 246, 0, 0.32);
    background: transparent;
    color: #fff;
}

.cookie-consent__preferences {
    margin-top: 4px;
}

.cookie-consent__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 246, 0, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.cookie-consent__option strong {
    display: block;
    color: var(--yellow);
}

.cookie-consent__option p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.cookie-consent__badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 246, 0, 0.14);
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.cookie-consent__toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-consent__toggle-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 34px;
    flex: 0 0 auto;
}

.cookie-consent__switch {
    position: relative;
    display: block;
    width: 58px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transition: background-color 0.2s ease;
}

.cookie-consent__switch::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.cookie-consent__toggle:checked + .cookie-consent__switch {
    background: rgba(246, 229, 7, 0.72);
}

.cookie-consent__toggle:checked + .cookie-consent__switch::after {
    transform: translateX(24px);
}

.site-header-hero {
    color: #fff;
    background-color: #151515;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-header-hero--video {
    position: relative;
    overflow: hidden;
}

.site-header-hero--video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.4));
    z-index: 1;
    pointer-events: none;
}

.site-header-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.site-header-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-header-top {
    background: rgba(10, 10, 10, 0.55);
}

.site-header-top,
.site-header-content {
    position: relative;
    z-index: 2;
}

.site-header-top__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.site-header-tools {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.site-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.site-lang-link {
    color: var(--yellow);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-lang-link.is-active {
    color: #fff;
}

.site-lang-separator {
    color: rgba(255, 246, 0, 0.7);
    font-weight: 700;
}

.site-nav {
    margin-left: 0;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 246, 0, 0.4);
    border-radius: 12px;
    background: rgba(12, 12, 12, 0.86);
    color: var(--yellow);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav-toggle:hover,
.site-nav-toggle:focus-visible {
    background: rgba(127, 18, 18, 0.92);
    border-color: rgba(255, 245, 0, 0.75);
    color: #fff600;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.site-nav-toggle__icon {
    display: inline-grid;
    gap: 4px;
}

.site-nav-toggle__icon span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.custom-logo {
    display: block;
    max-height: 110px;
    width: auto;
}

.menu-primary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-primary > li {
    position: relative;
}

.menu-primary .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.menu-primary .menu-item-has-children > a::after {
    content: "\25BE";
    font-size: 0.62rem;
    line-height: 1;
    transform: translateY(-1px);
}

.menu-primary a {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.menu-primary .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 30;
    min-width: 220px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(255, 246, 0, 0.32);
    border-radius: 12px;
    background: rgba(14, 14, 14, 0.96);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.menu-primary .sub-menu li + li {
    margin-top: 4px;
}

.menu-primary .sub-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-primary .sub-menu a:hover,
.menu-primary .sub-menu a:focus-visible {
    background: rgba(255, 246, 0, 0.14);
    color: var(--yellow);
}

.menu-primary li:hover > .sub-menu,
.menu-primary li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header-content {
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 36px 0 52px;
}

.site-header-hero--tall .site-header-content {
    min-height: 560px;
    padding: 60px 0 84px;
}

.hero-copy {
    max-width: 680px;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-copy span {
color: var(--yellow);
}

.hero-copy p {
    margin: 0;
}

.hero-copy--partner {
    max-width: none;
    text-align: center;
}

.hero-copy__title,
.hero-copy__subtitle {
    margin: 0;
    text-transform: uppercase;
}

.hero-copy__title {
    color: var(--yellow);
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.9;
}

.hero-copy__subtitle {
    margin-top: 8px;
    color: #fff;
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 2.4vw, 2.2rem);
    line-height: 0.95;
}

.hero-cta {
    margin-top: 18px;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    background: var(--red);
    border-color: rgba(255, 245, 0, 0.7);
    color: #fff600;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(127, 18, 18, 0.3);
}

.section {
    padding: 64px 0;
}

.section-title {
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
}

.section-title--light {
    color: var(--yellow);
}

.section-title--dark {
    color: #891812;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 16px;
    background: var(--yellow);
    border: 2px solid transparent;
    box-shadow: 0 0 0 rgba(127, 18, 18, 0);
    color: #111;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    background: var(--red);
    border-color: rgba(255, 245, 0, 0.7);
    color: #fff600;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(127, 18, 18, 0.3);
}

.btn--red {
    background: var(--red);
    color: #fff;
}

.btn--red:hover,
.btn--red:focus-visible {
    background: var(--yellow);
    border-color: rgba(127, 18, 18, 0.7);
    color: var(--red);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.section-center {
    text-align: center;
}

.section-page {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #eb8309 100%);
}

.section-page .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-page h1 {
    color: #891812;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.section-page .entry-content {
    color: #2a2a2a;
}

.section-page--faq .container {
    max-width: 980px;
}

.faq-page__header {
    margin-bottom: 24px;
}

.faq-page__intro {
    max-width: 760px;
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(116, 19, 19, 0.22);
    border-radius: 18px;
    background: rgba(255, 248, 188, 0.45);
    box-shadow: 0 12px 28px rgba(137, 24, 18, 0.08);
    overflow: hidden;
}

.faq-item[open] {
    background: rgba(255, 244, 145, 0.62);
}

.faq-item__question {
    position: relative;
    display: block;
    padding: 20px 64px 20px 22px;
    color: #891812;
    font-family: var(--font-title);
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: 0.02em;
    list-style: none;
    cursor: pointer;
}

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

.faq-item__question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: #891812;
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
}

.faq-item[open] .faq-item__question::after {
    content: "-";
}

.faq-item__answer {
    padding: 0 22px 22px;
    color: #2a2a2a;
}

.faq-item__answer > div > :first-child {
    margin-top: 0;
}

.faq-item__answer > div > :last-child {
    margin-bottom: 0;
}

.section-features {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #eb8309 100%);
}

.section-features .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.home-games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-game-card {
    border-radius: 14px;
}

.home-game-card__media {
    min-height: 600px;
    border-radius: 14px;
    border: 15px solid #fff500;
    padding: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    isolation: isolate;
    overflow: hidden;
}

.home-game-card__media-link {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    text-decoration: none;
}

.home-game-card__media::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background-color: #1a1a1a;
    background-image: var(--home-card-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.35s ease;
    z-index: -1;
}

.home-game-card:hover .home-game-card__media::before,
.home-game-card:focus-within .home-game-card__media::before {
    transform: scale(1.08);
}

.home-game-card__body {
    position: relative;
    z-index: 1;
    color: #000;
    width: 100%;
}

.home-game-card h3 {
    margin: 2px 0 10px;
    font-size: 2.7rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.home-game-card h3 a {
    color: inherit;
    text-decoration: none;
}

.home-game-card h3 a:hover,
.home-game-card h3 a:focus-visible {
    color: var(--red);
}

.home-game-card__text {
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.25;
}

.home-game-card .btn {
    position: relative;
    z-index: 1;
    align-self: center;
}

.home-features-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.home-features-cta {
    margin-top: 0;
    text-align: center;
}

.home-features-summary {
    margin: 26px auto 0;
    padding: 26px 36px 24px;
    border-radius: 18px;
    background: rgba(255, 195, 0, 0.22);
    box-shadow: 0 18px 34px rgba(90, 25, 0, 0.18);
    overflow: hidden;
}

.section-richtext {
    /* max-width: 980px; */
    margin: 26px auto 0;
    text-align: justify;
    color: #111;
}

.home-features-summary .section-richtext {
    margin: 0;
}

.home-features-summary .home-features-cta-wrap {
    margin-top: 22px;
}

.section-richtext p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6rem;
}

.section-richtext strong {
    font-weight: 700;
    color: #7f1212;
}

.section-arguments {
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.92));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.arguments-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 26px;
    align-items: center;
}

.arguments-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.arguments-list {
    display: grid;
    gap: 27px;
}

.argument-card {
    background: #b81414;
    color: #fff;
    border-radius: 12px;
    padding: 25px 25px;
}

.argument-card h3 {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    line-height: 1.05;
}

.argument-card p {
    margin: 0;
    color: #f1e00d;
    font-weight: 600;
    font-size: 1.1rem;
}

.arguments-cta-wrap {
    justify-self: start;
}

.arguments-cta {
    margin-top: 0;
    color: #111;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.arguments-cta:hover,
.arguments-cta:focus-visible {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(127, 18, 18, 0.28);
}

.section-stats {
    background: #f59f00;
}

.stats-layout {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.2fr);
    align-items: center;
}

.stats-big {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    color: #7f1212;
}

.stats-countries {
    margin: 18px 0 0;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.stats-map img {
    width: 100%;
    display: block;
    border-radius: 16px;
    border: 4px solid #952a2a;
}

.section-game-page {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #eb8309 100%);
}

.section-game-presentation {
    padding-top: 64px;
    padding-bottom: 0px;
}

.game-section-inner {
    max-width: 980px;
    margin: 0 auto;
}

.section-game-presentation__inner {
    width: 100%;
    padding-bottom: 64px;
}

.game-presentation-title {
    margin: 0;
    color: #7f1212;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4.8vw, 5rem);
    line-height: 0.9;
}

.game-presentation-subtitle {
    margin: 10px 0 24px;
    color: #7f1212;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.6rem);
    line-height: 1.2;
}

.game-presentation-gallery {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.game-presentation-gallery__main {
    position: relative;
    margin: 0;
    border: 4px solid #8f1010;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}

.game-presentation-gallery__main img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.game-presentation-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
}

.game-presentation-gallery__thumb {
    border: 2px solid rgba(143, 16, 16, 0.5);
    border-radius: 8px;
    padding: 0;
    background: #120f0f;
    cursor: pointer;
    overflow: hidden;
}

.game-presentation-gallery__thumb.is-active {
    border-color: #8f1010;
}

.game-presentation-gallery__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.game-presentation-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(143, 16, 16, 0.9);
    color: #fff600;
    font-family: var(--font-title);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.game-presentation-gallery__nav--prev {
    left: 8px;
}

.game-presentation-gallery__nav--next {
    right: 8px;
}

.game-presentation-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.game-presentation-icon-card {
    background: #8f1010;
    border-radius: 12px;
    padding: 14px 10px 12px;
    text-align: center;
    color: #fff600;
}

.game-presentation-icon-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #fff600;
    color: #7f1212;
    font-size: 2.8rem;
    font-weight: 900;
}

.game-presentation-icon-card__icon .material-symbols-outlined {
    font-size: 3rem;
    line-height: 1;
    color: #000;
}

.game-presentation-icon-card p {
    margin: 0;
    text-transform: uppercase;
}

.game-presentation-icon-card__line-1 {
    font-family: var(--font-title);
    color: #ffffff;
    font-size: clamp(1.5rem, 1.9vw, 1.9rem);
    line-height: 0.9;
}

.game-presentation-icon-card__line-2 {
    margin-top: 5px;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.1;
}

.game-presentation-box {
    margin: 30px 18px 60px 18px;
    background: #fff;
    border: 3px solid #8f1010;
    border-radius: 12px;
    padding: 16px 18px;
}

.game-presentation-box__title {
    margin: 0 0 8px;
    text-align: center;
    color: #8f1010;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    line-height: 0.95;
}

.game-presentation-box__text {
    margin: 0;
    color: #8f1010;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.35;
}

.game-presentation-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    margin-inline: auto;
    width: min(100%, 490px);
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff600 0%, #ffb400 100%);
    box-shadow: 0 10px 20px rgba(86, 20, 0, 0.28);
}

.game-presentation-cta__sentence {
    margin: 0;
    color: #000;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    line-height: 0.9;
}

.game-presentation-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    background: var(--red);
    color: #fff;
}

.game-presentation-cta__button:hover,
.game-presentation-cta__button:focus-visible {
    background: var(--yellow);
    border-color: rgba(127, 18, 18, 0.7);
    color: var(--red);
}

.game-presentation-cta__button .material-symbols-outlined {
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
}

.game-presentation-cta__button:hover .material-symbols-outlined,
.game-presentation-cta__button:focus-visible .material-symbols-outlined {
    color: var(--red);
}

.section-game-quizy {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #0b0b0b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.game-quizy-title {
    width: fit-content;
    max-width: 100%;
    margin: 0 0 28px;
    padding-bottom: 14px;
    text-align: center;
    position: relative;
}

.game-quizy-title::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 1px;
    background: rgba(255, 246, 0, 0.75);
}

.game-quizy-layout {
    display: grid;
    grid-template-columns: minmax(180px, 28%) minmax(0, 72%);
    gap: 20px;
    align-items: start;
    color: #fff;
}

.game-quizy-media {
    margin: 0;
}

.game-quizy-media img {
    width: 100%;
    display: block;
}

.game-quizy-text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.35;
    margin-top: 40px;
}

.game-quizy-text p,
.game-quizy-text ul,
.game-quizy-text ol {
    margin: 0 0 12px;
}

.game-quizy-text p:last-child,
.game-quizy-text ul:last-child,
.game-quizy-text ol:last-child {
    margin-bottom: 0;
}

.section-game-gameplay {
    padding-top:0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #ef8f00 100%);
}

.game-gameplay-title {
    margin-bottom: 26px;
    padding-bottom: 12px;
    text-align: left;
    position: relative;
}

.game-gameplay-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(127, 24, 18, 0.45);
}

.game-gameplay-layout {
    display: grid;
    grid-template-columns: minmax(170px, 22%) minmax(0, 78%);
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
}

.game-gameplay-media {
    margin: 0;
}

.game-gameplay-media img {
    width: 100%;
    display: block;
}

.game-gameplay-main-copy {
    color: #111;
    font-size: 1.2rem;
    line-height: 1.35;
}

.game-gameplay-main-copy p,
.game-gameplay-main-copy ul,
.game-gameplay-main-copy ol {
    margin: 0 0 12px;
}

.game-gameplay-main-copy p:last-child,
.game-gameplay-main-copy ul:last-child,
.game-gameplay-main-copy ol:last-child {
    margin-bottom: 0;
}

.game-gameplay-main-copy h3 {
    margin: 30px 0 5px 0px;
    color: #7f1212;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 2.0vw, 2.0rem);
    line-height: 1.05;
}

.game-gameplay-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.game-gameplay-card {
    background: #9f1717;
    border: 5px solid #ffffff;
    border-radius: 10px;
    padding: 15px 17px;
    color: #fff;
}

.game-gameplay-card__title {
    margin: 0 0 6px;
    color: #fff600;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: 2.2rem;
    line-height: 2rem;
}

.game-gameplay-card__text {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.25rem;
}

.section-game-exploitation {
    background-color: #14061c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0;
    padding-bottom: 0;
}

.section-game-exploitation .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.game-exploitation-title {
    width: fit-content;
    max-width: 100%;
    margin: 0 0 16px;
    padding-bottom: 12px;
    text-align: center;
    position: relative;
}

.game-exploitation-title::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 1px;
    background: rgba(255, 246, 0, 0.75);
}

.game-exploitation-text {
    margin-bottom: 24px;
    color: #fff;
    font-size: 1.06rem;
    line-height: 1.45;
}

.game-exploitation-text p,
.game-exploitation-text ul,
.game-exploitation-text ol {
    margin: 0 0 10px;
}

.game-exploitation-text p:last-child,
.game-exploitation-text ul:last-child,
.game-exploitation-text ol:last-child {
    margin-bottom: 0;
}

.game-exploitation-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.game-exploitation-media-grid.is-single {
    grid-template-columns: 1fr;
}

.game-exploitation-card {
    margin: 0;
}

.game-exploitation-card__link,
.game-exploitation-card__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 3px solid #fff600;
    border: 3px solid #fff600;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-exploitation-card__link:hover,
.game-exploitation-card__link:focus-visible,
.game-exploitation-card__trigger:hover,
.game-exploitation-card__trigger:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.game-exploitation-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.game-exploitation-card__caption {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.35;
}

.game-exploitation-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

/*** Section Games Access*/

.section-games-access {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #eb8309 100%);
}

.section-contact-page {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #eb8309 100%);
}

.section-contact-page .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.contact-page {
    display: grid;
    gap: 40px;
}

.contact-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: start;
}

.contact-page__title {
    margin-bottom: 24px;
    text-align: left;
}

.contact-page__form-column {
    min-width: 0;
}

.contact-page__form-content > :first-child {
    margin-top: 0;
}

.contact-page__form-content > :last-child {
    margin-bottom: 0;
}

.contact-page__form-content p {
    margin: 0 0 14px;
}

.contact-page__form-content label {
    display: block;
    margin-bottom: 8px;
    color: #571818;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-page__form-content input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.contact-page__form-content textarea,
.contact-page__form-content select {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 0 0 1px rgba(112, 26, 16, 0.12), 0 8px 20px rgba(116, 41, 0, 0.08);
    color: #411010;
    font-family: var(--font-body);
}

.contact-page__form-content input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.contact-page__form-content select {
    min-height: 46px;
    padding: 10px 16px;
}

.contact-page__form-content textarea {
    min-height: 180px;
    padding: 14px 16px;
    resize: vertical;
}

.contact-page__aside-cta,
.contact-page__form-content .wpcf7-form-control.wpcf7-submit,
.contact-page__form-content .wpcf7-form-control.wpcf7-submit.has-spinner,
.contact-page__form-content input[type="submit"] {
    display: block;
    width: fit-content;
    min-width: 0;
    margin: 0 auto;
    padding: 10px 16px;
    border: 0 !important;
    border-radius: 10px !important;
    background: var(--red) !important;
    color: var(--yellow) !important;
    font-weight: 800 !important;
    font-size: 0.9rem;
    text-transform: uppercase !important;
    text-decoration: none;
    line-height: 1.2;
    appearance: none;
    cursor: pointer;
    box-shadow: none !important;
    white-space: nowrap;
}

.contact-page__aside-cta:not(.contact-page__aside-cta--disabled):hover,
.contact-page__aside-cta:not(.contact-page__aside-cta--disabled):focus-visible,
.contact-page__form-content .wpcf7-form-control.wpcf7-submit:hover,
.contact-page__form-content .wpcf7-form-control.wpcf7-submit:focus-visible,
.contact-page__form-content .wpcf7-form-control.wpcf7-submit.has-spinner:hover,
.contact-page__form-content .wpcf7-form-control.wpcf7-submit.has-spinner:focus-visible,
.contact-page__form-content input[type="submit"]:hover,
.contact-page__form-content input[type="submit"]:focus-visible {
    background: var(--yellow) !important;
    color: var(--red) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
}

.contact-page__form-content .wpcf7-spinner {
    vertical-align: middle;
}

.contact-page__aside {
    min-width: 0;
    padding-left: 36px;
    border-left: 1px solid rgba(116, 19, 19, 0.35);
}

.contact-page__aside-copy {
    color: #4f1414;
    font-size: 1rem;
    line-height: 1.45;
}

.contact-page__aside-copy p {
    margin: 0 0 14px;
}

.contact-page__aside-copy a {
    color: var(--red);
    font-weight: 700;
}

.contact-page__aside-copy > :last-child {
    margin-bottom: 0;
}

.contact-page__aside-figure {
    display: grid;
    width: 100%;
    justify-items: center;
    justify-content: center;
    margin-top: 20px;
    row-gap: 0;
}

.contact-page__character {
    display: block;
    justify-self: center;
    width: min(100%, 190px);
    height: auto;
}

.contact-page__aside-cta {
    justify-self: center;
    color: var(--yellow);
}

.contact-page__aside-cta--disabled {
    opacity: 0.75;
    cursor: default;
}

.contact-page__demo-box {
    width: 80%;
    max-width: 980px;
    margin: 0 auto;
    padding: 26px 28px;
    border: 4px solid #891812;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 30px rgba(122, 33, 0, 0.12);
}

.contact-page__demo-title {
    margin: 0 0 16px;
    color: #891812;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.95;
}

.contact-page__demo-text {
    color: #571818;
    font-size: 1.05rem;
    line-height: 1.55;
}

.contact-page__demo-text p {
    margin: 0 0 14px;
}

.contact-page__demo-text > :last-child {
    margin-bottom: 0;
}

.section-games-access .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-games-access__inner {
    display: grid;
}

.games-access-page__header {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
    justify-items: start;
    text-align: left;
}

.games-access-page__title {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 14px;
    text-align: left;
}

.games-access-page__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(107, 20, 20, 0.38);
}

.games-access-page__intro {
    max-width: 920px;
    margin: 0;
    color: #6b1414;
    font-size: 1rem;
    line-height: 1.45;
    text-align: left;
}

.games-access-page__map {
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 195, 0, 0.22);
    box-shadow: 0 18px 34px rgba(90, 25, 0, 0.18);
    overflow: hidden;
}

.games-access-page__map p {
    margin: 0;
}

.games-access-page__map-status {
    margin: 0 0 12px;
    color: #531818;
    font-weight: 700;
}

.games-access-page__map iframe,
.games-access-page__map p > iframe,
.games-access-page__map > div,
.games-access-page__map script + div,
.games-access-page__map-canvas {
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    border: 4px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
    display: block;
}

.games-access-page__map-canvas {
    min-height: 420px;
}

.games-access-page__filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 18px;
}

.games-access-filter__select-wrap {
    min-width: 220px;
}

.games-access-filter__select {
    width: 100%;
    min-height: 44px;
    padding: 10px 38px 10px 12px;
    border: 2px solid #891812;
    border-radius: 10px;
    background: #f4f4f4;
    color: #5b1414;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
}

.games-access-filter__checks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.games-access-filter__check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7f1212;
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.games-access-filter__check input {
    width: 18px;
    height: 18px;
    accent-color: #fff600;
}

.games-access-results {
    display: grid;
    gap: 18px;
    margin-bottom: 12px;
}

.games-access-results__empty {
    margin: 0;
    color: #7f1212;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.games-access-results__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.games-access-results__grid[hidden],
.games-access-partner-card[hidden],
.games-access-results__empty[hidden] {
    display: none !important;
}

.games-access-partner-card {
    display: grid;
    gap: 14px;
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: #891812;
    box-shadow: 0 14px 28px rgba(90, 18, 0, 0.18);
}

.games-access-partner-card__title {
    margin: 0;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 0.95;
}

.games-access-partner-card__title-link {
    color: var(--yellow);
    text-decoration: none;
}

.games-access-partner-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.games-access-partner-card__btn {
    width: 100%;
    margin-top: 0;
    padding: 10px 12px;
    text-align: center;
    font-size: 0.78rem;
}

.games-access-partner-card__btn--disabled {
    opacity: 0.7;
    cursor: default;
}

.games-access-cta-wrap {
    display: grid;
    justify-items: center;
    row-gap: 0;
    padding-top: 28px;
}

.games-access-cta__character {
    margin: 0;
    width: min(100%, 170px);
    height: auto;
    display: block;
}

.games-access-cta {
    margin-top: 0;
    min-width: min(100%, 360px);
    color: var(--yellow);
}

.games-access-title {
    margin-bottom: 28px;
}

.games-access-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.games-access-card {
    border-radius: 12px;
}

.games-access-card__title {
    margin: 0 0 10px;
    color: #7f1212;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(2rem, 2.2vw, 3rem);
    line-height: 0.95;
    text-align: center;
}

.games-access-card__title span {
    color: var(--black);
}

.games-access-card__media {
    position: relative;
    border: 4px solid #891812;
    border-radius: 18px;
    overflow: hidden;
    background: #1b1b1b;
}

.games-access-card__media-link {
    display: block;
    text-decoration: none;
}

.games-access-card__media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.games-access-card:hover .games-access-card__media img,
.games-access-card:focus-within .games-access-card__media img {
    transform: scale(1.08);
}

.games-access-card__btn {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    margin-top: 0;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff600;
    color: #111;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.games-access-card__btn:hover,
.games-access-card__btn:focus-visible {
    background: var(--red);
    border-color: rgba(255, 245, 0, 0.7);
    color: #fff600;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 24px rgba(127, 18, 18, 0.3);
}

.games-access-card__text {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    background: #911717;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.25;
}

.games-access-bottom {
    margin-top: 34px;
    padding: 26px 24px;
    border: 4px solid #891812;
    border-radius: 16px;
    background: #f4f4f4;
    color: #111;
}

.games-access-bottom__title {
    margin: 0 0 12px;
    color: #7f1212;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 2.5vw, 3.2rem);
    line-height: 0.95;
    text-align: center;
}

.games-access-bottom__content {
    font-size: 1.15rem;
    line-height: 1.42;
    text-align: justify;
}

.games-access-bottom__content p {
    margin: 0 0 12px;
}

.games-access-bottom__content p:last-child {
    margin-bottom: 0;
}

.section-partner {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #ef9800 100%);
}

.partner-sheet {
    padding: 52px 0 64px;
}

.partner-sheet__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 42px 0 20px;
}

.partner-sheet__heading {
    margin: 0;
    color: #7f1212;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 0.95;
}

.partner-sheet__cta,
.partner-sheet__website {
    min-width: 180px;
    margin-top: 0;
    text-align: center;
}

.partner-sheet__cta--disabled,
.partner-sheet__website--disabled {
    opacity: 0.78;
    cursor: default;
}

.partner-sheet__map-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 195, 0, 0.22);
    box-shadow: 0 18px 34px rgba(90, 25, 0, 0.18);
}

.partner-sheet__map {
    position: relative;
}

.partner-sheet__map-status {
    margin: 0;
    color: #531818;
    font-weight: 700;
}

.partner-sheet__map-canvas {
    min-height: 420px;
    margin-top: 12px;
    border: 4px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
}

.partner-sheet__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.partner-sheet__intro-line {
    margin: 0;
    color: #4a1414;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
}

.partner-sheet__intro-accent {
    color: var(--red);
}

.partner-sheet__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.partner-card {
    padding: 18px 20px;
    border: 4px solid #891812;
    border-radius: 16px;
    background: #ececec;
    color: #2d1212;
}

.partner-card__title {
    margin: 0 0 14px;
    color: #7f1212;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 2.5vw, 2.6rem);
    line-height: 0.95;
}

.partner-card__content p {
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
}

.partner-card__content p + p {
    margin-top: 4px;
}

.partner-card__content a {
    color: inherit;
    text-decoration: none;
}

.partner-card--contact .partner-card__content a {
    color: var(--red);
}

.partner-card--contact .partner-card__content a:hover,
.partner-card--contact .partner-card__content a:focus-visible {
    color: #7f1212;
}

.partner-games-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.partner-games-list__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a1414;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-games-list__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    text-decoration: none;
}

.partner-games-list__link:hover,
.partner-games-list__link:focus-visible {
    color: #7f1212;
}

.partner-games-list__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 28px;
}

.partner-sheet .leaflet-container,
.section-map .leaflet-container {
    font-family: var(--font-body);
}

.partner-map-marker {
    background: transparent;
    border: 0;
}

.partner-map-marker__pin {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid #7f1212;
    border-radius: 50% 50% 50% 0;
    background: #ffff00;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
    transform: rotate(-45deg);
}

.partner-map-marker__pin::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(127, 18, 18, 0.9);
}

.partner-map-cluster {
    background: transparent;
    border: 0;
}

.partner-map-cluster div,
.partner-map-cluster span {
    display: block;
}

.partner-map-cluster span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 3px solid #7f1212;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff799 0%, #ffe100 38%, #f2a900 100%);
    box-shadow: 0 10px 20px rgba(83, 24, 24, 0.28);
    color: #531818;
    font-family: var(--font-title);
    font-size: 1.1rem;
    line-height: 1;
}

.partner-map-cluster.is-medium span {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
}

.partner-map-cluster.is-large span {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
}

.leaflet-cluster-anim .partner-map-cluster span,
.partner-map-cluster span {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.partner-map-cluster:hover span,
.partner-map-cluster:focus-visible span {
    transform: scale(1.04);
    box-shadow: 0 14px 28px rgba(83, 24, 24, 0.34);
}

.partner-sheet .leaflet-popup-content-wrapper,
.section-games-access--dispatch .leaflet-popup-content-wrapper,
.section-map .leaflet-popup-content-wrapper {
    background: #666666;
}

.partner-sheet .leaflet-popup-content,
.section-games-access--dispatch .leaflet-popup-content,
.section-map .leaflet-popup-content {
    margin: 14px 16px;
}

.partner-sheet .leaflet-popup-tip,
.section-games-access--dispatch .leaflet-popup-tip,
.section-map .leaflet-popup-tip {
    background: #ffff00;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.partner-sheet .leaflet-popup-close-button,
.section-games-access--dispatch .leaflet-popup-close-button,
.section-map .leaflet-popup-close-button {
    background: #666666;
    color: #ffffff !important;
    border: 0;
    border-radius: 3px;
    opacity: 1;
}

.partner-sheet .leaflet-popup-close-button:hover,
.partner-sheet .leaflet-popup-close-button:focus-visible,
.section-games-access--dispatch .leaflet-popup-close-button:hover,
.section-games-access--dispatch .leaflet-popup-close-button:focus-visible,
.section-map .leaflet-popup-close-button:hover,
.section-map .leaflet-popup-close-button:focus-visible {
    color: #ffff00;
}

.partner-map-popup h1 {
    margin: 0;
    color: #ffffff;
    padding: 20px 0 10px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.partner-map-popup h2 {
    margin: 0;
    padding: 10px 0;
    color: #ffff00;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.partner-map-popup p {
    margin: 0;
}

.partner-map-popup a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}

.section-gallery {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.75), rgba(5, 5, 5, 0.88));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0;
    padding-bottom: 0;
}

.section-gallery__separator {
    height: 16px;
    background-image: url("../../images/separateur.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
}

.section-gallery .container, .section-game-gameplay .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-map {
    background: linear-gradient(180deg, #fff600 0%, #eb8309 100%);
    padding-top: 0;
    padding-bottom: 0;
}

.section-map__separator, .section-map__separator-red {
    height: 16px;
    background-image: url("../../images/separateur.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
}

.section-map__separator-red {
    background-image: url("../../images/separateurRed.png");
}

.section-map .container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-map .map-view {
    min-height: 420px;
}

.section-map .map-view .games-access-page__map {
    height: 100%;
    margin-bottom: 0;
}

.section-map .map-view .games-access-page__map-canvas {
    height: 100%;
    min-height: 420px;
}

.map-layout {
    display: grid;
    grid-template-columns: minmax(240px, 30%) minmax(0, 70%);
    grid-template-areas: "map-copy map-view";
    gap: 46px;
    align-items: stretch;
}

.map-copy {
    grid-area: map-copy;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.map-argument {
    margin: 0;
    display: grid;
    gap: 8px;
}

.map-argument p,
.map-argument div {
    margin: 0;
}

.map-argument-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.map-word {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(1.3rem, 3.2vw, 4rem);
    line-height: 1;
}

.map-word--yellow {
    color: var(--yellow);
}

.map-word--black {
    color: var(--black);
}

.map-word--red {
    color: var(--red);
}

.map-countries {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

.map-countries ul,
.map-countries ol {
    margin: 0;
    padding: 0;
}

.map-countries ul {
    list-style: none;
}

.map-cta-wrap {
    margin-top: 6px;
}

.map-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 48px;
    padding: 12px 20px;
    border-color: rgba(255, 245, 0, 0.15);
}

.map-cta:hover,
.map-cta:focus-visible {
    background: var(--yellow);
    border-color: rgba(127, 18, 18, 0.7);
    color: var(--red);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.map-countries ol {
    list-style: none;
}

.map-countries li {
    margin: 0 0 6px;
    color: var(--red);
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 1.8vw, 2.3rem);
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.map-countries li:last-child {
    margin-bottom: 0;
}

.map-view {
    grid-area: map-view;
    min-height: 420px;
}

.map-embed-slot {
    height: 100%;
    min-height: 420px;
    border: 3px dashed rgba(255, 245, 0, 0.7);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    color: #fff;
    padding: 20px;
    overflow: hidden;
}

.map-embed-slot p {
    margin: 0;
    width: 100%;
}

.map-embed-slot iframe {
    width: 100%;
    min-height: 40em;
    border: 0;
    display: block;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.media-item {
    margin: 0;
    border-radius: 14px;
    border: 4px solid #a91515;
    overflow: hidden;
}

.media-item__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.media-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.media-item__trigger:hover img,
.media-item__trigger:focus-visible img {
    transform: scale(1.015);
    filter: brightness(1.05);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(98vw, 1500px);
    height: min(92vh, 940px);
    margin: 2vh auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 223, 0, 0.9);
    background: #0e0e0e;
    padding: 10px;
}

.gallery-lightbox__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-lightbox__nav,
.gallery-lightbox__close {
    border: 0;
    background: rgba(255, 223, 0, 0.92);
    color: #111;
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible,
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
    background: rgba(127, 18, 18, 0.95);
    color: #fff600;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.5rem;
    opacity: 0.9;
}

.gallery-lightbox__nav--prev {
    left: 8px;
}

.gallery-lightbox__nav--next {
    right: 8px;
}

.gallery-lightbox__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1.1rem;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
    transform: scale(1.04);
}

.section-partner-offer {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fff600 0%, #f4c20a 48%, #eb8309 100%);
    overflow-x: clip;
}

.partner-offer-page {
    display: grid;
    gap: 54px;
    padding-top: 54px;
    padding-bottom: 64px;
}

.partner-offer-block {
    position: relative;
}

.partner-offer-block:not(:last-child) {
    padding-bottom: 52px;
}

.partner-offer-block:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 16px;
    background-image: url("../../images/separateur.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    transform: translateX(-50%);
}

.partner-offer-block__header {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.partner-offer-block__title {
    position: relative;
    margin: 0;
    padding-bottom: 14px;
    color: #7d1111;
    font-size: clamp(2.2rem, 4.3vw, 4.2rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.partner-offer-block__title-prefix {
    color: #111111;
}

.partner-offer-block__title-text {
    color: inherit;
}

.partner-offer-text-black {
    color: #111111;
}

.partner-offer-text-red {
    color: #7c1111;
}

.partner-offer-block__title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(122, 17, 17, 0.32);
}

.partner-offer-block__intro,
.partner-offer-block__caption {
    max-width: 100%;
    color: #000;
    font-size: 1.4rem;
    line-height: 1.2;
}

.partner-offer-block__intro p,
.partner-offer-showcase__text p {
    margin: 0 0 14px;
}

.partner-offer-block__intro > :last-child,
.partner-offer-showcase__text > :last-child {
    margin-bottom: 0;
}

.partner-offer-block__intro h3 {
    font-family: var(--font-body);
    margin: 5px 0 12px;
    color: #7c1111;
    font-size: clamp(1.6rem, 2.5vw, 1.5rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.partner-offer-games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.partner-offer-game-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.partner-offer-game-card__media {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 4px solid #8f1515;
    border-radius: 22px;
    background: rgba(255, 237, 126, 0.38);
    box-shadow: 0 18px 26px rgba(120, 30, 0, 0.14);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.partner-offer-game-card__media-link {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.partner-offer-game-card__media img {
    width: 100%;
    aspect-ratio: 4 / 5.2;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transform: scale(1.01);
    transform-origin: center;
    backface-visibility: hidden;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.partner-offer-game-card:hover .partner-offer-game-card__media,
.partner-offer-game-card:focus-within .partner-offer-game-card__media {
    border-color: #a71414;
    box-shadow: 0 24px 34px rgba(120, 30, 0, 0.22);
}

.partner-offer-game-card:hover .partner-offer-game-card__media img,
.partner-offer-game-card:focus-within .partner-offer-game-card__media img {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.02);
}

.partner-offer-game-card__title {
    margin: 0;
    color: #7c1111;
    font-size: clamp(1.3rem, 2vw, 2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.partner-offer-game-card__title span {
    color: #111111;
}

.partner-offer-game-card__title-link {
    color: inherit;
    text-decoration: none;
}

.partner-offer-game-card__title-link:hover,
.partner-offer-game-card__title-link:focus-visible {
    color: #a01414;
}

.partner-offer-panel {
    display: grid;
    grid-template-columns: minmax(0, 70%) minmax(180px, 30%);
    gap: 24px;
    margin-top: 60px;
    padding: 26px 28px;
    border: 4px solid #891812;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 32px rgba(122, 33, 0, 0.16);
}

.partner-offer-panel__title,
.partner-offer-showcase__title,
.partner-offer-showcase__subtitle,
.partner-offer-benefit-card__title {
    margin: 0;
    color: #a01414;
    text-transform: uppercase;
    line-height: 0.95;
}

.partner-offer-panel__title,
.partner-offer-showcase__title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    text-align: center;
}

.partner-offer-panel--highlights .partner-offer-panel__title {
    grid-column: 1 / -1;
    text-align: center;
}

.partner-offer-panel__title {
    margin-bottom: 25px;
}

.partner-offer-panel__content {
    min-width: 0;
}

.partner-offer-highlights-list {
    display: grid;
    gap: 14px;
    margin-top: 0;
}

.partner-offer-highlight-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.partner-offer-highlight-item__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #8f1515;
    color: #fff600;
    font-family: var(--font-title);
    font-size: 1.55rem;
}

.partner-offer-highlight-item__title {
    margin: 0;
    color: #7d1111;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.1;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.partner-offer-highlight-item__text {
    margin: 0px 0 25px 0;
    color: #000;
    font-size: 1.5rem;
    line-height: 1.2;
}

.partner-offer-highlight-item__text p {
    margin-top: 5px; 
}

.partner-offer-panel__media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.partner-offer-panel__media img {
    width: min(100%, 220px);
    height: auto;
    display: block;
}

.partner-offer-note {
    margin: 35px auto 15px;
    padding: 14px 20px;
    border-radius: 14px;
    background: #8c1313;
    color: #fff;
    font-family: var(--font-title);
    font-size: clamp(1.15rem, 1.9vw, 1.7rem);
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 14px 24px rgba(122, 20, 20, 0.18);
}

.partner-offer-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.partner-offer-media-card {
    margin: 0;
    padding: 8px;
    border: 4px solid #891812;
    border-radius: 18px;
    background: rgba(255, 245, 177, 0.56);
    box-shadow: 0 18px 28px rgba(122, 33, 0, 0.14);
}

.partner-offer-media-card img,
.partner-offer-showcase__media img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.partner-offer-media-card__caption {
    margin: 20px 4px 10px;
    color: #891812;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.partner-offer-media-card img {
    aspect-ratio: 16 / 9;
}

.partner-offer-block__caption {
    margin: 16px 0 0;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
}

.partner-offer-showcase {
    display: grid;
    gap: 18px;
    align-items: start;
    margin-top: 28px;
    margin-bottom: 30px;
    padding: 26px 28px;
    border: 4px solid #891812;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(122, 33, 0, 0.16);
}

.partner-offer-showcase__subtitle {
    text-align: center;
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.partner-offer-showcase__text {
    color: #5b1515;
    font-size: 1.2rem;
    line-height: 1.3;
}

.partner-offer-showcase__media {
    margin: 0;
}

.partner-offer-showcase__media img {
    aspect-ratio: 16 / 9.6;
}

.partner-offer-benefits {
    display: grid;
    gap: 14px;
}

.partner-offer-benefit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border: 3px solid #8f1515;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 24px rgba(122, 33, 0, 0.12);
}

.partner-offer-benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #8f1515;
    color: #fff600;
}

.partner-offer-benefit-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.partner-offer-benefit-card__icon .material-symbols-outlined {
    font-size: 1.8rem;
}

.partner-offer-benefit-card__title {
    font-size: clamp(1.25rem, 2vw, 2rem);
}

.partner-offer-benefit-card__text {
    margin: 6px 0 0;
    color: #5d1414;
    font-size: 1.3rem;
    line-height: 1.45;
}

.partner-offer-cta-wrap {
    display: grid;
    justify-items: center;
    gap: 0x;
    margin-top: 26px;
}

.partner-offer-cta-wrap__character {
    margin: 0;
    padding: 0;
    justify-self: center;
    text-align: center;
}

.partner-offer-cta-wrap__character img {
    width: min(100%, 170px);
    height: auto;
    display: block;
    margin-inline: auto;
}

.partner-offer-cta-box {
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(100%, 540px);
    padding: 24px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff600 0%, #ffb400 100%);
    box-shadow: 0 10px 20px rgba(86, 20, 0, 0.28);
    text-align: center;
}

.partner-offer-cta-box__sentence {
    margin: 0;
    color: #000;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 0.95;
    font-family: var(--font-title);
    text-transform: uppercase;
}

.partner-offer-cta-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.partner-offer-cta-box__button .material-symbols-outlined {
    font-size: 1.25rem;
}
