: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;
    line-height: 1.6;
    background-color: #1c3788;
}


h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    color: white;
    letter-spacing: 0.02em;
}


p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
}

p:last-child {
    margin-bottom: 0;
}


.text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    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) {
    p, .text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    p, .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.75rem;
    align-items: center;
}

.header__button {
    text-decoration: none;
    padding: 0.35rem 1.2rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    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%);
}

.zpea9-banner {
    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;
}

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

.zpea9-banner__content {
    width: 100%;
}

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

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

.zpea9-banner__bonus-icon {
    font-size: 2rem;
}

.zpea9-banner__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;
}

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

.zpea9-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);
    border-bottom: 1px solid #228be6;
}

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

    .zpea9-banner__title {
        font-size: 2rem;
    }

    .zpea9-banner__text {
        font-size: 1rem;
    }

    .zpea9-banner__bonus {
        font-size: 1.25rem;
    }

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

@media (max-width: 480px) {
    .header__auth {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .header__button {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

.jk7sx-intro {
    padding: 4rem 0 15px;
    color: white;
}

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

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

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

    .jk7sx-intro__title {
        font-size: 1.75rem;
    }
}

.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: 2rem 0;
    color: white;
    text-align: center;
}

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

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

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

.bonus-banner__button {
    display: inline-block;
    padding: 0.6rem 2.5rem;
    font-size: 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: 0;
}

.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: 1.5rem 0;
    }
    
    .bonus-banner__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .bonus-banner__tagline {
        font-size: 0.9rem;
    }
}

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

.casino-bonus {
    padding: 4rem 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;
    }
}

.v5tpq-brief {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #1c3788;
    color: white;
}

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

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

.v5tpq-brief__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding-bottom: 20px;
}

.v5tpq-brief__card {
    background: linear-gradient(135deg, #2a54d2 0%, #4786ee 100%);
    border-radius: 8px;
    padding: 1rem;
    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);
}

.v5tpq-brief__card:hover {
    transform: translateY(-3px);
}

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

.v5tpq-brief__value {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

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

@media (max-width: 480px) {
    .v5tpq-brief__grid {
        grid-template-columns: 1fr;
    }
    
    .v5tpq-brief__card {
        padding: 1.25rem;
    }
}

.v5tpq-brief__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: 100px;
    overflow: hidden;
}

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

.welcome-bonus {
    padding: 4rem 0 20px;
    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: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.welcome-bonus__header {
    text-align: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    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.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.welcome-bonus__option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #4786ee;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border: 2px solid transparent;
    min-height: 110px;
}

.welcome-bonus__option:hover {
    background-color: #5791f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.welcome-bonus__option--selected {
    border-color: #ffb700;
    background-color: #4186e8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.welcome-bonus__option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4786ee 0%, #2a54d2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.welcome-bonus__emoji {
    font-size: 2.25rem;
}

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

.welcome-bonus__option-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    letter-spacing: 0.03em;
}

.welcome-bonus__option-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.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: 100%;
    padding: 0.6rem;
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    text-transform: uppercase;
    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 #228be6;
}

.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: 1rem 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: 1rem;
    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.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

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

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

.tournament-card__details {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.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: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tournament-card__action-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    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;
    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;
}

.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;
    text-align: center;
    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;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.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;
    text-align: center;
    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-align: center;
    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 {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(42, 84, 210, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
}

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

.bonus-table__header-cell {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.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 {
    flex: 1;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    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%;
}

@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;
    }
}

.p9w3n-questions {
    padding: 4rem 2rem;
    color: white;
}

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

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

.p9w3n-questions__accordion {
    margin-top: 2.5rem;
}

.p9w3n-questions__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);
}

.p9w3n-questions__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;
}

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

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

.p9w3n-questions__icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    transition: transform 0.3s;
}

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

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

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

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

.p9w3n-questions__item.active .p9w3n-questions__icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.p9w3n-questions__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;
}

.p9w3n-questions__item.active .p9w3n-questions__answer {
    max-height: 300px;
    padding: 1.5rem;
}

.p9w3n-questions__answer .text {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .p9w3n-questions {
        padding: 3rem 1.5rem;
    }
    
    .p9w3n-questions__title {
        font-size: 1.75rem;
    }
    
    .p9w3n-questions__question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .p9w3n-questions {
        padding: 2.5rem 1rem;
    }
    
    .p9w3n-questions__title {
        font-size: 1.5rem;
    }
    
    .p9w3n-questions__question {
        padding: 1rem;
    }
    
    .p9w3n-questions__question h3 {
        font-size: 0.95rem;
    }
    
    .p9w3n-questions__item.active .p9w3n-questions__answer {
        padding: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a3696;
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.footer__logo-container {
    flex: 0 0 30%;
}

.footer__logo-img {
    height: auto;
    width: 180px;
    max-width: 100%;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.footer__links {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer__column {
    flex: 1;
}

.footer__column-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffb700;
}

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

.footer__menu li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #ffb700;
    text-decoration: underline;
}

.footer__middle {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__responsible {
    flex: 2;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer__age-limit {
    background-color: #e74c3c;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__responsible-text h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    color: #ffb700;
}

.footer__responsible-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.8;
    margin: 0;
}

.footer__payments {
    flex: 1;
}

.footer__payments h3 {
    font-size: 1rem;
    margin: 0 0 0.75rem;
    color: #ffb700;
}

.footer__payment-icons {
    display: flex;
    gap: 0.75rem;
}

.footer__payment-icon {
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__legal {
    margin-bottom: 1.5rem;
}

.footer__disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

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

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.footer__social-link:hover {
    background-color: #ffb700;
}

@media (max-width: 992px) {
    .footer__top {
        flex-direction: column;
    }
    
    .footer__logo-container {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer__links {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer__column {
        margin-bottom: 0;
    }
    
    .footer__column-title {
        margin-bottom: 0.5rem;
    }
    
    .footer__middle {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer__responsible {
        width: 100%;
    }
    
    .footer__payments {
        width: 100%;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer__social {
        margin-top: 0.5rem;
        justify-content: center;
    }
}
