:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #151520;
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --accent-primary: #8b5cf6;
    --accent-secondary: #a78bfa;
    --accent-hover: #7c3aed;
    --border-color: #2a2a3a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
}

.header__logo-icon {
    width: 40px;
    height: 40px;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.header__nav-link:hover {
    color: var(--text-primary);
}

/* Burger Menu Button */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] {
    transform: translateX(0);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--text-primary);
}

.mobile-menu__cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.landPlayCta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.landPlayCta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.landPlayCta__icon {
    width: 20px;
    height: 20px;
}

.setPulseAnimation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Hero Section */
.heroLand {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.heroLand__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}

.heroLand__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.heroLand__content {
    margin-bottom: 60px;
}

.heroLand__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.heroLand__subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.heroLand__items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.heroLand__item {
    padding: 16px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

/* Section ejLand-0 */
.ejLand-0 {
    padding: 100px 0;
}

.ejLand-0__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ejLand-0__img {
    width: 100%;
}

.ejLand-0__img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.ejLand-0__head {
    margin-bottom: 30px;
}

.ejLand-0__head h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.ejLand-0__head h2 span {
    color: var(--accent-primary);
}

.ejLand-0__content {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Section ejLand-1 */
.ejLand-1 {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ejLand-1__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ejLand-1__item {
    text-align: center;
}

.ejLand-1__item-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.ejLand-1__item-img img {
    width: 80%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    display: block;
}

.ejLand-1__item-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ejLand-1__item-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section ejLand-2 */
.ejLand-2 {
    padding: 100px 0;
}

.ejLand-2__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ejLand-2__item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.ejLand-2__item-img {
    flex-shrink: 0;
}

.ejLand-2__item-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.ejLand-2__item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ejLand-2__item-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Game Frame */
.ejGameFrame {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ejGameFrame__container {
    max-width: 1400px;
}

.ejGameFrame__embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.ejGameFrame__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Section ejLand-3 */
.ejLand-3 {
    padding: 100px 0;
}

.ejLand-3__items {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.ejLand-3__item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.ejLand-3__item:nth-child(even) .ejLand-3__item-img {
    order: 2;
}

.ejLand-3__item:nth-child(even) .ejLand-3__item-content {
    order: 1;
}

.ejLand-3__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ejLand-3__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ejLand-3__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, 0.3);
}

.ejLand-3__item:hover::before {
    opacity: 1;
}

.ejLand-3__item-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ejLand-3__item-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ejLand-3__item:hover .ejLand-3__item-img::after {
    opacity: 1;
}

.ejLand-3__item-img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.ejLand-3__item:hover .ejLand-3__item-img img {
    transform: scale(1.02);
}

.ejLand-3__item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 0;
}

.ejLand-3__item-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.ejLand-3__item:hover .ejLand-3__item-title {
    color: var(--accent-primary);
}

.ejLand-3__item-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.ejLand-3__btn {
    text-align: center;
}

/* Contact Section */
.ejLand-contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ejLand-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.ejLand-contact__img {
    width: 100%;
}

.ejLand-contact__img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.ejLand-contact__form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.ejLand-contact__form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ejLand-contact__label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ejLand-contact__label-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.ejLand-contact__input {
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.ejLand-contact__input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.ejLand-contact__input--textarea {
    resize: vertical;
    min-height: 120px;
}

.ejLand-contact__warning {
    padding: 40px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
}

.ejLand-contact__warning-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.ejLand-contact__warning-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.ejLand-contact__warning-description p {
    margin-bottom: 16px;
}

.ejLand-contact__warning-description p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer__logo-icon {
    width: 40px;
    height: 40px;
}

.footer__disclaimer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__nav-link:hover {
    color: var(--text-primary);
}

.footer__copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Cookie Banner */
.cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookieBanner.is-visible {
    transform: translateY(0);
}

.cookieBanner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookieBanner__text {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookieBanner__text a {
    color: var(--accent-primary);
    text-decoration: none;
}

.cookieBanner__text a:hover {
    text-decoration: underline;
}

.cookieBanner__actions {
    display: flex;
    gap: 12px;
}

.cookieBanner__btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.cookieBanner__btn--link {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookieBanner__btn--link:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.cookieBanner__btn--accept {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.cookieBanner__btn--accept:hover {
    background: var(--accent-hover);
}

/* Age Gate */
.ageGate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ageGate__inner {
    text-align: center;
    padding: 60px;
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    max-width: 500px;
}

.ageGate__logo {
    margin-bottom: 32px;
}

.ageGate__logo img {
    width: 80px;
    height: 80px;
}

.ageGate__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ageGate__text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.ageGate__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.ageGate__btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.ageGate__btn--confirm {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.ageGate__btn--confirm:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.ageGate__btn--deny {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.ageGate__btn--deny:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .ejLand-0__inner,
    .ejLand-contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ejLand-0__img {
        order: -1;
    }

    .ejLand-0__head h2 {
        font-size: 28px;
    }

    .ejLand-1__items {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ejLand-2__items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ejLand-3__item {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .ejLand-3__item:nth-child(even) .ejLand-3__item-img,
    .ejLand-3__item:nth-child(even) .ejLand-3__item-content {
        order: 0;
    }

    .ejLand-3__item-img {
        order: -1;
    }

    .ejLand-3__item-img img {
        max-width: 100%;
        max-height: 350px;
    }

    .ejLand-3__item-title {
        font-size: 24px;
    }

    .ejLand-3__item-text {
        font-size: 16px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ejLand-contact__form-title {
        font-size: 24px;
    }

    .ejLand-0__content {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header__nav,
    .header__cta {
        display: none;
    }

    .landPlayCta {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header {
        padding: 16px 0;
    }

    .header__logo {
        font-size: 20px;
    }

    .header__logo-icon {
        width: 32px;
        height: 32px;
    }

    .heroLand {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .heroLand__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .heroLand__subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .heroLand__items {
        flex-direction: column;
        gap: 16px;
    }

    .heroLand__item {
        padding: 12px 20px;
        font-size: 14px;
    }

    .ejLand-0,
    .ejLand-1,
    .ejLand-2,
    .ejLand-3,
    .ejGameFrame,
    .ejLand-contact {
        padding: 60px 0;
    }

    .ejLand-0__head h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .ejLand-1__item-title {
        font-size: 20px;
    }

    .ejLand-1__item-text {
        font-size: 14px;
    }

    .ejLand-2__item {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }

    .ejLand-2__item-img {
        margin: 0 auto;
    }

    .ejLand-2__item-img img {
        width: 60px;
        height: 60px;
    }

    .ejLand-3__item-title {
        font-size: 20px;
    }

    .ejLand-3__item-text {
        font-size: 14px;
    }

    .ejLand-contact__form-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .ejLand-contact__warning {
        padding: 24px;
    }

    .ejLand-contact__warning-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .ejLand-contact__warning-description {
        font-size: 14px;
    }

    .cookieBanner__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookieBanner__text {
        font-size: 13px;
    }

    .cookieBanner__actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookieBanner__btn {
        flex: 1;
        min-width: 120px;
    }

    .ageGate__inner {
        padding: 40px 24px;
        margin: 20px;
    }

    .ageGate__title {
        font-size: 24px;
    }

    .ageGate__text {
        font-size: 14px;
    }

    .ageGate__buttons {
        flex-direction: column;
        width: 100%;
    }

    .ageGate__btn {
        width: 100%;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer__inner {
        gap: 32px;
    }

    .footer__logo {
        font-size: 20px;
    }

    .footer__disclaimer {
        font-size: 13px;
    }

    .container {
        padding: 0 16px;
    }

    /* Cookies, Privacy, Terms pages */
    .cookies-page,
    .privacy-page,
    .terms-page {
        padding: 100px 0 60px;
    }

    .cookies-content h1,
    .privacy-content h1,
    .terms-content h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .cookies-content h2,
    .privacy-content h2,
    .terms-content h2 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .cookies-content p,
    .privacy-content p,
    .terms-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .cookies-content li,
    .privacy-content li,
    .terms-content li {
        font-size: 14px;
    }

    .cookie-settings {
        padding: 24px;
        margin-top: 32px;
    }

    .cookie-setting-item {
        padding: 16px 0;
    }

    .cookie-setting-info h3 {
        font-size: 16px;
    }

    .cookie-setting-info p {
        font-size: 13px;
    }

    .cookies-content ul,
    .privacy-content ul,
    .terms-content ul {
        margin-left: 16px;
        padding-left: 8px;
    }
}

@media (max-width: 480px) {
    .heroLand__title {
        font-size: 24px;
    }

    .heroLand__subtitle {
        font-size: 16px;
    }

    .landPlayCta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .landPlayCta__icon {
        width: 16px;
        height: 16px;
    }

    .ejLand-0__head h2 {
        font-size: 22px;
    }

    .ejLand-1__item-img img {
        width: 100%;
        max-width: 100%;
    }

    .ejLand-0__img img,
    .ejLand-contact__img img,
    .ejLand-3__item-img img {
        width: 100%;
    }

    .ejLand-2__item {
        padding: 20px;
    }

    .ejLand-3__item {
        padding: 24px;
        gap: 28px;
    }

    .ejLand-3__item-img img {
        max-height: 280px;
        object-fit: contain;
    }

    .ejLand-3__item-title {
        font-size: 22px;
    }

    .ejLand-3__item-text {
        font-size: 15px;
    }

    .ejLand-contact__form-title {
        font-size: 20px;
    }

    .ejLand-contact__input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .ejLand-contact__img {
        order: -1;
    }

    .ejGameFrame__embed {
        border-radius: 12px;
    }

    .cookies-content h1,
    .privacy-content h1,
    .terms-content h1 {
        font-size: 24px;
    }

    .cookies-content h2,
    .privacy-content h2,
    .terms-content h2 {
        font-size: 18px;
    }

    .mobile-menu__link {
        font-size: 18px;
    }

    .heroLand__bg {
        object-position: center;
    }

    .ejLand-0__head {
        margin-bottom: 20px;
    }

    .ejLand-0__head .landPlayCta {
        width: 100%;
        justify-content: center;
    }
}

