:root {
    --primary-color: #2041b8;
    --secondary-color: #1a3696;
    --background-color: #2041b8;
    --text-color: #fff;
    --button-text: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'M PLUS Rounded 1c', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #1c3788;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Standard text styling for all paragraphs */
.text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 1rem;
    }
}

.header {
    background: linear-gradient(to bottom, #4786ee 0%, #2a54d2 100%);
    border-bottom: 2px solid #234abc;
    border-top: 1px solid #6b97ff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 2px 0;
}

.header__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.15rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 48px;
    width: auto;
    transform: translateY(-1px);
    margin-top: 3px;
}

.header__auth {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    margin-left: auto;
    padding-left: 1rem;
}

/* Navigation Menu */
.header__nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header__nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    opacity: 0.9;
    white-space: nowrap;
}

.header__nav-link:hover {
    opacity: 1;
}

/* Mobile Login Button */
.header__mobile-login {
    display: none;
    text-decoration: none;
    padding: 0.3rem 0.9rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid #74c0fc;
    border-bottom: 3px solid #228be6;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 2px 2px rgba(0, 0, 0, 0.3);
    margin-right: 0.75rem;
    transform: translateY(2px);
}

.header__mobile-login:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
    transform: translateY(1px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.header__mobile-login:active {
    transform: translateY(3px);
    border-bottom: 1px solid #228be6;
}

/* Hamburger Menu */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header__button {
    text-decoration: none;
    padding: 0.32rem 0.9rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    border: 1px solid #74c0fc;
    border-bottom: 3px solid #228be6;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 2px 2px rgba(0, 0, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
}

.header__button:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
}

.header__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #228be6;
}

.header__button--login, .header__button--register {
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
}

.header__button--login:hover, .header__button--register:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
}

.hero {
    position: relative;
    min-height: 450px;
    background: linear-gradient(to right, rgb(0 32 48 / 43%), rgba(0, 32, 48, 0.8)), url(assets/pistolohero.webp);
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
}

.hero__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
    width: 100%;
}

.hero__content {
    width: 100%;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.hero__text {
    /* This class is now replaced by .text */
}

.hero__bonus {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.hero__bonus-icon {
    font-size: 2rem;
}

.hero__button {
    text-decoration: none;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    border: 1px solid #74c0fc;
    border-bottom: 3px solid #228be6;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 2px 2px rgba(0, 0, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
}

.hero__button:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
}

.hero__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #228be6;
}

@media (max-width: 768px) {
    .hero__container {
        padding: 2rem 1rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__text {
        font-size: 1rem;
    }

    .hero__bonus {
        font-size: 1.25rem;
    }

    .hero__button {
        width: 100%;
        text-align: center;
    }
}

/* Medium screens optimization */
@media (max-width: 1024px) and (min-width: 769px) {
    .header__nav {
        gap: 0.7rem;
    }
    
    .header__nav-link {
        font-size: 0.72rem;
    }
    
    .header__button {
        padding: 0.28rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .header__auth {
        gap: 0.45rem;
        padding-left: 0.7rem;
    }
}

@media (max-width: 768px) {
    .header__hamburger {
        display: flex;
    }
    
    .header__mobile-login {
        display: block;
        margin-left: auto;
    }
    
    .header__container {
        display: flex;
        align-items: center;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(to bottom, #4786ee 0%, #2a54d2 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header__nav.active {
        right: 0;
    }
    
    .header__nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }
    
    .header__auth {
        width: 100%;
        flex-direction: column;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header__button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header__nav {
        width: 100%;
    }
    
    .header__button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

.promotions {
    padding: 2rem 0;
    color: white;
}

.promotions__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promotions__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.promotions__text {
    /* This class is now replaced by .text */
}

.promotions__offer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.promotions__offer-text {
    /* This class is now replaced by .text */
}

.promotions__offer-text:last-child {
    /* This functionality is covered by .text:last-child */
}

@media (max-width: 768px) {
    .promotions {
        padding: 1.5rem 0;
    }

    .promotions__title {
        font-size: 1.75rem;
    }

    .promotions__offer-title {
        font-size: 1.25rem;
    }

    .promotions__text,
    .promotions__offer-text {
        font-size: 1rem;
    }
}

.bonus-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/pistolobanner.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.bonus-banner__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-banner__tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.bonus-banner__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.bonus-banner__button {
    display: inline-block;
    padding: 0.8rem 3rem;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 2px 2px rgba(0, 0, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.bonus-banner__button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

.bonus-banner__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.bonus-banner__disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .bonus-banner {
        padding: 3rem 0;
    }
    
    .bonus-banner__title {
        font-size: 2rem;
    }
    
    .bonus-banner__tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-banner__title {
        font-size: 1.5rem;
    }
    
    .bonus-banner__button {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

.casino-bonus {
    padding: 0rem 0;
    color: white;
    background-color: #1c3788;
}

.casino-bonus__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.casino-bonus__content {
    flex: 1;
}

.casino-bonus__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
}

.casino-bonus__text {
    /* This class is now replaced by .text */
}

.casino-bonus__text:last-of-type {
    /* This functionality is covered by .text:last-child */
}

.casino-bonus__button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    border: 1px solid #74c0fc;
    border-bottom: 3px solid #228be6;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 2px 2px rgba(0, 0, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
    text-decoration: none;
}

.casino-bonus__button:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
}

.casino-bonus__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #228be6;
}

.casino-bonus__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-bonus__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .casino-bonus {
        padding: 3rem 0;
    }

    .casino-bonus__container {
        flex-direction: column;
        gap: 2rem;
    }

    .casino-bonus__title {
        font-size: 1.75rem;
    }

    .casino-bonus__text {
        font-size: 1rem;
    }

    .casino-bonus__button {
        width: 100%;
        text-align: center;
    }
}

.quick-info {
    padding-bottom: 4rem;
    background-color: #1c3788;
    color: white;
}

.quick-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.quick-info__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-align: center;
    color: white;
}

.quick-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quick-info__card {
    background: linear-gradient(135deg, #2a54d2 0%, #4786ee 100%);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-info__card:hover {
    transform: translateY(-5px);
}

.quick-info__label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.quick-info__value {
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

@media (max-width: 768px) {
    .quick-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-info__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .quick-info__grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info__card {
        padding: 1.25rem;
    }
}

.quick-info__card {
    padding: 1.25rem;
}

.bonus-cards {
    padding: 2.5rem 0;
    background-color: #1c3788;
    color: white;
}

.bonus-cards__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-cards__wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.bonus-cards__text {
    flex: 0 0 460px;
    width: 460px;
}

.bonus-cards__heading {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
    text-transform: uppercase;
}

.bonus-cards__paragraph {
    /* This class is now replaced by .text */
}

.bonus-cards__content {
    flex: 1;
}

.bonus-cards__title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.bonus-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bonus-cards__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.bonus-cards__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-cards__tag {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 1;
}

.bonus-cards__tag:nth-child(2) {
    background-color: #9b59b6;
}

.bonus-cards__label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.5rem 0.75rem 0.15rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.bonus-cards__amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin: 0 0.75rem 0.5rem;
    line-height: 1.2;
}

.bonus-cards__button {
    display: block;
    margin: 0 0.75rem 0.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 2px 2px rgba(0, 0, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
    text-decoration: none;
}

.bonus-cards__button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

.bonus-cards__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ff7e00;
}

@media (max-width: 992px) {
    .bonus-cards__wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .bonus-cards__text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .welcome-bonus__content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bonus-cards {
        padding: 2.5rem 0;
    }
    
    .bonus-cards__text {
        text-align: center;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto 2rem !important;
        flex: none !important;
    }
    
    .bonus-cards__heading {
        text-align: center;
        margin: 0 auto 0.75rem !important;
    }
    
    .bonus-cards__paragraph {
        text-align: center;
        margin: 0 auto !important;
    }
    
    .bonus-cards__content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .bonus-cards__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
    
    .bonus-cards__card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .bonus-cards__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
    }
    
    .bonus-cards__card {
        width: 100% !important;
    }
    
    .bonus-cards__image {
        height: 100px !important;
    }
    
    .bonus-cards__label {
        font-size: 0.7rem !important;
        margin: 0.5rem 0.5rem 0.15rem !important;
    }
    
    .bonus-cards__amount {
        font-size: 0.9rem !important;
        margin: 0 0.5rem 0.5rem !important;
    }
    
    .bonus-cards__button {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.5rem !important;
        margin: 0 0.5rem 0.5rem !important;
    }
}

.bonus-cards__image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.bonus-cards__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-bonus {
    padding: 4rem 0;
    background-color: #1c3788;
    color: white;
}

.welcome-bonus__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 3rem;
}

.welcome-bonus__card {
    flex: 1;
    background-color: #2a54d2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-bonus__header {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-bonus__logo {
    max-width: 120px;
    margin-bottom: 0.5rem;
}

.welcome-bonus__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.welcome-bonus__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem;
}

.welcome-bonus__option {
    background-color: #4786ee;
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.welcome-bonus__option:hover {
    background-color: #5791f0;
}

.welcome-bonus__option--selected {
    border-color: #ffb700;
}

.welcome-bonus__option-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-bonus__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.welcome-bonus__icon-svg {
    width: 100%;
    height: 100%;
}

.welcome-bonus__option-text {
    flex-grow: 1;
}

.welcome-bonus__option-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

.welcome-bonus__option-amount {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
}

.welcome-bonus__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    flex-shrink: 0;
}

.welcome-bonus__radio--selected {
    background-color: #4cd137;
    border-color: #4cd137;
    position: relative;
}

.welcome-bonus__radio--selected::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.welcome-bonus__choose-button {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.1s;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
}

.welcome-bonus__choose-button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.welcome-bonus__choose-button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ff7e00;
}

.welcome-bonus__content {
    flex: 0 0 460px;
    width: 460px;
}

.welcome-bonus__content-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.welcome-bonus__content-icon {
    font-size: 1.5rem;
}

.welcome-bonus__text {
    /* This class is now replaced by .text */
}

.welcome-bonus__text:last-child {
    /* This functionality is covered by .text:last-child */
}

@media (max-width: 768px) {
    .welcome-bonus {
        padding: 3rem 0;
    }
    
    .welcome-bonus__container {
        flex-direction: column;
    }
    
    .welcome-bonus__content-title {
        font-size: 1.5rem;
    }
    
    .welcome-bonus__option {
        padding: 0.5rem;
    }
    
    .welcome-bonus__option-icon {
        width: 40px;
        height: 40px;
    }
    
    .welcome-bonus__emoji {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .bonus-cards__wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .bonus-cards__text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .welcome-bonus__content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

.tournament-card {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.tournament-card__container {
    background-color: #3a3a9e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid #4a4ab0;
    position: relative;
}

.tournament-card__content {
    display: flex;
    min-height: 250px;
    background: linear-gradient(to right, rgb(58 58 158 / 49%) 50%, transparent), url(assets/tournament.webp);
    background-size: cover;
    background-position: right center;
    padding: 2rem;
    position: relative;
}

.tournament-card__info {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 1;
}

.tournament-card__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tournament-card__prize-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tournament-card__prize-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffb700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tournament-card__details {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.tournament-card__detail {
    display: flex;
    flex-direction: column;
}

.tournament-card__detail-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tournament-card__detail-value {
    font-size: 1.25rem;
    font-weight: 700;
}

#tournament-countdown {
    color: #ffb700;
    font-family: monospace;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

#tournament-countdown.ending-soon {
    color: #ff5500;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.tournament-card__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e91e63;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 1;
}

.tournament-card__footer {
    background-color: #2a54d2;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tournament-card__action-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 2px 2px rgba(0, 0, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
    cursor: pointer;
}

.tournament-card__action-button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

.tournament-card__action-button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ff7e00;
}

.tournament-card__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.tournament-card__button-icon {
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.text-link {
    color: #faa701;
}

/* Inline links within text content */
.text a {
    color: #faa701;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.text a:hover {
    color: #ffb733;
    text-decoration-thickness: 2px;
    text-shadow: 0 0 8px rgba(250, 167, 1, 0.3);
}

.tournament-card__button:hover .tournament-card__button-icon {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .tournament-card__content {
        flex-direction: column;
        background-size: cover;
        background-position: center;
        padding: 1.5rem;
    }
    
    .tournament-card__info {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .tournament-card__title {
        font-size: 2rem;
    }
    
    .tournament-card__prize-amount {
        font-size: 2rem;
    }
    
    .tournament-card__details {
        gap: 1rem;
    }
    
    .tournament-card__footer {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .tournament-card__title {
        font-size: 1.75rem;
    }
    
    .tournament-card__prize-amount {
        font-size: 1.75rem;
    }
    
    .tournament-card__details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tournament-card__footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.game-grid {
    padding: 2rem 0;
    background-color: #1c3788;
    color: white;
}

.game-grid__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.game-grid__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
}

.game-grid__subtitle {
    /* This class is now replaced by .text */
}

.game-grid__games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.game-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    aspect-ratio: 3/4;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.game-card__link {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 1rem 0.5rem 0.5rem;
    text-align: center;
}

.game-card__title {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.game-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 6px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid #ffcc00;
    border-bottom: 2px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 3px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 80px;
    white-space: nowrap;
}

.game-card:hover .game-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

@media (max-width: 992px) {
    .game-grid__games {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .game-grid__games {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-grid__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .game-grid__games {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .game-card__title {
        font-size: 0.8rem;
    }
    
    .game-grid__subtitle {
        /* This class is now replaced by .text */
    }
}

.casino-info {
    padding: 2rem 0;
    background-color: #1c3788;
    color: white;
}

.casino-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.casino-info__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

ol {
    padding-left: 1.5rem;
    padding-bottom: 1rem;
    list-style-type: decimal;
}

ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

ol li:last-child {
    margin-bottom: 0;
}

ul {
    padding-left: 1.5rem;
    padding-bottom: 1rem;
    list-style-type: disc;
}

ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

ul li:last-child {
    margin-bottom: 0;
}

.promotions__container ul,
.promotions__container ol {
    margin-top: 1rem;
}

.casino-info__icon {
    font-size: 1.75rem;
}

.casino-info__icon-small {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    display: inline-block;
    width: 1.5rem;
}

.casino-info__table {
    background-color: rgba(42, 84, 210, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-info__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-info__row:last-child {
    border-bottom: none;
}

.casino-info__row:nth-child(odd) {
    background-color: rgba(42, 84, 210, 0.3);
}

.casino-info__cell {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.casino-info__cell--label {
    flex: 0 0 35%;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(42, 84, 210, 0.2);
}

.casino-info__cell--value {
    flex: 1;
}

@media (max-width: 768px) {
    .casino-info {
        padding: 3rem 0;
    }
    
    .casino-info__title {
        font-size: 1.75rem;
    }
    
    .casino-info__row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .casino-info__cell--label,
    .casino-info__cell--value {
        flex: 0 0 50%;
        border: none;
        padding: 0.75rem 1rem;
    }
    
    .casino-info__cell--label {
        font-size: 0.9rem;
        background-color: rgba(42, 84, 210, 0.2);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .casino-info__cell--value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .casino-info__cell--label,
    .casino-info__cell--value {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .casino-info__icon-small {
        font-size: 1rem;
        margin-right: 0.3rem;
        width: 1.2rem;
    }
}

.pros-cons {
    padding: 2rem 0;
    background-color: #1c3788;
    color: white;
}

.pros-cons__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pros-cons__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
}

.pros-cons__table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pros-cons__row {
    display: flex;
    gap: 1rem;
}

.pros-cons__cell {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 80px;
}

.pros-cons__cell--advantage {
    border: 1px solid rgba(76, 209, 55, 0.3);
}

.pros-cons__cell--disadvantage {
    border: 1px solid rgba(200, 200, 200, 0.3);
}

.pros-cons__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.pros-cons__icon--advantage {
    background-color: #4cd137;
}

.pros-cons__icon--advantage::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.pros-cons__icon--disadvantage {
    background-color: #c8c8c8;
}

.pros-cons__icon--disadvantage::before {
    content: "✕";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.pros-cons__text {
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .pros-cons {
        padding: 3rem 0;
    }
    
    .pros-cons__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .pros-cons__row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pros-cons__cell {
        padding: 1rem;
    }
}

.bonus-table {
    padding: 2rem 0;
    background-color: #1c3788;
    color: white;
}

.bonus-table__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-table__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.bonus-table__subtitle {
    /* This class is now replaced by .text */
}

.bonus-table__wrapper {
    background-color: rgba(42, 84, 210, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table__header {
    display: flex;
    background: linear-gradient(to bottom, #4786ee 0%, #2a54d2 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #234abc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bonus-table__header-cell {
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.bonus-table__header-cell:nth-child(1) {
    flex: 0 0 20%;
}

.bonus-table__header-cell:nth-child(2) {
    flex: 0 0 25%;
}

.bonus-table__header-cell:nth-child(3) {
    flex: 0 0 35%;
}

.bonus-table__header-cell:nth-child(4) {
    flex: 0 0 20%;
    border-right: none;
}

.bonus-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.bonus-table__row:last-child {
    border-bottom: none;
}

.bonus-table__row:nth-child(odd) {
    background-color: rgba(42, 84, 210, 0.3);
}

.bonus-table__row:hover {
    background-color: rgba(42, 84, 210, 0.5);
}

.bonus-table__cell {
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table__cell:last-child {
    border-right: none;
}

.bonus-table__cell--name {
    flex: 0 0 20%;
    font-weight: 700;
    color: #ffb700;
}

.bonus-table__cell--amount {
    flex: 0 0 25%;
}

.bonus-table__cell--conditions {
    flex: 0 0 35%;
}

.bonus-table__cell--rollover {
    flex: 0 0 20%;
}

.bonus-table__cell--type {
    flex: 0 0 30%;
}

.bonus-table__cell--benefit {
    flex: 0 0 50%;
}

@media (max-width: 992px) {
    .bonus-table__header,
    .bonus-table__row {
        flex-wrap: wrap;
    }
    
    .bonus-table__header-cell {
        flex: 1 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1rem;
        position: relative;
    }
    
    .bonus-table__header-cell:nth-child(1),
    .bonus-table__header-cell:nth-child(2),
    .bonus-table__header-cell:nth-child(3),
    .bonus-table__header-cell:nth-child(4) {
        flex: 1 0 50%;
    }
    
    .bonus-table__header-cell:nth-child(even) {
        border-right: none;
    }
    
    .bonus-table__cell {
        flex: 1 0 50% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1rem;
    }
    
    .bonus-table__cell:nth-child(even) {
        border-right: none;
    }
    
    .bonus-table__row .bonus-table__cell:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .bonus-table__cell--name,
    .bonus-table__cell--amount {
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .bonus-table {
        padding: 2.5rem 0;
    }
    
    .bonus-table__title {
        font-size: 1.75rem;
    }
    
    .bonus-table__subtitle {
        /* This class is now replaced by .text */
    }
    
    .bonus-table__row {
        padding: 0.75rem 0;
        flex-direction: column;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
    }
    
    .bonus-table__header {
        display: none;
    }
    
    .bonus-table__cell {
        flex: 1 0 100% !important;
        border-right: none;
        border-bottom: none !important;
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .bonus-table__cell::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
        flex: 0 0 80px;
        margin-right: 0.75rem;
    }
    
    .bonus-table__cell--name {
        font-size: 1rem;
        font-weight: 700;
        color: #ffb700;
        border-left: 3px solid #ffb700;
        background-color: rgba(255, 183, 0, 0.1);
    }
    
    .bonus-table__cell--amount {
        font-weight: 700;
        font-size: 0.95rem;
    }
    
    .bonus-table__cell--conditions {
        font-size: 0.85rem;
    }
    
    .bonus-table__cell--rollover {
        font-size: 0.85rem;
        font-style: italic;
    }
    
    .bonus-table__row:not(:last-child) {
        border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .bonus-table__cell {
        padding: 0.5rem 0.7rem;
    }
    
    .bonus-table__cell::before {
        flex: 0 0 70px;
        font-size: 0.75rem;
    }
    
    .bonus-table__cell--name {
        font-size: 0.95rem;
    }
    
    .bonus-table__cell--amount {
        font-size: 0.9rem;
    }
    
    .bonus-table__cell--conditions,
    .bonus-table__cell--rollover {
        font-size: 0.8rem;
    }
}

.rwerjk-casino {
    padding: 3rem 0;
    background-color: #1c3788;
    color: white;
}

.rwerjk-casino__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.rwerjk-casino h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
}

.rwerjk-casino h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: white;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: left;
}

.rwerjk-casino__content {
    max-width: 900px;
    margin: 0;
}

.rwerjk-casino__text {
    /* This class is now replaced by .text */
}

.rwerjk-casino__link {
    color: #ffb700;
    text-decoration: none;
    transition: color 0.2s;
}

.rwerjk-casino__link:hover {
    color: #ffc107;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rwerjk-casino {
        padding: 3rem 0;
    }
    
    .rwerjk-casino h2 {
        font-size: 2rem;
    }
    
    .rwerjk-casino h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .rwerjk-casino h2 {
        font-size: 1.75rem;
    }
    
    .rwerjk-casino h3 {
        font-size: 1.2rem;
    }
}

.welcome-bonus__emoji {
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .welcome-bonus {
        padding: 3rem 0;
    }
    
    .welcome-bonus__container {
        flex-direction: column;
    }
    
    .welcome-bonus__content-title {
        font-size: 1.5rem;
    }
    
    .welcome-bonus__option {
        padding: 0.5rem;
    }
    
    .welcome-bonus__option-icon {
        width: 40px;
        height: 40px;
    }
    
    .welcome-bonus__emoji {
        font-size: 2rem;
    }
}

.faq {
    padding: 2rem 2rem;

    color: white;
}

.faq__container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.faq__accordion {
    margin-top: 2.5rem;
}

.faq__item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(42, 84, 210, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: rgba(42, 84, 210, 0.4);
    position: relative;
}

.faq__question:hover {
    background-color: rgba(71, 134, 238, 0.5);
}

.faq__question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.faq__icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    transition: transform 0.3s;
}

.faq__icon::before, .faq__icon::after {
    content: '';
    position: absolute;
    background-color: #ffb700;
    transition: transform 0.3s;
}

.faq__icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.faq__icon::after {
    width: 3px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq__item.active .faq__question {
    background: linear-gradient(to bottom, #4786ee 0%, #2a54d2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq__item.active .faq__icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    background-color: rgba(42, 84, 210, 0.2);
    padding: 0 1.5rem;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 1.5rem;
}

.faq__answer .text {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .faq {
        padding: 1.5rem 1.5rem;
    }
    
    .faq__title {
        font-size: 1.75rem;
    }
    
    .faq__question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 1.5rem 1rem;
    }
    
    .faq__title {
        font-size: 1.5rem;
    }
    
    .faq__question {
        padding: 1rem;
    }
    
    .faq__question h3 {
        font-size: 0.95rem;
    }
    
    .faq__item.active .faq__answer {
        padding: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1c3788;
    color: white;
    padding: 3rem 0;
}

.footer__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo-img {
    height: auto;
    width: 150px;
    max-width: 100%;
}

.footer__content {
    max-width: 600px;
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer__copyright {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

.footer__links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer__link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer__link:hover {
    color: #4dabf7;
    opacity: 1;
}

.footer__badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.footer__badge {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__badge:hover {
    opacity: 1;
}

.footer__badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer__badge-link:hover {
    transform: translateY(-2px);
}

/* New page styles */
.main-content {
    flex-grow: 1;
}

.page-hero {
    background: linear-gradient(135deg, #1c3788 0%, #4dabf7 100%);
    color: white;
    padding: 2rem 0 4rem;
    text-align: center;
}

.page-hero__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.page-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.content-section {
    padding: 4rem 0;
    background-color: #1c3788;
    color: white;
}

.content-section__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.content-wrapper h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
}

.content-wrapper h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
}



.features-grid,
.tools-grid,
.usage-grid,
.sharing-grid,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card,
.tool-card,
.usage-card,
.sharing-card,
.right-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4dabf7;
    color: #212529;
}

.feature-card h4,
.tool-card h4,
.usage-card h4,
.sharing-card h4,
.right-card h4 {
    color: #212529 !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p,
.tool-card p,
.usage-card p,
.sharing-card p,
.right-card p {
    color: #212529 !important;
    margin: 0;
}

.feature-card h4,
.tool-card h4,
.usage-card h4,
.sharing-card h4,
.right-card h4 {
    color: #1c3788;
    margin-bottom: 0.5rem;
}

.warning-signs,
.data-list,
.legal-basis,
.security-measures,
.retention-list,
.usage-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.warning-signs li,
.data-list li,
.legal-basis li,
.security-measures li,
.retention-list li,
.usage-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.warning-signs li::before,
.data-list li::before,
.legal-basis li::before,
.security-measures li::before,
.retention-list li::before,
.usage-list li::before {
    content: "•";
    color: #4dabf7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 3rem;
    color: #212529 !important;
}

.steps-list li::before {
    content: counter(step-counter);
    background: #4dabf7;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    color: #212529 !important;
}

.help-card h4 {
    color: #212529 !important;
}

.help-card p {
    color: #212529 !important;
}

.help-card h4 {
    color: #1c3788;
    margin-bottom: 0.5rem;
}

.contact {
    font-weight: 600;
    color: #4dabf7;
    margin: 0.25rem 0;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-notice h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
    color: #212529 !important;
}

.cta-section h3 {
    color: #212529 !important;
}

.cta-section p {
    color: #212529 !important;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
    transform: translateY(-2px);
}

.last-updated {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #212529 !important;
}

.contact-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: #212529 !important;
}

.contact-section h3 {
    color: #212529 !important;
}

.contact-section p {
    color: #212529 !important;
}

.contact-info {
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    font-weight: 600;
    color: #212529 !important;
}

/* Ensure all text in light backgrounds is dark and readable - override the global .text class */
.feature-card,
.feature-card *,
.feature-card p,
.feature-card .text,
.tool-card,
.tool-card *,
.tool-card p,
.tool-card .text,
.usage-card,
.usage-card *,
.usage-card p,
.usage-card .text,
.sharing-card,
.sharing-card *,
.sharing-card p,
.sharing-card .text,
.right-card,
.right-card *,
.right-card p,
.right-card .text,
.help-card,
.help-card *,
.help-card p,
.help-card .text,
.cta-section,
.cta-section *,
.cta-section p,
.cta-section .text,
.contact-section,
.contact-section *,
.contact-section p,
.contact-section .text,
.last-updated,
.last-updated *,
.last-updated p,
.last-updated .text,
.steps-list li,
.steps-list li *,
.steps-list li p,
.steps-list li .text {
    color: #212529 !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .page-hero__title {
        font-size: 2.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .tools-grid,
    .usage-grid,
    .sharing-grid,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .help-organizations {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer__links {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer__link {
        font-size: 0.85rem;
    }
    
    .footer__badges {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .footer__badge {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 1rem 0 2rem;
    }
    
    .page-hero__title {
        font-size: 2rem;
    }
    
    .page-hero__subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.3rem;
    }
    
    .content-wrapper h4 {
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer__title {
        font-size: 1.1rem;
    }
    
    .footer__text {
        font-size: 0.85rem;
    }
    
    .footer__copyright {
        font-size: 0.75rem;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer__badges {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer__badge {
        height: 25px;
    }
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1c3788 0%, #2a54d2 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    border-top: 3px solid #4dabf7;
    transition: opacity 0.3s ease;
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner__content {
    flex: 1;
}

.cookie-banner__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-banner__text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.cookie-btn--primary {
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    color: white;
    border: 1px solid #74c0fc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-btn--primary:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cookie-btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn--tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    text-decoration: underline;
    padding: 0.7rem 1rem;
}

.cookie-btn--tertiary:hover {
    color: white;
}

/* Cookie Modal */
#cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 2rem;
}

.cookie-modal__content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.cookie-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c3788;
    margin: 0;
}

.cookie-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal__close:hover {
    background: #f8f9fa;
    color: #1c3788;
}

.cookie-modal__text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category__title {
    font-weight: 600;
    color: #1c3788;
    margin: 0;
}

.cookie-category__description {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle__slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background-color: #4dabf7;
}

.cookie-toggle input:checked + .cookie-toggle__slider:before {
    transform: translateX(26px);
}

.cookie-toggle__slider.disabled {
    background-color: #28a745;
    cursor: not-allowed;
}

.cookie-modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner__container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    #cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal__content {
        padding: 1.5rem;
    }
    
    .cookie-modal__actions {
        flex-direction: column;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #2a54d2 0%, #1e3c96 100%);
    padding: 2rem 0 4rem;
    color: white;
    text-align: center;
}

.page-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content Section */
.main-content {
    background-color: #141826;
    min-height: 60vh;
}

.content-section {
    padding: 3rem 0;
    color: white;
}

.content-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: white;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: white;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #4786ee;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box .text {
    margin-bottom: 0;
}

.pros-cons-section {
    margin: 3rem 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros-box,
.cons-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.pros-box {
    border: 2px solid #28a745;
}

.cons-box {
    border: 2px solid #ffc107;
}

.pros-cons-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pros-box .pros-cons-title {
    color: #28a745;
}

.cons-box .pros-cons-title {
    color: #ffc107;
}

.pros-cons-title::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pros-box .pros-cons-title::before {
    content: '✓';
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.cons-box .pros-cons-title::before {
    content: '!';
    background: #ffc107;
    color: #1c3788;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons-list li {
    margin-bottom: 1.25rem;
    padding-left: 0;
    line-height: 1.7;
}

.pros-cons-list li:last-child {
    margin-bottom: 0;
}

.pros-cons-list li strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero__title {
        font-size: 1.8rem;
    }
    
    .page-hero__subtitle {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 1.5rem 0 3rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.1rem;
    }
    
    /* General h2 on mobile */
    h2 {
        font-size: 1.35rem !important;
        line-height: 1.3;
    }
}

/* Content Images */
.content-images {
    text-align: center;
    margin: 2rem 0;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.game-providers {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.game-providers__title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: none;
}

.game-providers__scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.game-providers__scroll::-webkit-scrollbar {
    height: 5px;
}

.game-providers__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.game-providers__scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.game-providers__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35);
}

.game-providers__badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.game-providers__badge:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .game-providers {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .game-providers__title {
        font-size: 0.95rem;
    }
    
    .game-providers__badge {
        font-size: 0.8rem;
        padding: 0.45rem 0.95rem;
    }
}

.bonus-promo {
    background-color: #1c3788;
    padding: 2.5rem 0;
}

.bonus-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-promo__card {
    background: rgba(42, 84, 210, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(71, 134, 238, 0.3);
    transition: all 0.3s ease;
}

.bonus-promo__card:hover {
    transform: translateY(-5px);
    border-color: rgba(71, 134, 238, 0.6);
    background: rgba(42, 84, 210, 0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.bonus-promo__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.bonus-promo__icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.bonus-promo__title {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bonus-promo__text {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.5;
    margin: 0;
}

.bonus-promo__cta {
    text-align: center;
}

.bonus-promo__button {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
    letter-spacing: 0.03em;
}

.bonus-promo__button:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.6);
}

.bonus-promo__button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .bonus-promo__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .bonus-promo__card:last-child {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bonus-promo {
        padding: 2rem 0;
    }
    
    .bonus-promo__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-promo__card {
        padding: 1.25rem 1rem;
    }
    
    .bonus-promo__card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .bonus-promo__icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .bonus-promo__title {
        font-size: 0.95rem;
    }
    
    .bonus-promo__text {
        font-size: 0.8rem;
    }
    
    .bonus-promo__button {
        font-size: 0.95rem;
        padding: 0.7rem 2rem;
        width: 100%;
        max-width: 280px;
    }
} 