.offers-page-container {
    margin-top: 1rem;
    padding: 0 1rem;
}

.offers-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--page-bg);
}

.offer-block {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.offers-page-container .offer-block:nth-child(n+4) {
    display: none;
}

.mobile-link {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
}

.offer-inner-block {
    display: flex;
    justify-content: space-between;
    background-color: var(--card-left);
    min-height: 131px;
    height: 131px;
    position: relative;
}

.offer-left-block,
.offer-right-block {
    width: 50%;
    display: flex;
    align-items: center;
}

.offer-logo {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem .3rem 1rem 1rem;
    background: var(--card-left);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.offer-logo:hover {
    background: var(--card-left-hover);
}

.offer-logo img {
    width: 100%;
    max-width: 180px;
    height: 100px;
    object-fit: contain;
    padding: 0 .5rem;
    display: block;
    margin: 0 auto;
}

.rating-container {
    width: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 1rem 1rem 0;
}

.offer-votes,
.offer-score {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.stars-container {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 20px;
    margin-bottom: 0.7rem;
}

.stars-container:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '★★★★★';
    color: #d3d3d3;
}

.stars-container:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '★★★★★';
    color: #ffcb0f;
    overflow: hidden;
}

.star-100:after {
    width: 100%;
}

.star-90:after {
    width: 90%;
}

.star-80:after {
    width: 80%;
}

.star-70:after {
    width: 70%;
}

.star-50:after {
    width: 50%;
}

.offer-votes span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
}

.offer-score {
    align-items: flex-end;
    padding-right: 1rem;
    justify-content: flex-end;
    padding-bottom: 0;
}

.offer-score-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 0;
    position: relative;
}

.site-rating {
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--highlight);
    line-height: 1;
}

.site-rating-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    margin-top: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.offer-right-block {
    background-color: var(--card-right);
    border-radius: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.75rem 1rem;
}

.offers-page-container .offer-right-block {
    border-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.offer-right-block:hover {
    background-color: var(--card-right-hover);
}

.welcome-bonus-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    line-height: 1.5rem;
    margin-bottom: 0.25rem;
}

.welcome-bonus-block span.welcome-title {
    margin-bottom: 0.5rem;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.2px;
    text-shadow: none;
    text-align: center;
    background: linear-gradient(180deg, #FFF176, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-bonus-block span {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: -0.25rem;
    margin-bottom: 0.25rem;
}

.offer-btn {
    width: 16rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding-bottom: 2px;
    border-radius: 1rem;
    color: #2a1f00;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(201, 168, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.offer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    animation: shimmer-btn 2s infinite;
    pointer-events: none;
}

.offer-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(180deg, #fff0a0 0%, var(--gold-light) 100%);
    box-shadow: 0 6px 20px rgba(201, 168, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
    color: #2a1f00;
}

.min-deposit {
    display: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.label-container {
    width: 100%;
    padding: 0.5rem;
    color: #ffffff60;
    font-size: .75rem;
    background: var(--label-bar);
}

.label-container a {
    color: inherit;
}

.label-container a:hover {
    text-decoration: underline;
}

.flag {
    position: absolute;
    padding: 5px 10px;
    background-color: var(--gold);
    color: #2a1f00;
    top: -5px;
    left: -10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 767px) {
    .mobile-link {
        display: block;
    }
    .offer-right-block {
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
        border-radius: 0;
    }
    .welcome-bonus-block {
        margin-bottom: .5rem;
    }
    .btn-block,
    .welcome-bonus-block {
        width: 100%;
    }
    .min-deposit {
        display: inline;
    }
    .offer-left-block {
        flex-direction: column;
    }
    .offer-logo {
        width: 90%;
        margin-bottom: 1rem;
        background: var(--card-left);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 0;
    }
    .rating-container {
        width: 100%;
        justify-content: space-between;
        padding: 0 0 1rem 2%;
    }
    .offer-votes {
        align-items: flex-start;
    }
    .offer-btn {
        width: 12rem;
        height: 3rem;
        font-size: 1.1rem;
        line-height: 1.2rem;
        border-radius: 2rem;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: .03rem;
        color: #2a1f00;
        box-shadow: 0 4px 14px rgba(201, 168, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.4);
        -webkit-transition: .15s ease-out;
        -o-transition: .15s ease-out;
        transition: .15s ease-out;
    }
    .offer-btn:active,
    .offer-btn:hover {
        transform: scale(1) translateY(3px);
        background: linear-gradient(180deg, #fff0a0 0%, var(--gold-light) 100%);
    }

    .flag {
        padding: 4px 10px;
        top: -4px;
        left: 0px;
        border-radius: 3px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .min-deposit {
        font-size: 11px;
    }
}

/* FEATURES LIST */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.features-list li {
    margin-block-start: 1ex;
    line-height: 1.2;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
}

.features-list li .check {
    color: var(--gold);
    font-size: 9px;
    font-style: normal;
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
    position: relative;
    animation: shimmer-star 2s infinite;
}

@keyframes shimmer-btn {
    0%   { left: -75%; opacity: 0; }
    10%  { opacity: 1; }
    50%  { left: 125%; opacity: 1; }
    51%  { opacity: 0; }
    100% { left: 125%; opacity: 0; }
}

@keyframes shimmer-star {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50%       { opacity: 1; filter: brightness(2); }
}

/* Mobile logo centering & offer block height reset */
@media (max-width: 767px) {
    .offer-inner-block {
        height: auto;
    }
    .offer-logo img {
        transform: translateY(10px);
        margin: 0 auto;
    }
    .offer-right-block ul {
        margin: 0 !important;
        padding-left: 0 !important;
    }
    .offer-right-block li {
        margin-block-start: 0.35rem !important;
        line-height: 1.2;
    }
}
/* SCORE INFO ICON */
.score-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 4px;
    line-height: 1;
    position: relative;
    top: -1px;
    transition: border-color 0.2s, color 0.2s;
}

.score-info-icon:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.55);
}

.site-rating-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
}

.score-info-box {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: #1a1a1a;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 8px 12px;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.score-info-box.open {
    display: block;
}

.score-info-box a {
    font-size: 11px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
}

.score-info-box a:hover {
    color: #fff;
    text-decoration: underline;
}

.features-list li:nth-child(1) .check { animation-delay: 0s; }
.features-list li:nth-child(2) .check { animation-delay: 0.25s; }
.features-list li:nth-child(3) .check { animation-delay: 0.5s; }

/* ONLINE PLAYERS */
.online-players {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ddc6e;
    box-shadow: 0 0 5px rgba(61, 220, 110, 0.7);
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 4px rgba(61, 220, 110, 0.7); }
    50% { box-shadow: 0 0 9px rgba(61, 220, 110, 1); }
}

.online-players-count {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
}