


/* .layout-container {
    width: min(1200px, 100%);
    margin-inline: auto;
} */

    /* Div-based leaderboard header / rows styled to match the HTML <table> below */
    .table-header{
        display: grid;
        grid-template-columns: 60px 1fr 1fr 120px;
        gap: 12px;
        align-items: center;
        padding: 12px 16px;
        background: #002476; /* same as .slots-table thead */
        color: #D3D9EA; /* same text color as table header */
        font-weight: 700;
        border-radius: 8px 8px 0 0;
        position: sticky;
        top: 0;
        z-index: 3;
        text-align: center;
    }

    .table-body{
        display: flex;
        flex-direction: column;
        /* remove outer side borders to match table below */
        border: none;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        background: transparent;
    }

    .table-body .table-row{
        display: grid;
        grid-template-columns: 60px 1fr 1fr 120px;
        gap: 12px;
        align-items: center;
        /* reduced height / padding */
        padding: 8px 12px;
        background: transparent; /* keep page background visible like table rows */
        border-bottom: 1px solid #21347F; /* same divider as <table> */
        color: #D3D9EA;
        text-align: center;
    }

    .table-body .table-row:last-child{ border-bottom: none; }

    .table-body .table-row.you{ background: #FF267E; color: #fff; }

    /* Responsive: stack columns on small screens */
    @media (max-width: 520px){
        .table-header, .table-body .table-row{text-align: left; }
        .table-header{ border-radius: 8px; }
        .table-body{ border-radius: 8px; }
    }




@font-face {
    font-family: "FavbetDisplay";
    src: url("FavbetDisplay-NormalBold.otf") format("opentype");
}

body {
    background-color: #001850;
}

.slots-league {
    background-size: contain;
    background-position: top;
}

.slots-hero {
    text-align: center;
}

.slots-hero__title {
    display: flex;
    justify-content: center;
}

.slots-hero__title img {
    width: 100%;
    margin-top: -7vh;
}

.slots-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 38px;
    width: fit-content;
    margin-inline: auto;
    padding: 10px 13px;
    background: #FF267E;
    border-radius: 7px;
    text-transform: uppercase;
    margin-top: 46vh;
}

.slots-hero__button img {
    width: 20px;
}

.slots-hero__button a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.slots-hero__info {
    background: url(https://www.favbet.ro/minio/new-promo/favbet-liga-profesionista-sloturi/background-info.svg);
    padding: 25px;
    color: white;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    max-width: 100%;
    margin-top: -54vh;
    background-size: contain;
}

.slots-hero__info p {
    font-size: 1vw;
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slots-hero__info h4 {
    margin: 0;
    font-family: "FavbetDisplay", sans-serif;
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: bolder;

}

.slots-hero__content {
    display: block;
    margin: 0 auto;
    margin-top: 53vh;
}

.slots-content {
    background: url(https://www.favbet.ro/minio/new-promo/favbet-liga-profesionista-sloturi/border-scena.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -10vh;
}

.slots-content__period img {
    display: block;
    margin: 0 auto;
    position: absolute;
    z-index: 1;
    left: 38%;
    right: 38%;
    margin-top: -2%;
    width: 24%;
}

.slots-content p {
    color: white;
    text-align: center;
}

.slots-content__cta {
    display: flex;
    justify-content: center;
}

.slots-content__cta img {
    width: 27%;
    margin-top: 2%;
}

.slots-content__multiplier {
    margin-top: 4%;
    text-align: center;
    color: white;
    font-family: "FavbetDisplay", sans-serif;
    font-size: 25px;
    font-weight: bolder;

}

.slots-content__multiplier span {
    font-size: 18px;
    font-family: sans-serif;
}

.slots-scene {
    position: relative;
    padding-top: 7vh;
}

.slots-scene__cards {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slots-scene__cards img {
    width: 20%;
}

.arrow {
    display: flex;
    justify-content: center;
    margin-top: -17vh;
}

.arrow img {
    width: 70%;
}

.slots-scene__coin {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(240, 165, 0, 0.6));
}

.slots-scene__coin--left-top {
    width: 10vw;
    left: 12%;
    top: 26%;
    transform: translateY(-50%);
    animation: float-1 2.4s ease-in-out infinite;
}

.slots-scene__coin--left-bottom {
    width: 7vw;
    left: 19%;
    top: 58%;
    transform: translateY(-50%);
    animation: float-2 2.4s ease-in-out infinite;
}

.slots-scene__coin--right-top {
    width: 5vw;
    right: 12%;
    top: 47%;
    animation: float-3 2.4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.slots-scene__coin--right-bottom {
    width: 10vw;
    right: 16%;
    top: 68%;
    transform: translateY(-50%);
    animation: float-4 2.4s ease-in-out infinite;
    animation-delay: 1.6s;
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 16px));
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 16px));
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 16px));
    }
}

.slots-provider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    overflow-y: auto;
    height: 46vh;
    padding-right: 20px;
}

.slots-provider::-webkit-scrollbar {
    width: 12px;
}

.slots-provider::-webkit-scrollbar-track {
    background: #001850;
}

.slots-provider::-webkit-scrollbar-thumb {
    background: #21347F;
    border-radius: 6px;
}

.providers {
    display: flex;
    color: white;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 6.532px;
    border: 0.817px solid #21347F;
    background: #001850;
    font-weight: bold;
    width: -webkit-fill-available;
    height: 50px;
}

.providers img {
    width: 100px;
    padding: 5px;
}

.slots-table-section {
    width: 50%;
    margin-inline: auto;
    padding-top: 4rem;
}

.slots-provider-section {
    width: 50%;
    margin-inline: auto;
}

.slots-table-section__light {
    width: 100%;
}

.slots-table-wrapper {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 20px;
}

.slots-table-wrapper::-webkit-scrollbar {
    width: 12px;
}

.slots-table-wrapper::-webkit-scrollbar-track {
    background: #001850;
}

.slots-table-wrapper::-webkit-scrollbar-thumb {
    background: #21347F;
    border-radius: 6px;
}

.slots-table {
    width: 100%;
    border-collapse: collapse;
}

.slots-table thead {
    position: sticky;
    top: 0;
    background: #002476;
}

.slots-table th,
.slots-table td {
    padding: 12px;
    font-weight: 700;
    color: #D3D9EA;
    text-align: center;
}

.slots-table tbody tr {
    border-bottom: 1px solid #21347F;
}

.slots-table tbody tr:last-child {
    border-bottom: none;
}

.slots-table-wrapper thead th:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.slots-table-wrapper thead th:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.slots-icons-section {
    width: 50%;
    margin-inline: auto;
    padding-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.slots-icons-section p,
.slots-icons-section h3 {
    margin: 0;
    font-size: 1.1vw;
}

.slots-icons-section p {
    font-size: 0.7vw;
}

.slots-icons-section h3 {
    font-weight: 400;
}

.slots-prize-wrapper,
.slots-places-wrapper,
.slots-goals-wrapper,
.slots-wager-wrapper {
    width: 200px;
    color: white;
}

.slots-icons-section img {
    width: 100%;
}

.slots-accordion {
    padding: 15px;
    color: white;
}

.slots-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 0;
    cursor: pointer;
    list-style: none;
    border-bottom: 1px solid white;
}

.slots-accordion__header span {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.slots-accordion__header::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.slots-accordion[open] .slots-accordion__header::after {
    transform: rotate(225deg);
}

.slots-accordion__header::-webkit-details-marker {
    display: none;
}

.slots-rules {
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 750px) {

    .slots-hero {
        background: url(https://www.favbet.ro/minio/new-promo/favbet-liga-profesionista-sloturi/background-mobile.svg);
        background-size: contain;
    }

    .slots-prize-wrapper, .slots-places-wrapper, .slots-goals-wrapper, .slots-wager-wrapper {
    width: 100%;
    color: white;
}

    

    .slots-hero__info {
        background: none;
        height: auto;
        margin-top: 0;
    }

    .slots-content {
        background: #000D2C;
        margin-top: 0;
    }

    .slots-provider-section {
        background: #000D2C;

    }

    .slots-table-section {
        background: #000D2C;
    }

    .slots-icons-section {
        background: #000D2C;
    }

    .slots-rules {
        background: #000D2C;
    }

    .slots-hero__title img {
        margin-top: -4vh;
    }

    .slots-scene__cards img {
        width: 60%;
    }

    .slots-scene {
        padding-top: 3vh;
    }

    .slots-scene__cards {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .arrow {
        margin-top: 0;
    }

    .slots-scene__cards .arrow {
        width: 20%;
        display: flex;
        justify-content: center;
    }

    .slots-hero__button {
        margin-top: -2vh;
        margin-bottom: 3vh;
        padding: 10px 13px;
    }

    .slots-icons-section {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0;
    }

    .slots-icons-section h3 {
        font-size: 4.1vw;
    }

    .slots-icons-section p {
        font-size: 2.7vw;
    }

    .slots-icons-section img {
        width: 80%;
    }

    .layout-container {
        width: 100%;
    }

    .slots-hero__info p {
        font-size: 2.8vw;
        width: 100%;
        margin: 0;
    }

    .slots-hero__info h4 {
        margin-top: 12px;
        font-size: 5vw;
    }

    .slots-content__period img {
        margin-top: 0;
        width: 50%;
        position: static;
    }

    .slots-scene__coin--left-top {
        width: 24vw;
        left: -12%;
        top: 27%;
    }

    .slots-scene__coin--left-bottom {
        width: 18vw;
        left: 7%;
        top: 45%;
    }

    .slots-scene__coin--right-top {
        width: 13vw;
        right: 0%;
        top: 37%;
    }

    .slots-scene__coin--right-bottom {
        width: 24vw;
        right: 13%;
        top: 53%;
    }

    .slots-content__cta img {
        width: 60%;
        margin-top: 4%;
    }

    .slots-provider-section {
        width: 95%;
    }

    .slots-table-section {
        width: 100%;
        padding-top: 2rem;
    }

    .slots-table-wrapper {
        width: 90%;
        margin-inline: auto;
    }

    .slots-hero__content {
        margin-top: 4vh;
    }

    .slots-table th,
    .slots-table td {
        padding: 10px;
        font-size: 14px;
    }

    .slots-rules {
        width: 100%;
    }
}