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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #e1e7f7;
}

.header {
    background-color: #1e4a8c;
    padding: 0.75rem 0;
    position: relative;
}

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

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.header__hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

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

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

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

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

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.header__nav-item {
    position: relative;
}

.header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header__nav-link:hover {
    color: rgb(253, 205, 1);
}

.header__nav-link:focus {
    outline: 2px solid rgb(253, 205, 1);
    outline-offset: 2px;
}

.header__login-btn {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header__login-btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.header__login-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.header__login-btn:active {
    transform: translateY(0);
}

.hero {
    padding: 1rem 0;
    color: #1e4a8c;
    position: relative;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 100%;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    border: 1px solid rgba(30, 74, 140, 0.1);
}

.hero__feature-icon {
    font-size: 1.5rem;
}

.hero__feature-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e4a8c;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.hero__btn--primary {
    background-color: #1e4a8c;
    color: #ffffff;
}

.hero__btn--primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 74, 140, 0.3);
}

.hero__btn--secondary {
    background-color: transparent;
    color: #1e4a8c;
    border-color: #1e4a8c;
}

.hero__btn--secondary:hover {
    background-color: #1e4a8c;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__stars {
    display: flex;
    gap: 0.25rem;
}

.hero__star {
    color: rgb(253, 205, 1);
    font-size: 1.5rem;
}

.hero__rating-text {
    font-weight: 600;
    font-size: 1rem;
    color: #1e4a8c;
}

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

.hero__img {
    max-width: 100%;
    height: auto;
}

.about {
    padding: 1rem 0;
}

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

.about__content {
    max-width: 100%;
}

.about__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

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

.about__img {
    max-width: 60%;
    height: auto;
    border-radius: 0.5rem;
}

.games {
    padding: 1rem 0;
}

.games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.games__content {
    max-width: 100%;
}

.games__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.games__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.games__list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.games__item {
    font-size: 16px;
    line-height: 1.4;
    color: #283645;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.375rem;
    border: 1px solid rgba(30, 74, 140, 0.1);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.games__item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(30, 74, 140, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(30, 74, 140, 0.1);
}

.games__item::before {
    content: "🎰";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.games__item {
    padding-left: 2.5rem;
}

.slots {
    padding: 1rem 0;
}

.slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.slots__content {
    max-width: 100%;
}

.slots__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.slots__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.slots__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 2rem;
}

.slots__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.slots__img {
    max-width: 80%;
    height: auto;
    border-radius: 0.5rem;
}

.slots__cta {
    display: flex;
    justify-content: center;
}

.slots__btn {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.slots__btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.slots__btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.slots__btn:active {
    transform: translateY(0);
}

.live-games {
    padding: 1rem 0;
}

.live-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.live-games__content {
    max-width: 100%;
}

.live-games__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.live-games__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.live-games__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.app {
    padding: 1rem 0;
}

.app__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.app__content {
    max-width: 100%;
}

.app__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.app__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.bonus {
    padding: 1rem 0;
}

.bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.bonus__content {
    max-width: 100%;
}

.bonus__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.bonus__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.bonus__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.bonus__img {
    max-width: 80%;
    height: auto;
    border-radius: 0.5rem;
}

.welcome-bonus {
    padding: 1rem 0;
}

.welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.welcome-bonus__content {
    max-width: 100%;
}

.welcome-bonus__content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e4a8c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.welcome-bonus__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e4a8c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-bonus__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.welcome-bonus__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.welcome-bonus__img {
    max-width: 80%;
    height: auto;
    border-radius: 0.5rem;
}

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

.welcome-bonus__item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
}

.welcome-bonus__item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e4a8c;
    margin-bottom: 1rem;
}

.welcome-bonus__item ol,
.welcome-bonus__item ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.welcome-bonus__item li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.welcome-bonus__cta {
    text-align: center;
    margin-top: 2rem;
}

.welcome-bonus__btn {
    display: inline-block;
    background-color: #1e4a8c;
    color: #ffffff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.welcome-bonus__btn:hover {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c;
    transform: translateY(-2px);
}

.welcome-bonus__btn:focus {
    outline: 2px solid rgb(253, 205, 1);
    outline-offset: 2px;
}

.welcome-bonus__btn:active {
    transform: translateY(0);
}

.welcome-bonus__list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.welcome-bonus__list li {
    margin-bottom: 1rem;
    line-height: 1.5;
    position: relative;
}

.welcome-bonus__list li::marker {
    color: #1e4a8c;
}

.sports-bonus {
    padding: 1rem 0;
}

.sports-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sports-bonus__content {
    max-width: 100%;
}

.sports-bonus__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.sports-bonus__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.sports-bonus__image {
    margin: 2rem 0;
    text-align: center;
}

.sports-bonus__img {
    max-width: 80%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
}

.sports-bonus__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.sports-bonus__feature {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
    text-align: center;
}

.sports-bonus__feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e4a8c;
    margin-bottom: 1rem;
}

.sports-bonus__feature p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

.free-spins {
    padding: 1rem 0;
}

.free-spins__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.free-spins__content {
    max-width: 100%;
}

.free-spins__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.free-spins__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 2rem;
}

.free-spins__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.free-spins__list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.free-spins__list li::before {
    content: "🎰";
    position: absolute;
    left: 0;
    top: 0;
}

.free-spins__image {
    margin: 2rem 0;
    text-align: center;
}

.free-spins__img {
    max-width: 80%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
}

.free-spins__cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.free-spins__btn {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.free-spins__btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.free-spins__btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.free-spins__btn:active {
    transform: translateY(0);
}

.license {
    padding: 1rem 0;
}

.license__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.license__content {
    max-width: 100%;
}

.license__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.license__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.license__cta {
    display: flex;
    justify-content: center;
}

.license__btn {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.license__btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.license__btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.license__btn:active {
    transform: translateY(0);
}

.customer-support {
    padding: 1rem 0;
}

.customer-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.customer-support__content {
    max-width: 100%;
}

.customer-support__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.customer-support__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.customer-support__img {
    max-width: 80%;
    height: auto;
    border-radius: 0.5rem;
}

.customer-support__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.faq {
    padding: 1rem 0;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq__content {
    max-width: 100%;
}

.faq__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1e4a8c;
    text-align: center;
}

.faq__item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 74, 140, 0.1);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.faq__question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e4a8c;
    padding: 1.25rem;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.faq__question::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq__item--active .faq__question {
    background-color: rgba(30, 74, 140, 0.05);
}

.faq__item--active .faq__question::after {
    content: "-";
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.2s ease;
    padding: 0 1.25rem;
    opacity: 0;
}

.faq__item--active .faq__answer {
    max-height: 1000px;
    padding: 0 1.25rem 1.25rem 1.25rem;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in, padding 0.2s ease;
}

.faq__answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #283645;
    margin: 0;
}

.footer {
    background-color: #001f4d;
    padding: 2rem 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__content {
    text-align: center;
}

.footer__copyright {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}

.loyalty__levels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.loyalty__level {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
}

.loyalty__level h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e4a8c;
    margin-bottom: 1rem;
    text-align: center;
}

.loyalty__level ul {
    list-style: none;
    padding: 0;
}

.loyalty__level li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.loyalty__level li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1e4a8c;
}

.seasonal__current {
    margin-top: 2rem;
}

.seasonal__current h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e4a8c;
    margin-bottom: 1.5rem;
}

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

.seasonal__item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
    position: relative;
}

.seasonal__item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e4a8c;
    margin-bottom: 1rem;
}

.seasonal__item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.seasonal__date {
    display: inline-block;
    font-size: 0.85rem;
    color: #718096;
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
}

.bonus-intro {
    padding: 2rem 0;
}

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

.bonus-intro__content {
    max-width: 100%;
}

.bonus-intro__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 2rem;
}

.bonus-intro__content a {
    color: #1e4a8c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bonus-intro__content a:hover {
    color: rgb(253, 205, 1);
    text-decoration: underline;
}

.bonus-intro__cta {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.bonus-intro__btn {
    display: inline-block;
    background-color: #1e4a8c;
    color: #ffffff !important;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.bonus-intro__btn:hover {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c !important;
    transform: translateY(-2px);
}

.bonus-intro__btn:focus {
    outline: 2px solid rgb(253, 205, 1);
    outline-offset: 2px;
}

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

@media (max-width: 768px) {
    .bonus-intro {
        padding: 1.5rem 0;
    }
    
    .bonus-intro__container {
        padding: 0 1rem;
    }
    
    .bonus-intro__content p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .bonus-intro {
        padding: 1.25rem 0;
    }
    
    .bonus-intro__content p {
        font-size: 0.95rem;
    }
    
    .bonus-intro__btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .header__hamburger {
        display: flex;
        order: -1;
    }
    
    .header__right {
        gap: 1rem;
    }
    
    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1e4a8c;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header__nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .header__nav-item {
        width: 100%;
        text-align: center;
    }
    
    .header__nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header__nav-link:last-child {
        border-bottom: none;
    }
    
    .header__login-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .hero {
        padding: 3rem 0;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .hero__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .hero__feature {
        padding: 0.5rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hero__feature-icon {
        font-size: 1.25rem;
    }
    
    .hero__feature-text {
        font-size: 0.85rem;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__btn {
        width: 100%;
        max-width: 300px;
    }

    .about {
        padding: 2rem 0;
    }
    
    .about__container {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .about__content p {
        font-size: 1.1rem;
    }

    .about__img {
        max-width: 100%;
    }

    .games {
        padding: 1.5rem 0;
    }
    
    .games__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .games__content h2 {
        font-size: 1.75rem;
    }
    
    .games__content p, 
    .games__item {
        font-size: 1.1rem;
    }

    .slots {
        padding: 1.5rem 0;
    }
    
    .slots__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .slots__content h2 {
        font-size: 1.75rem;
    }
    
    .slots__content h3 {
        font-size: 1.25rem;
    }
    
    .slots__content p {
        font-size: 1.1rem;
    }
    
    .slots__btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .slots__img {
        max-width: 100%;
    }

    .live-games {
        padding: 1.5rem 0;
    }
    
    .live-games__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .live-games__content h2 {
        font-size: 1.75rem;
    }
    
    .live-games__content h3 {
        font-size: 1.25rem;
    }
    
    .live-games__content p {
        font-size: 1.1rem;
    }
    
    .app {
        padding: 1rem 0;
    }
    
    .app__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .app__content h2 {
        font-size: 1.75rem;
    }
    
    .app__content p {
        font-size: 1.1rem;
    }
    
    .bonus {
        padding: 1rem 0;
    }
    
    .bonus__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .bonus__content h2 {
        font-size: 1.75rem;
    }
    
    .bonus__content p {
        font-size: 1.1rem;
    }
    
    .bonus__img {
        max-width: 100%;
    }
    
    .welcome-bonus {
        padding: 1rem 0;
    }
    
    .welcome-bonus__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .welcome-bonus__content h3 {
        font-size: 1.25rem;
    }
    
    .welcome-bonus__content h2 {
        font-size: 1.75rem;
    }
    
    .welcome-bonus__content p {
        font-size: 1.1rem;
    }
    
    .sports-bonus {
        padding: 1rem 0;
    }
    
    .sports-bonus__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .sports-bonus__content h3 {
        font-size: 1.25rem;
    }
    
    .sports-bonus__content p {
        font-size: 1.1rem;
    }
    
    .free-spins {
        padding: 1rem 0;
    }
    
    .free-spins__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .free-spins__content h3 {
        font-size: 1.25rem;
    }
    
    .free-spins__content p {
        font-size: 1.1rem;
    }
    
    .free-spins__btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .license {
        padding: 1rem 0;
    }
    
    .license__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .license__content h2 {
        font-size: 1.75rem;
    }
    
    .license__content p {
        font-size: 1.1rem;
    }
    
    .license__btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .customer-support {
        padding: 1rem 0;
    }
    
    .customer-support__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .customer-support__content h2 {
        font-size: 1.75rem;
    }
    
    .customer-support__content p {
        font-size: 1.1rem;
    }
    
    .customer-support__img {
        max-width: 100%;
    }
    
    .faq {
        padding: 1rem 0;
    }
    
    .faq__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .faq__content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .faq__question {
        font-size: 1.1rem;
        padding: 0.875rem;
    }
    
    .faq__question::after {
        right: 0.875rem;
        font-size: 1.25rem;
    }
    
    .faq__answer {
        padding: 0 0.875rem;
    }
    
    .faq__item--active .faq__answer {
        padding: 0 0.875rem 0.875rem 0.875rem;
    }
    
    .faq__answer p {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer__container {
        padding: 0 1rem;
    }
    
    .footer__copyright {
        font-size: 0.9rem;
    }

    .welcome-bonus__details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sports-bonus__features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sports-bonus__img,
    .free-spins__img {
        max-width: 100%;
    }

    .loyalty__levels {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .seasonal__items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header__login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 2rem 0;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.35rem;
    }
    
    .hero__feature {
        padding: 0.35rem;
        min-height: 80px;
    }
    
    .hero__feature-icon {
        font-size: 1.2rem;
    }
    
    .hero__feature-text {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .hero__btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .about {
        padding: 1.5rem 0;
    }

    .about__content p {
        font-size: 1.1rem;
    }

    .games {
        padding: 1.5rem 0;
    }

    .games__content h2 {
        font-size: 1.75rem;
    }

    .games__content p,
    .games__item {
        font-size: 1.1rem;
    }

    .slots {
        padding: 1.5rem 0;
    }

    .slots__content h2 {
        font-size: 1.75rem;
    }

    .slots__content h3 {
        font-size: 1.25rem;
    }

    .slots__content p {
        font-size: 1.1rem;
    }
    
    .slots__btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .slots__img {
        max-width: 100%;
    }

    .live-games {
        padding: 1.5rem 0;
    }

    .live-games__content h2 {
        font-size: 1.75rem;
    }

    .live-games__content h3 {
        font-size: 1.25rem;
    }

    .live-games__content p {
        font-size: 1.1rem;
    }
    
    .app {
        padding: 1rem 0;
    }

    .app__content h2 {
        font-size: 1.75rem;
    }

    .app__content p {
        font-size: 1.1rem;
    }
    
    .bonus {
        padding: 1rem 0;
    }
    
    .bonus__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .bonus__content h2 {
        font-size: 1.75rem;
    }
    
    .bonus__content p {
        font-size: 1.1rem;
    }
    
    .bonus__img {
        max-width: 100%;
    }
    
    .welcome-bonus {
        padding: 1rem 0;
    }
    
    .welcome-bonus__content h3 {
        font-size: 1.25rem;
    }

    .welcome-bonus__content h2 {
        font-size: 1.75rem;
    }
    
    .welcome-bonus__content p {
        font-size: 1.1rem;
    }
    
    .sports-bonus {
        padding: 1rem 0;
    }

    .sports-bonus__content h3 {
        font-size: 1.25rem;
    }

    .sports-bonus__content p {
        font-size: 1.1rem;
    }
    
    .free-spins {
        padding: 1rem 0;
    }

    .free-spins__content h3 {
        font-size: 1.25rem;
    }

    .free-spins__content p {
        font-size: 1.1rem;
    }
    
    .free-spins__btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .license {
        padding: 1rem 0;
    }

    .license__content h2 {
        font-size: 1.75rem;
    }

    .license__content p {
        font-size: 1.1rem;
    }
    
    .license__btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .customer-support {
        padding: 1rem 0;
    }
    
    .customer-support__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .customer-support__content h2 {
        font-size: 1.75rem;
    }
    
    .customer-support__content p {
        font-size: 1.1rem;
    }
    
    .customer-support__img {
        max-width: 100%;
    }
    
    .faq {
        padding: 1rem 0;
    }
    
    .faq__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .faq__content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .faq__question {
        font-size: 1.1rem;
        padding: 0.875rem;
    }
    
    .faq__question::after {
        right: 0.875rem;
        font-size: 1.25rem;
    }
    
    .faq__answer {
        padding: 0 0.875rem;
    }
    
    .faq__item--active .faq__answer {
        padding: 0 0.875rem 0.875rem 0.875rem;
    }
    
    .faq__answer p {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 1.25rem 0;
    }
    
    .footer__container {
        padding: 0 1rem;
    }
    
    .footer__copyright {
        font-size: 0.85rem;
    }

    .welcome-bonus__item {
        padding: 1rem;
    }
    
    .welcome-bonus__item h3 {
        font-size: 1.1rem;
    }
    
    .sports-bonus__feature,
    .loyalty__level,
    .seasonal__item {
        padding: 1rem;
    }

    .loyalty__levels {
        grid-template-columns: 1fr;
    }
}

.recurring-promotions {
    padding: 1rem 0;
}

.recurring-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.recurring-promotions__content {
    max-width: 100%;
}

.recurring-promotions__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.recurring-promotions__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.vip-program {
    padding: 1rem 0;
}

.vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.vip-program__content {
    max-width: 100%;
}

.vip-program__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.vip-program__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 2rem;
}

.vip-program__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.vip-program__img {
    max-width: 80%;
    height: auto;
    border-radius: 0.5rem;
}

.vip-program__table {
    margin: 2rem 0;
    overflow-x: auto;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
}

.vip-table th {
    background-color: #1e4a8c;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.vip-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(30, 74, 140, 0.1);
    color: #283645;
    font-size: 1rem;
}

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

.vip-table tbody tr:nth-child(even) {
    background-color: rgba(30, 74, 140, 0.02);
}

.vip-program__cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.vip-program__btn {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.vip-program__btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.vip-program__btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.vip-program__btn:active {
    transform: translateY(0);
}

.how-to-get-bonus {
    padding: 1rem 0;
}

.how-to-get-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.how-to-get-bonus__content {
    max-width: 100%;
}

.how-to-get-bonus__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.how-to-get-bonus__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 2rem;
}

.how-to-get-bonus__list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.how-to-get-bonus__list li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 16px;
    color: #283645;
}

.how-to-get-bonus__list li strong {
    color: #1e4a8c;
    font-weight: 600;
}

.payments {
    padding: 1rem 0;
}

.payments__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.payments__content {
    max-width: 100%;
}

.payments__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.payments__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 1.5rem;
}

.payments__content a {
    color: #1e4a8c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.payments__content a:hover {
    color: rgb(253, 205, 1);
    text-decoration: underline;
}

.payments__list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.payments__item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #283645;
}

.payments__item::before {
    content: "💳";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.payments__item:nth-child(2)::before {
    content: "💰";
}

.payments__item:nth-child(3)::before {
    content: "₿";
}

.payments__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.payments__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.deposits {
    padding: 1rem 0;
}

.deposits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.deposits__content {
    max-width: 100%;
}

.deposits__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.deposits__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 2rem;
}

.deposits__content a {
    color: #1e4a8c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.deposits__content a:hover {
    color: rgb(253, 205, 1);
    text-decoration: underline;
}

.deposits__list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.deposits__list li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 16px;
    color: #283645;
}

.deposits__list li strong {
    color: #1e4a8c;
    font-weight: 600;
}

.deposits__cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.deposits__btn {
    background-color: rgb(253, 205, 1);
    color: #1e4a8c;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.deposits__btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.deposits__btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.deposits__btn:active {
    transform: translateY(0);
}

.withdrawals {
    padding: 1rem 0;
}

.withdrawals__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.withdrawals__content {
    max-width: 100%;
}

.withdrawals__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e4a8c;
}

.withdrawals__content p {
    font-size: 18px;
    line-height: 1.7;
    color: #283645;
    margin-bottom: 2rem;
}

.withdrawals__image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.withdrawals__img {
    max-width: 80%;
    height: auto;
    border-radius: 0.5rem;
}

.withdrawals__list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.withdrawals__list li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #283645;
}

.withdrawals__list li strong {
    color: #1e4a8c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .payments {
        padding: 1rem 0;
    }
    
    .payments__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .payments__content h2 {
        font-size: 1.75rem;
    }
    
    .payments__content p {
        font-size: 1.1rem;
    }
    
    .payments__img {
        max-width: 100%;
    }
    
    .deposits {
        padding: 1rem 0;
    }
    
    .deposits__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .deposits__content h2 {
        font-size: 1.75rem;
    }
    
    .deposits__content p {
        font-size: 1.1rem;
    }
    
    .deposits__list li {
        font-size: 1.1rem;
    }
    
    .deposits__btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .withdrawals {
        padding: 1rem 0;
    }
    
    .withdrawals__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .withdrawals__content h2 {
        font-size: 1.75rem;
    }
    
    .withdrawals__content p {
        font-size: 1.1rem;
    }
    
    .withdrawals__list li {
        font-size: 1.1rem;
    }
    
    .withdrawals__img {
        max-width: 100%;
    }
    
    .vip-program {
        padding: 1rem 0;
    }
    
    .vip-program__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .vip-program__content h2 {
        font-size: 1.75rem;
    }
    
    .vip-program__content p {
        font-size: 1.1rem;
    }
    
    .vip-program__table {
        overflow-x: visible;
    }
    
    .vip-table {
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    .vip-table thead {
        display: none;
    }
    
    .vip-table tbody {
        display: block;
    }
    
    .vip-table tbody tr {
        display: block;
        background-color: #ffffff;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(30, 74, 140, 0.1);
        border: 1px solid rgba(30, 74, 140, 0.1);
    }
    
    .vip-table tbody tr:nth-child(even) {
        background-color: #ffffff;
    }
    
    .vip-table td {
        display: block;
        padding: 0.5rem 0;
        border-bottom: none;
        text-align: left;
        position: relative;
        padding-left: 50%;
        font-size: 0.9rem;
    }
    
    .vip-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 0.5rem;
        width: 45%;
        font-weight: 600;
        color: #1e4a8c;
        text-align: left;
    }
    
    .vip-table td:first-child {
        background-color: #1e4a8c;
        color: #ffffff;
        font-weight: 600;
        text-align: center;
        padding: 0.75rem;
        margin: -1rem -1rem 0.5rem -1rem;
        border-radius: 0.5rem 0.5rem 0 0;
    }
    
    .vip-table td:first-child::before {
        display: none;
    }
    
    .recurring-promotions {
        padding: 1rem 0;
    }
    
    .recurring-promotions__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .recurring-promotions__content h2 {
        font-size: 1.75rem;
    }
    
    .recurring-promotions__content p {
        font-size: 1.1rem;
    }
    
    .how-to-get-bonus {
        padding: 1rem 0;
    }
    
    .how-to-get-bonus__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .how-to-get-bonus__content h2 {
        font-size: 1.75rem;
    }
    
    .how-to-get-bonus__content p {
        font-size: 1.1rem;
    }
    
    .how-to-get-bonus__list li {
        font-size: 1.1rem;
    }
} 