.nyH7nrTC:before{background-color:var(--Label-Brand);border-radius:32px;content:"";height:32px;left:0;position:absolute;width:3px}.nyH7nrTC._29o6cmLj:before{background-color:var(--System-Brand)}

.KmYXF4Us::-webkit-calendar-picker-indicator{background:transparent;bottom:0;color:transparent;cursor:pointer;height:auto;left:0;position:absolute;right:0;top:0;width:auto}

.fUepWLSU:before{background-color:var(--System-Brand);border-radius:100px;content:"";height:30px;left:5px;position:absolute;top:5px;width:3px}

.sf-hidden{display:none!important}

.textSeo {
    margin: 70px 0 0px;
}
.textSeo p {
    line-height: 1.4;
    font-size: 18px;
}
.textSeo h1,
.textSeo h2,
.textSeo h3 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.textSeo h1:first-child,
.textSeo h2:first-child,
.textSeo h3:first-child {
    margin-top: 0;
}
.textSeo h4 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 28px;
    color: #fbce9d;
}

/* ==== EpicStar animated tables ==== */
.epicTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 28px 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #32292b 0%, #2c2425 100%);
    border: 1px solid rgba(212, 199, 196, 0.20);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(24px);
    animation: epicFadeUp 0.7s ease forwards;
}
.epicTable thead th {
    background: linear-gradient(180deg, #b07045 0%, #935d39 100%);
    color: #fff;
    text-align: left;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    position: relative;
}
.epicTable thead th::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, rgba(251,206,157,0) 0%, #fbce9d 50%, rgba(251,206,157,0) 100%);
}
.epicTable tbody td {
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px solid rgba(212, 199, 196, 0.12);
    transition: background 300ms ease, color 300ms ease;
}
.epicTable tbody tr {
    opacity: 0;
    animation: epicRowIn 0.5s ease forwards;
}
.epicTable tbody tr:nth-child(1) { animation-delay: 0.15s; }
.epicTable tbody tr:nth-child(2) { animation-delay: 0.25s; }
.epicTable tbody tr:nth-child(3) { animation-delay: 0.35s; }
.epicTable tbody tr:nth-child(4) { animation-delay: 0.45s; }
.epicTable tbody tr:nth-child(5) { animation-delay: 0.55s; }
.epicTable tbody tr:nth-child(6) { animation-delay: 0.65s; }
.epicTable tbody tr:last-child td { border-bottom: none; }
.epicTable tbody tr:hover td {
    background: linear-gradient(180deg, rgba(249,176,98,0.14) 0%, rgba(176,112,69,0.10) 100%);
    color: #fbce9d;
}
.epicTable tbody td:first-child {
    font-weight: 600;
    color: #f9b062;
}
.epicTable tbody tr:hover td:first-child { color: #fbce9d; }

/* ==== EpicStar animated lists ==== */
.epicList {
    list-style: none;
    padding: 0;
    margin: 26px 0;
}
.epicList li {
    position: relative;
    padding: 14px 18px 14px 54px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.45;
    color: #fff;
    background: linear-gradient(180deg, #382e30 0%, #2c2425 100%);
    border: 1px solid rgba(212, 199, 196, 0.16);
    border-radius: 12px;
    opacity: 0;
    transform: translateX(-18px);
    animation: epicSlideIn 0.55s ease forwards;
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}
.epicList li::before {
    content: "★";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    color: #2c2425;
    background: radial-gradient(140% 122% at 51% 114%, #fbce9d 0%, #ba7a4f 39%, #935d39 85%);
    box-shadow: 0 2px 8px rgba(249, 176, 98, 0.4);
}
.epicList li:hover {
    border-color: rgba(249, 176, 98, 0.55);
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.epicList.epicListNum { counter-reset: epicCounter; }
.epicList.epicListNum li::before {
    counter-increment: epicCounter;
    content: counter(epicCounter);
    font-weight: 700;
    font-size: 14px;
}
.epicList li:nth-child(1) { animation-delay: 0.10s; }
.epicList li:nth-child(2) { animation-delay: 0.20s; }
.epicList li:nth-child(3) { animation-delay: 0.30s; }
.epicList li:nth-child(4) { animation-delay: 0.40s; }
.epicList li:nth-child(5) { animation-delay: 0.50s; }
.epicList li:nth-child(6) { animation-delay: 0.60s; }
.epicList li:nth-child(7) { animation-delay: 0.70s; }

@keyframes epicFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes epicRowIn {
    to { opacity: 1; }
}
@keyframes epicSlideIn {
    to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 767px) {
    .epicTable thead th { font-size: 14px; padding: 12px 14px; }
    .epicTable tbody td { font-size: 14px; padding: 12px 14px; }
    .epicList li { font-size: 15px; padding: 12px 14px 12px 48px; }
    .textSeo h4 { font-size: 19px; }
}
@media (max-width: 959px) {
    .gamesBannersRow_root__bPmxl .gamesBannersRow_bannersRow__lsIy6 {
        flex-direction: column;
    }
    .main_root__MBTnW .main_bannerSection__hZyI7 {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .textSeo {
    }
    .textSeo h1,
    .textSeo h2,
    .textSeo h3 {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .textSeo p {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .gamesRowGroupCarousel_container__oKNjI {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    .gamesRowGroupCarousel_slide__tJd4f{
        padding: 0;
    }
    .bannerCard_root__EfxQL {
        height: 200px;
        flex: none;
    }
    .genericLayout_mainWrapper__FvfnR {
        padding-bottom: 0;
    }
    .gamesBySections_root__T_f_R .gamesBySections_gamesWrapper__IyZCc {
        gap: 30px;
    }
}
