.enigmax-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-glowhead {
    background: #0b0d17;
    color: white;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.site-glowhead__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-glowhead__logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
}

.site-glowhead__logo span {
    color: #00ffd1;
}

.site-glowhead__nav--desktop ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.site-glowhead__nav--desktop a {
    color: #e1e1e1;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.site-glowhead__nav--desktop a:hover {
    color: #00ffd1;
}

.site-glowhead__button {
    background-color: #00ffd1;
    color: #0b0d17;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Urbanist', sans-serif;
}

.site-glowhead__burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    margin-left: 16px;
}

.site-glowhead__nav--mobile {
    display: none;
    width: 100%;
    text-align: center;
    flex-direction: column;
    gap: 16px;
    background: #0b0d17;
    padding: 20px;
    position: absolute;
    top: 100%;
    right: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.site-glowhead__nav--mobile.active {
    display: flex;
}

.site-glowhead__nav--mobile ul {
    list-style: none;
}

.site-glowhead__nav--mobile ul li {
    margin-bottom: 10px;
}

.site-glowhead__nav--mobile ul li:last-of-type {
    margin-bottom: 0;
}

.site-glowhead__nav--mobile a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.modal-shelter {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.modal-shelter.active {
    display: flex;
}

.modal-shelter__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.modal-corebox {
    position: relative;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    z-index: 1000;
    width: 100%;
    max-width: 400px;
    font-family: 'Urbanist', sans-serif;
}

.modal-corebox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
}

.modal-corebox__title {
    margin-bottom: 15px;
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #000;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 1rem;
}

.form-field--checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.form-field--checkbox input {
    transform: scale(1.1);
}

.error-msg {
    color: red;
    font-size: 0.85rem;
    display: none;
    margin-top: 5px;
}

.success-message {
    display: none;
    color: green;
    margin-top: 12px;
    font-weight: 600;
    text-align: center;
}

.submit-button {
    background: #00ffd1;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 768px) {
    .site-glowhead__nav--desktop {
        display: none;
    }

    .site-glowhead__burger {
        display: block;
    }
}

@media (max-width: 380px) {
    .site-glowhead__logo {
        display: none;
    }
}

.firstplay {
    padding: 70px 0;
    background-color: #0e111d;
    color: #ffffff;
    text-align: center;
}

.firstplay__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 12px rgba(0, 255, 209, 0.15);
    margin-bottom: 50px;
    color: #ffffff;
}

.firstplay__banner-frame {
    display: flex;
    justify-content: center;
}

.firstplay__banner {
    background-size: cover;
    background-position: center;
    border: 2px solid #00ffd1;
    border-radius: 14px;
    padding: 40px 20px;
    width: 100%;
    max-width: 780px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.firstplay__content {
    background-color: rgba(0, 0, 0, 0.65);
    padding: 30px 20px;
    border-radius: 10px;
}

.firstplay__promo {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.firstplay__sub {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.firstplay__cta {
    background: #00ffd1;
    color: #0b0d17;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.firstplay__cta i {
    font-size: 1.2rem;
}

.firstplay__cta:hover {
    background: #00e6bc;
}

.firstplay__disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.85;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .firstplay__title {
        font-size: 2rem;
    }

    .firstplay__promo {
        font-size: 1.3rem;
    }

    .firstplay__sub {
        font-size: 1rem;
    }

    .firstplay__banner {
        padding: 25px 15px;
    }

    .firstplay__cta {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .firstplay__disclaimer {
        font-size: 0.8rem;
    }
}

.abtvault {
    padding: 80px 0;
    background: #10131f;
    color: #ffffff;
}

.abtvault__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    color: #00ffd1;
}

.abtvault__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.abtvault__text {
    flex: 1 1 50%;
    font-family: 'Urbanist', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.abtvault__text p {
    margin-bottom: 18px;
}

.abtvault__text strong {
    color: #00ffd1;
    font-weight: 600;
}

.abtvault__image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
}

.abtvault__image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .abtvault__content {
        flex-direction: column;
    }

    .abtvault__image {
        margin-top: 30px;
    }
}

.schedulux {
    background: #0c0f1a;
    padding: 80px 0;
    color: white;
}

.schedulux__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #00ffd1;
}

.schedulux__grid {
    display: grid;
    gap: 30px;
}

.schedulux__card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #151925;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 255, 209, 0.08);
    border-left: 4px solid #00ffd1;
    transition: transform 0.3s ease;
}

.schedulux__card:hover {
    transform: translateY(-4px);
}

.schedulux__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.schedulux__desc {
    font-size: 1rem;
    color: #cbd1e0;
}

.schedulux__date {
    font-size: 0.95rem;
    font-weight: 500;
    color: #00ffd1;
    margin-top: 5px;
}

.populorev {
    background: #0d121e;
    padding: 90px 0;
    color: #ffffff;
}

.populorev__title {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: #00ffd1;
    margin-bottom: 50px;
}

.populorev__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.populorev__card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    height: 360px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.populorev__overlay {
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.populorev__top {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #00ffd1;
    font-weight: 500;
}

.populorev__event-name {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
    color: #ffffff;
}

.populorev__desc {
    font-size: 0.9rem;
    color: #cfd5e2;
}

.populorev__date {
    font-size: 0.85rem;
    color: #aab4c4;
}

.populorev__btn {
    background: #00ffd1;
    color: #0a0e16;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.populorev__btn:hover {
    background: #00e6c0;
}


.planarix {
    background: #0c101d;
    padding: 90px 0;
    color: #ffffff;
}

.planarix__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #00ffd1;
}

.planarix__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.planarix__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #151a28;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 255, 209, 0.06);
}

.planarix__card--highlighted {
    border-image: linear-gradient(45deg, #00ffd1, #008c7f) 1;
    background: linear-gradient(to bottom, #171c2b, #10141f);
}

.planarix__card-body {
    flex-grow: 1;
}

.planarix__name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.planarix__desc {
    font-size: 0.95rem;
    color: #c3c8d5;
    margin-bottom: 20px;
    line-height: 1.6;
}

.planarix__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d3d8e2;
}

.planarix__features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.planarix__features i {
    color: #00ffd1;
    font-size: 1.1rem;
}

.planarix__footer {
    margin-top: 30px;
}

.planarix__price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffd1;
    margin-bottom: 16px;
}

.planarix__price span {
    font-size: 0.95rem;
    color: #aaa;
    margin-left: 5px;
}

.planarix__btn {
    background: #00ffd1;
    color: #0b0d17;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: background 0.3s ease;
}

.planarix__btn:hover {
    background: #00e6bc;
}

.faqdeck {
    background: #0e121d;
    padding: 80px 0;
    color: white;
}

.faqdeck__title {
    text-align: center;
    font-size: 2.2rem;
    color: #00ffd1;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 50px;
}

.faqdeck__accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faqdeck__item {
    background: #151a27;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faqdeck__question {
    width: 100%;
    background: none;
    color: #ffffff;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
}

.faqdeck__question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faqdeck__item.active .faqdeck__question::after {
    transform: rotate(45deg);
}

.faqdeck__answer {
    max-height: 0;
    overflow: hidden;
    background: #1c2131;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.faqdeck__item.active .faqdeck__answer {
    max-height: 500px;
    padding: 20px;
}

.responsiblezone {
    background: #0a0d15;
    padding: 80px 0;
    color: #e5e5e5;
}

.responsiblezone__title {
    font-size: 2.2rem;
    color: #00ffd1;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 30px;
}

.responsiblezone__intro {
    text-align: center;
    font-size: 1rem;
    max-width: 780px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #c0c6d6;
}

.responsiblezone__list {
    max-width: 880px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 20px;
    list-style: disc;
}

.responsiblezone__list li {
    margin-bottom: 20px;
}

.responsiblezone__list a {
    color: #00ffd1;
    text-decoration: underline;
}

.supportarc {
    background: #0d111c;
    padding: 80px 0;
    color: white;
}

.supportarc__title {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: #00ffd1;
    margin-bottom: 10px;
}

.supportarc__subtitle {
    text-align: center;
    font-size: 1rem;
    color: #c4cad8;
    margin-bottom: 40px;
}

.supportarc__form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.supportarc__row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.supportarc__input,
.supportarc__textarea {
    background: #161c29;
    color: #ffffff;
    border: 1px solid #2a3243;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
}

.supportarc__input:focus,
.supportarc__textarea:focus {
    outline: none;
    border-color: #00ffd1;
    box-shadow: 0 0 0 2px rgba(0, 255, 209, 0.2);
}

.supportarc__input--full {
    flex: 1 1 100%;
}

.supportarc__textarea {
    min-height: 140px;
    resize: vertical;
}

.supportarc__btn {
    background: #00ffd1;
    color: #0c101a;
    padding: 14px 22px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.supportarc__btn:hover {
    background: #00e6c0;
}

.supportarc__success,
.supportarc__error {
    display: none;
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #00ffd1;
}

.supportarc__error {
    color: #ff5c5c;
}

.footerhollow {
    background: #0a0e16;
    padding: 60px 0;
    color: #bfc8d6;
    font-size: 0.95rem;
}

.footerhollow__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footerhollow__col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footerhollow__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.footerhollow__icon {
    font-size: 1.6rem;
}

.footerhollow__copy {
    color: #808d9c;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footerhollow__heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffd1;
    margin-bottom: 16px;
}

.footerhollow__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerhollow__link {
    color: #c7ceda;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footerhollow__link:hover {
    color: #00ffd1;
}

.cookix-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 680px;
    width: calc(100% - 40px);
    background: #121923;
    border: 1px solid #00ffd1;
    border-radius: 12px;
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 255, 209, 0.1);
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.cookix-popup__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookix-popup__text {
    color: #cfd9e6;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.cookix-popup__text a {
    color: #00ffd1;
    text-decoration: underline;
}

.cookix-popup__btn {
    background: #00ffd1;
    color: #0a0e16;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    align-self: flex-start;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookix-popup__btn:hover {
    background: #00e6c1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 50px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.legalcore {
    background: #0d111c;
    color: #d6ddea;
    padding: 80px 0;
    font-family: 'Urbanist', sans-serif;
}

.legalcore__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
}

.legalcore__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: #00ffd1;
    margin-bottom: 30px;
}

.legalcore h2 {
    margin-top: 40px;
    color: #00ffd1;
    font-size: 1.3rem;
}

.legalcore p,
.legalcore li {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legalcore ul {
    padding-left: 20px;
}