* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #101045;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background-color: #0c0732;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.header__nav-link:hover,
.header__nav-link:focus {
    color: #ffd700;
    outline: none;
}

.header__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.header__btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-width: 100px;
}

.header__btn--login {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.header__btn--login:hover,
.header__btn--login:focus {
    background-color: #ffffff;
    color: #0c0732;
    outline: none;
}

.header__btn--register {
    background-color: #ffd700;
    color: #0c0732;
}

.header__btn--register:hover,
.header__btn--register:focus {
    background-color: #ffed4e;
    transform: translateY(-2px);
    outline: none;
}

.header__mobile-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    position: relative;
    width: 35px;
    height: 30px;
    justify-content: center;
}

.header__mobile-menu-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header__mobile-menu-line:nth-child(1) {
    top: 6px;
}

.header__mobile-menu-line:nth-child(2) {
    top: 13px;
}

.header__mobile-menu-line:nth-child(3) {
    top: 20px;
}

.header__mobile-menu--open .header__mobile-menu-line:nth-child(1) {
    top: 13px;
    transform: translateX(-50%) rotate(45deg);
}

.header__mobile-menu--open .header__mobile-menu-line:nth-child(2) {
    opacity: 0;
}

.header__mobile-menu--open .header__mobile-menu-line:nth-child(3) {
    top: 13px;
    transform: translateX(-50%) rotate(-45deg);
}

.main {
    min-height: calc(100vh - 80px);
}

.hero {
    background-image: url('images/bg.webp');
    background-size: cover;
    background-position: 90% center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 16, 69, 0.7);
    z-index: 1;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
}

.hero__cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0c0732;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero__cta:hover,
.hero__cta:focus {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    outline: none;
    animation: none;
}

.info-table {
    background-color: #101045;
    padding: 4rem 0;
}

.info-table__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info-table__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #0c0732;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-table__table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table__table tr:last-child {
    border-bottom: none;
}

.info-table__table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.info-table__label,
.info-table__value {
    padding: 1.2rem 1.5rem;
    text-align: left;
    vertical-align: top;
    color: #ffffff;
}

.info-table__label {
    font-weight: 600;
    background-color: rgba(255, 215, 0, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    width: 40%;
    font-size: 0.95rem;
}

.info-table__value {
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-table__value:contains("100%") {
    color: #ffd700;
    font-weight: 500;
}

.games-section {
    background-color: #0f0f3d;
    padding: 4rem 0;
}

.games-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.games-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.games-section__intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.games-section__intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.games-section__intro-image {
    text-align: center;
}

.games-section__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.games-section__live {
    margin-bottom: 4rem;
}

.games-section__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 2rem;
}

.games-section__live-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.games-section__live-image {
    text-align: center;
}

.games-section__live-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.games-section__slots,
.games-section__providers {
    margin-bottom: 4rem;
}

.games-section__slots p,
.games-section__providers p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.games-section__games-list {
    display: grid;
    gap: 1rem;
}

.games-section__game-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.games-section__game-item strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.games-section__providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.games-section__provider-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.games-section__provider-item strong {
    color: #ffd700;
}

.sports-section {
    background-color: #101045;
    padding: 4rem 0;
}

.sports-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sports-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.sports-section__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sports-section__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.sports-section__image {
    text-align: center;
}

.sports-section__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.payment-section {
    background-color: #0f0f3d;
    padding: 4rem 0;
}

.payment-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.payment-section__intro {
    margin-bottom: 3rem;
}

.payment-section__intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-section__tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.payment-section__table-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-section__table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-section__table thead th {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.payment-section__table tbody td {
    padding: 0.8rem 1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.payment-section__table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.payment-section__table tbody tr:last-child td {
    border-bottom: none;
}

.payment-section__instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.payment-section__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.payment-section__instruction-group p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.payment-section__steps {
    list-style: none;
    counter-reset: step-counter;
    margin: 0;
    padding: 0;
}

.payment-section__steps li {
    counter-increment: step-counter;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #ffd700;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
}

.payment-section__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffd700;
    color: #0f0f3d;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.bonus-section {
    background-color: #101045;
    padding: 4rem 0;
}

.bonus-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.bonus-section__intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.bonus-section__intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.bonus-section__intro-image {
    text-align: center;
}

.bonus-section__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.bonus-section__offers {
    margin-bottom: 4rem;
}

.bonus-section__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bonus-section__offer-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.bonus-section__offer-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.bonus-section__offer-item--featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-left: 4px solid #ffd700;
    position: relative;
}

.bonus-section__offer-item--featured::before {
    content: "⭐";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.bonus-section__offer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.bonus-section__offer-value {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 500;
}

.bonus-section__signup {
    margin-bottom: 4rem;
}

.bonus-section__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 2rem;
}

.bonus-section__signup-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.bonus-section__signup-image {
    text-align: center;
}

.bonus-section__signup-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.bonus-section__signup-text p:last-child {
    margin-bottom: 0;
}

.bonus-section__signup-footer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-top: 2rem;
    margin-bottom: 0;
}

.bonus-section__security p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.bonus-section__security-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bonus-section__security-list li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    position: relative;
    padding-left: 3rem;
}

.bonus-section__security-list li::before {
    content: "🔒";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.faq-section {
    background: #0f0f3d;
    padding: 80px 0;
}

.faq-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section__title {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

.faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-section__item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-section__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.faq-section__question {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-section__answer {
    color: #e0e0e0;
    line-height: 1.7;
}

.faq-section__answer p {
    margin-bottom: 15px;
}

.faq-section__answer p:last-child {
    margin-bottom: 0;
}

.footer {
    background: #0a0a2a;
    padding: 40px 0;
    border-top: 2px solid #ffd700;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    text-align: center;
}

.footer__copyright {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer__disclaimer {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .header__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
        position: relative;
    }
    
    .header__mobile-menu {
        display: flex;
        order: 2;
    }
    
    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0c0732;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .header__nav--open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header__nav-list {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .header__actions {
        order: 3;
        gap: 0.5rem;
    }
    
    .header__btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: 85px;
    }
    
    .hero {
        background-image: url('images/bg2.webp');
        min-height: 80vh;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: auto;
        max-width: none;
        display: inline-block;
        white-space: nowrap;
    }
    
    .header__logo-img {
        height: 32px;
    }
    
    .info-table {
        padding: 2rem 0;
    }
    
    .info-table__table {
        border-radius: 8px;
    }
    
    .info-table__label,
    .info-table__value {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .info-table__label {
        width: 45%;
    }
    
    .games-section {
        padding: 3rem 0;
    }
    
    .games-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .games-section__intro,
    .games-section__live-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-section__subtitle {
        font-size: 1.5rem;
    }
    
    .games-section__providers-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-section {
        padding: 3rem 0;
    }
    
    .sports-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .sports-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-section {
        padding: 3rem 0;
    }
    
    .payment-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .payment-section__tables,
    .payment-section__instructions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-section__table {
        font-size: 0.9rem;
    }
    
    .payment-section__subtitle {
        font-size: 1.5rem;
    }
    
    .bonus-section {
        padding: 3rem 0;
    }
    
    .bonus-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .bonus-section__intro,
    .bonus-section__signup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-section__offers-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-section__subtitle {
        font-size: 1.5rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-section__item {
        padding: 20px;
    }
    
    .faq-section__question {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer__copyright {
        font-size: 1rem;
    }
    
    .footer__disclaimer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header__actions {
        gap: 0.25rem;
    }
    
    .header__btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 75px;
    }
    
    .hero__container {
        padding: 1.5rem 0.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .hero__content {
        max-width: calc(100vw - 1rem);
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
        text-align: center;
        width: 100%;
    }
    
    .hero__cta {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        width: auto;
        max-width: calc(100vw - 4rem);
        display: inline-block;
        text-align: center;
        box-sizing: border-box;
    }
    
    .header__logo-img {
        height: 28px;
    }
    
    .header__container {
        padding: 0 0.75rem;
    }
    
    .info-table {
        padding: 1.5rem 0;
    }
    
    .info-table__container {
        padding: 0 0.75rem;
    }
    
    .info-table__table {
        border-radius: 6px;
    }
    
    .info-table__label,
    .info-table__value {
        padding: 0.8rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .info-table__label {
        width: 50%;
    }
    
    .games-section {
        padding: 2rem 0;
    }
    
    .games-section__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .games-section__subtitle {
        font-size: 1.3rem;
    }
    
    .games-section__intro-content p,
    .games-section__live-text p,
    .games-section__slots p,
    .games-section__providers p {
        font-size: 1rem;
    }
    
    .games-section__game-item,
    .games-section__provider-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .sports-section {
        padding: 2rem 0;
    }
    
    .sports-section__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .sports-section__text p {
        font-size: 1rem;
    }
    
    .payment-section {
        padding: 2rem 0;
    }
    
    .payment-section__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-section__intro p,
    .payment-section__instruction-group p {
        font-size: 1rem;
    }
    
    .payment-section__subtitle {
        font-size: 1.3rem;
    }
    
    .payment-section__table thead th {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .payment-section__table tbody td {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .payment-section__steps li {
        padding: 0.8rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .payment-section__steps li::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .bonus-section {
        padding: 2rem 0;
    }
    
    .bonus-section__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-section__intro-content p,
    .bonus-section__signup-text p,
    .bonus-section__signup-footer,
    .bonus-section__security p {
        font-size: 1rem;
    }
    
    .bonus-section__subtitle {
        font-size: 1.3rem;
    }
    
    .bonus-section__offer-item {
        padding: 1.2rem;
    }
    
    .bonus-section__offer-title {
        font-size: 1rem;
    }
    
    .bonus-section__offer-value {
        font-size: 0.9rem;
    }
    
    .bonus-section__security-list li {
        padding: 1rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }
}

.bonus-section__security-list li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.bonus-hero {
    background: linear-gradient(135deg, #1a1a4f 0%, #2a2a6f 100%);
    padding: 3rem 0;
}

.bonus-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.bonus-hero__title {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bonus-hero__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-signup {
    background-color: #161653;
    padding: 4rem 0;
}

.bonus-signup__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-signup__title {
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-signup__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bonus-signup__content {
    background-color: #1e1e5a;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bonus-signup__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.bonus-signup__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonus-signup__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.bonus-signup__content p:last-child {
    margin-bottom: 0;
}

.bonus-signup__additional {
    background-color: #1e1e5a;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-top: 3rem;
}

.bonus-signup__additional p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.bonus-signup__additional p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .bonus-hero__title {
        font-size: 2rem;
    }
    
    .bonus-hero__text p {
        font-size: 1rem;
    }
    
    .bonus-signup__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-signup__title {
        font-size: 1.8rem;
    }
    
    .bonus-signup__content {
        padding: 1.5rem;
    }
    
    .bonus-signup__content p {
        font-size: 1rem;
    }
    
    .bonus-signup__image {
        order: -1;
        padding-top: 0;
    }
    
    .bonus-signup__additional {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .bonus-signup__additional p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-hero {
        padding: 2rem 0;
    }
    
    .bonus-hero__title {
        font-size: 1.7rem;
    }
    
    .bonus-signup {
        padding: 2.5rem 0;
    }
    
    .bonus-signup__title {
        font-size: 1.6rem;
    }
    
    .bonus-signup__content {
        padding: 1rem;
    }
    
    .bonus-signup__content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .bonus-signup__additional {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .bonus-signup__additional p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.login-hero {
    background-color: #0c0732;
    padding: 4rem 0;
}

.login-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.login-hero__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-guide {
    background-color: #101045;
    padding: 4rem 0;
}

.login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-guide__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.login-guide__intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.login-guide__intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.login-guide__intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-guide__steps {
    display: grid;
    gap: 2rem;
}

.login-guide__step {
    background-color: #1a1a5c;
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-guide__step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.login-guide__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.login-guide__step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

@media (max-width: 768px) {
    .login-hero__title {
        font-size: 2rem;
    }

    .login-hero__text p {
        font-size: 1rem;
    }

    .login-guide__title {
        font-size: 1.7rem;
    }

    .login-guide__intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .login-guide__step {
        padding: 1.5rem;
    }

    .login-guide__step-title {
        font-size: 1.2rem;
    }

    .login-guide__step-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-hero {
        padding: 3rem 0;
    }

    .login-hero__title {
        font-size: 1.7rem;
    }

    .login-hero__text p {
        font-size: 0.95rem;
    }

    .login-guide {
        padding: 3rem 0;
    }

    .login-guide__title {
        font-size: 1.5rem;
    }

    .login-guide__step {
        padding: 1.2rem;
    }

    .login-guide__step-title {
        font-size: 1.1rem;
    }

    .login-guide__step-text {
        font-size: 0.9rem;
    }
}

.login-process {
    background-color: #161653;
    padding: 4rem 0;
}

.login-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-process__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.login-process__intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.login-process__intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.login-process__intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-process__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-process__steps {
    background-color: #1e1e5a;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.login-process__list {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.login-process__list li {
    counter-increment: step-counter;
    padding: 1rem 0;
    position: relative;
    padding-left: 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-process__list li:last-child {
    border-bottom: none;
}

.login-process__list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffd700;
    color: #0c0732;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.login-process__note {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    font-style: italic;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-verification {
    background-color: #101045;
    padding: 4rem 0;
}

.login-verification__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-verification__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.login-verification__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.login-verification__text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.login-verification__text p:last-child {
    margin-bottom: 0;
}

.login-verification__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-verification__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-support {
    background-color: #161653;
    padding: 4rem 0;
}

.login-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-support__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.login-support__content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-support__table {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.login-support__contact-table {
    background-color: #1e1e5a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-collapse: collapse;
    min-width: 500px;
}

.login-support__contact-table thead th {
    background-color: #ffd700;
    color: #0c0732;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.login-support__contact-table tbody td {
    padding: 1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-support__contact-table tbody tr:last-child td {
    border-bottom: none;
}

.login-support__contact-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .login-process__title,
    .login-verification__title,
    .login-support__title {
        font-size: 1.7rem;
    }

    .login-process__intro,
    .login-verification__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .login-process__steps {
        padding: 1.5rem;
    }

    .login-process__list li {
        font-size: 1rem;
        padding-left: 2.5rem;
    }

    .login-process__list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }

    .login-process__note {
        font-size: 0.95rem;
    }

    .login-verification__text p {
        font-size: 1rem;
    }

    .login-support__content p {
        font-size: 1rem;
    }

    .login-support__contact-table {
        min-width: auto;
        width: 100%;
    }

    .login-support__contact-table thead th,
    .login-support__contact-table tbody td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login-process,
    .login-verification,
    .login-support {
        padding: 3rem 0;
    }

    .login-process__title,
    .login-verification__title,
    .login-support__title {
        font-size: 1.5rem;
    }

    .login-process__steps {
        padding: 1rem;
    }

    .login-process__list li {
        font-size: 0.95rem;
        padding-left: 2rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .login-process__list li::before {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.7rem;
    }

    .login-process__note {
        font-size: 0.9rem;
    }

    .login-verification__text p {
        font-size: 0.95rem;
    }

    .login-support__content p {
        font-size: 0.95rem;
    }

    .login-support__contact-table thead th,
    .login-support__contact-table tbody td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}

.inl {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.inl:hover {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffd700;
}