* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.hero {
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: 20% center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(53, 16, 56, 0.77);
    z-index: 1;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero__description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__cta {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero__cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation-play-state: paused;
}

.hero__cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
        transform: scale(1.02);
    }
}

.features {
    background-color: #461142;
    padding: 4rem 0;
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features__table tr {
    transition: background-color 0.3s ease;
}

.features__table tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.features__table tr:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features__title {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem 1rem;
    width: 280px;
    vertical-align: top;
}

.features__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1.5rem 1rem;
    vertical-align: top;
}

.features__summary {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features__summary p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.bonus {
    background-color: #461142;
    padding: 4rem 0;
}

.bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus__main-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bonus__intro {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus__intro-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.bonus__intro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.bonus__section {
    margin-bottom: 3rem;
}

.bonus__title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bonus__section > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bonus__welcome {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 2px solid #ff6b35;
}

.bonus__welcome-image {
    width: 150px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.bonus__welcome-content p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.bonus__list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.bonus__list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.bonus__list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    top: 0;
}

.bonus__list li strong {
    color: #ff6b35;
    font-weight: 600;
}

.bonus__section p strong {
    color: #ff6b35;
    font-weight: 600;
}

.bonus__section p:last-child {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-top: 1.5rem;
}

.games {
    background-color: #461142;
    padding: 4rem 0;
}

.games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.games__main-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.games__intro {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games__intro-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.games__intro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.games__section {
    margin-bottom: 3rem;
}

.games__title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.games__section > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.games__live {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 2px solid #ff6b35;
}

.games__live-image {
    width: 150px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.games__live-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.games__cta-wrapper {
    text-align: center;
    margin: 3rem 0;
}

.games__cta {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.games__cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.games__cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.payments {
    background-color: #461142;
    padding: 4rem 0;
}

.payments__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payments__main-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.payments__intro {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payments__intro-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.payments__intro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.payments__section {
    margin-bottom: 3rem;
}

.payments__title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.payments__section > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.payments__deposits {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 2px solid #ff6b35;
}

.payments__deposits-image {
    width: 150px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.payments__deposits-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.payments__table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payments__table th {
    background-color: rgba(255, 107, 53, 0.2);
    color: #ffd700;
    font-weight: 600;
    padding: 1rem 0.75rem;
    text-align: left;
    border-bottom: 2px solid #ff6b35;
}

.payments__table td {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.payments__table tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.payments__table tr:last-child td {
    border-bottom: none;
}

.support {
    background-color: #461142;
    padding: 80px 0;
    color: white;
}

.support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support__main-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.support__image-column {
    display: flex;
    justify-content: center;
}

.support__image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.support__text-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support__text-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.support__text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.license {
    background-color: #461142;
    padding: 80px 0;
    color: white;
}

.license__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.license__main-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.license__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.license__image-column {
    display: flex;
    justify-content: center;
}

.license__image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.license__text-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.license__text-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.license__text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.faq {
    background-color: #461142;
    padding: 80px 0;
    color: white;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__main-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq__list {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
}

.faq__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq__question-text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    line-height: 1.4;
}

.faq__answer {
    padding: 0 25px 25px 65px;
}

.faq__answer p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
}

.footer {
    background-color: #2a0a27;
    padding: 40px 0 20px;
    color: white;
    border-top: 2px solid #ffd700;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer__disclaimer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.footer__info {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.footer__responsible {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.footer__responsible-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.footer__responsible-text a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer__responsible-text a:hover {
    color: #fff;
}

.footer__copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer strong {
    color: #ffd700;
    font-weight: 600;
}

.header {
    background-color: #351038;
    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 {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo-img {
    height: 40px;
    width: auto;
}

.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: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.header__nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header__nav-link:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.header__buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 100px;
}

.header__btn--login {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.header__btn--login:hover {
    background-color: #fff;
    color: #351038;
}

.header__btn--register {
    background-color: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
}

.header__btn--register:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}

.header__btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.header__burger-line {
    width: 24px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.header__burger--active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 968px) {
    .hero {
        background-image: url('images/background-mobile.webp');
        min-height: 60vh;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    .hero__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .features__table {
        margin-bottom: 2rem;
    }
    
    .features__title {
        font-size: 1rem;
        padding: 1rem 0.75rem;
        width: 180px;
    }
    
    .features__description {
        font-size: 0.9rem;
        padding: 1rem 0.75rem;
    }
    
    .features__summary {
        padding: 1.5rem;
    }
    
    .features__summary p {
        font-size: 1rem;
    }
    
    .bonus {
        padding: 3rem 0;
    }
    
    .bonus__main-title {
        font-size: 2rem;
    }
    
    .bonus__intro {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .bonus__intro-image {
        width: 150px;
        align-self: center;
    }
    
    .bonus__title {
        font-size: 1.5rem;
    }
    
    .bonus__welcome {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .bonus__welcome-image {
        width: 120px;
        align-self: center;
    }
    
    .games {
        padding: 3rem 0;
    }
    
    .games__main-title {
        font-size: 2rem;
    }
    
    .games__intro {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .games__intro-image {
        width: 150px;
        align-self: center;
    }
    
    .games__title {
        font-size: 1.5rem;
    }
    
    .games__live {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .games__live-image {
        width: 120px;
        align-self: center;
    }
    
    .games__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .payments {
        padding: 3rem 0;
    }
    
    .payments__main-title {
        font-size: 2rem;
    }
    
    .payments__intro {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .payments__intro-image {
        width: 150px;
        align-self: center;
    }
    
    .payments__title {
        font-size: 1.5rem;
    }
    
    .payments__deposits {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .payments__deposits-image {
        width: 120px;
        align-self: center;
    }
    
    .payments__table th,
    .payments__table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .header__burger {
        display: flex;
    }
    
    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #351038;
        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;
        gap: 0;
        padding: 1rem 0;
    }
    
    .header__nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
    }
    
    .header__nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .header__buttons {
        gap: 0.75rem;
    }
    
    .header__btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 80px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero__container {
        padding: 2rem 0.75rem;
    }
    
    .hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .features {
        padding: 2rem 0;
    }
    
    .features__container {
        padding: 0 0.75rem;
    }
    
    .features__table {
        margin-bottom: 1.5rem;
    }
    
    .features__title {
        font-size: 0.9rem;
        padding: 0.75rem 0.5rem;
        width: 140px;
    }
    
    .features__description {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }
    
    .features__summary {
        padding: 1.25rem;
    }
    
    .features__summary p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .bonus {
        padding: 2rem 0;
    }
    
    .bonus__container {
        padding: 0 0.75rem;
    }
    
    .bonus__main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus__intro {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .bonus__intro-image {
        width: 280px;
    }
    
    .bonus__intro p {
        font-size: 1rem;
    }
    
    .bonus__section {
        margin-bottom: 2rem;
    }
    
    .bonus__title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .bonus__welcome {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .bonus__welcome-image {
        width: 220px;
    }
    
    .bonus__section > p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .bonus__list li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .games {
        padding: 2rem 0;
    }
    
    .games__container {
        padding: 0 0.75rem;
    }
    
    .games__main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .games__intro {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .games__intro-image {
        width: 280px;
    }
    
    .games__intro p {
        font-size: 1rem;
    }
    
    .games__section {
        margin-bottom: 2rem;
    }
    
    .games__title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .games__live {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .games__live-image {
        width: 220px;
    }
    
    .games__section > p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .games__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .payments {
        padding: 2rem 0;
    }
    
    .payments__container {
        padding: 0 0.75rem;
    }
    
    .payments__main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .payments__intro {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .payments__intro-image {
        width: 280px;
    }
    
    .payments__intro p {
        font-size: 1rem;
    }
    
    .payments__section {
        margin-bottom: 2rem;
    }
    
    .payments__title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .payments__deposits {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .payments__deposits-image {
        width: 220px;
    }
    
    .payments__section > p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .payments__table {
        font-size: 0.8rem;
    }
    
    .payments__table th,
    .payments__table td {
        padding: 0.5rem 0.25rem;
    }
    
    .payments__table th {
        font-size: 0.75rem;
    }
    
    .support {
        padding: 2rem 0;
    }

    .support__container {
        padding: 0 0.75rem;
    }

    .support__main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .support__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support__image {
        max-width: 280px;
    }

    .support__text-block {
        padding: 1.25rem;
    }

    .support__text-block p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }

    .license {
        padding: 2rem 0;
    }

    .license__container {
        padding: 0 0.75rem;
    }

    .license__main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .license__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .license__image {
        max-width: 280px;
    }

    .license__text-block {
        padding: 1.25rem;
    }

    .license__text-block p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .faq {
        padding: 2rem 0;
    }

    .faq__container {
        padding: 0 0.75rem;
    }

    .faq__main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .faq__list {
        gap: 1rem;
    }

    .faq__question {
        padding: 1.25rem;
        gap: 10px;
    }

    .faq__icon {
        font-size: 1.25rem;
    }

    .faq__question-text {
        font-size: 1rem;
        line-height: 1.3;
    }

    .faq__answer {
        padding: 0 1.25rem 1.25rem 2.75rem;
    }

    .faq__answer p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer__container {
        padding: 0 0.75rem;
    }

    .footer__content {
        gap: 1.5rem;
    }

    .footer__disclaimer {
        padding: 1rem;
    }

    .footer__responsible {
        padding: 1rem;
    }

    .footer__info,
    .footer__responsible-text {
        font-size: 0.85rem;
        text-align: left;
        line-height: 1.5;
    }

    .footer__copyright {
        padding-top: 1rem;
    }

    .footer__copyright p {
        font-size: 0.8rem;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header__container {
        padding: 0 0.75rem;
    }
    
    .header__logo-img {
        height: 32px;
    }
    
    .header__nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .header__buttons {
        gap: 0.5rem;
    }
    
    .header__btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: 70px;
    }
}

.bonus-page {
    background-color: #461142;
    padding: 4rem 0;
}

.bonus-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-page__main-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bonus-page__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-page__cta {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.bonus-page__cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation-play-state: paused;
}

.bonus-page__cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.bonus-page__content {
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-page__intro-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-page__intro-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.bonus-page__intro-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.bonus-page__highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 2px solid #ff6b35;
    text-align: center;
}

.bonus-page__highlight-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.bonus-page__highlight p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-page__section {
    margin-bottom: 2rem;
}

.bonus-page__title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.bonus-page__section > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-page__list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.bonus-page__list-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.bonus-page__list-item strong {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.bonus-page__cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-page__subtitle {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.bonus-page__welcome-section,
.bonus-page__casino-section,
.bonus-page__special-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-page__section-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.bonus-page__section-content {
    flex: 1;
}

.bonus-page__section-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-page__section-content p:last-child {
    margin-bottom: 0;
}

.bonus-page__bonus-types {
    margin-top: 1.5rem;
}

.bonus-page__bonus-type {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-page__bonus-type:last-child {
    margin-bottom: 0;
}

.bonus-page__bonus-type strong {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.bonus-page__bonus-type p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.bonus-page__bonus-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bonus-page__bonus-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.bonus-page__bonus-list li:last-child {
    margin-bottom: 0;
}

.bonus-page__bonus-list li strong {
    color: #ffd700;
    font-weight: 600;
}

@media (max-width: 968px) {
    .bonus-page__main-title {
        font-size: 2.2rem;
    }
    
    .bonus-page__intro-section {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-page__intro-image {
        width: 200px;
        margin: 0 auto;
    }
    
    .bonus-page__highlight {
        flex-direction: column;
    }
    
    .bonus-page__highlight-image {
        width: 200px;
        margin: 0 auto;
    }
    
    .bonus-page__title {
        font-size: 1.8rem;
    }
    
    .bonus-page__list-item {
        padding: 1.5rem;
    }
    
    .bonus-page__list-item strong {
        font-size: 1rem;
    }
    
    .bonus-page__subtitle {
        font-size: 1.5rem;
    }
    
    .bonus-page__welcome-section,
    .bonus-page__casino-section,
    .bonus-page__special-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .bonus-page__section-image {
        width: 200px;
        margin: 0 auto;
    }
    
    .bonus-page__bonus-type {
        padding: 1rem;
    }
    
    .bonus-page__bonus-list li {
        padding: 0.8rem;
    }
}

@media (max-width: 640px) {
    .bonus-page {
        padding: 2rem 0;
    }
    
    .bonus-page__container {
        padding: 0 0.5rem;
    }
    
    .bonus-page__main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-page__intro-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .bonus-page__intro-image {
        width: 180px;
    }
    
    .bonus-page__intro-content p {
        font-size: 1rem;
    }
    
    .bonus-page__highlight {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .bonus-page__highlight-image {
        width: 180px;
    }
    
    .bonus-page__highlight p {
        font-size: 1.1rem;
    }
    
    .bonus-page__title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-page__section > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-page__list-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    
    .bonus-page__list-item strong {
        font-size: 1rem;
    }
    
    .bonus-page__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-page__cta-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .bonus-page__subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-page__welcome-section,
    .bonus-page__casino-section,
    .bonus-page__special-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-page__section-image {
        width: 180px;
    }
    
    .bonus-page__section-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .bonus-page__bonus-type {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .bonus-page__bonus-type strong {
        font-size: 1rem;
    }
    
    .bonus-page__bonus-type p {
        font-size: 0.9rem;
    }
    
    .bonus-page__bonus-list {
        margin: 1rem 0;
    }
    
    .bonus-page__bonus-list li {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
}

.login-page {
    background-color: #461142;
    padding: 4rem 0;
}

.login-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page__main-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.login-page__intro-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-page__intro-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.login-page__intro-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.login-page__intro-content p:last-child {
    margin-bottom: 0;
}

.login-page__section {
    margin-bottom: 3rem;
}

.login-page__title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.login-page__subtitle {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.login-page__steps-section,
.login-page__verification-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-page__section-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.login-page__section-content {
    flex: 1;
}

.login-page__section-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.login-page__section-content p:last-child {
    margin-bottom: 0;
}

.login-page__steps {
    margin-bottom: 2rem;
}

.login-page__step {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.login-page__step:last-child {
    margin-bottom: 0;
}

.login-page__step strong {
    color: #ffd700;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.login-page__document-types {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.login-page__document-group {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-page__document-group strong {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.login-page__document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-page__document-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.login-page__document-list li:before {
    content: '•';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.login-page__document-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .login-page__main-title {
        font-size: 2.2rem;
    }
    
    .login-page__intro-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .login-page__intro-image {
        width: 250px;
        margin: 0 auto;
    }
    
    .login-page__title {
        font-size: 1.8rem;
    }
    
    .login-page__subtitle {
        font-size: 1.5rem;
    }
    
    .login-page__steps-section,
    .login-page__verification-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .login-page__section-image {
        width: 250px;
        margin: 0 auto;
    }
    
    .login-page__step {
        padding: 1rem;
    }
    
    .login-page__document-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .login-page__document-group {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .login-page {
        padding: 2rem 0;
    }
    
    .login-page__container {
        padding: 0 0.5rem;
    }
    
    .login-page__main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .login-page__intro-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .login-page__intro-image {
        width: 220px;
    }
    
    .login-page__intro-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .login-page__title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .login-page__subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .login-page__steps-section,
    .login-page__verification-section {
        padding: 1rem;
    }
    
    .login-page__section-image {
        width: 220px;
    }
    
    .login-page__section-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .login-page__step {
        padding: 0.8rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .login-page__step strong {
        font-size: 0.95rem;
    }
    
    .login-page__document-group {
        padding: 0.8rem;
    }
    
    .login-page__document-group strong {
        font-size: 1rem;
    }
    
    .login-page__document-list li {
        font-size: 0.9rem;
    }
}

.deposit-page {
    background-color: #461142;
    padding: 4rem 0;
}

.deposit-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-page__main-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.deposit-page__intro-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-page__intro-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.deposit-page__intro-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.deposit-page__intro-content p:last-child {
    margin-bottom: 0;
}

.deposit-page__section {
    margin-bottom: 3rem;
}

.deposit-page__title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.deposit-page__subtitle {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.deposit-page__deposit-section,
.deposit-page__withdrawal-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-page__section-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.deposit-page__section-content {
    flex: 1;
}

.deposit-page__section-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deposit-page__section-content p:last-child {
    margin-bottom: 0;
}

.deposit-page__steps-list,
.deposit-page__withdrawal-steps {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    counter-reset: step-counter;
}

.deposit-page__steps-list li,
.deposit-page__withdrawal-steps li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 3rem;
}

.deposit-page__steps-list li:before,
.deposit-page__withdrawal-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6b35;
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.deposit-page__steps-list li:last-child,
.deposit-page__withdrawal-steps li:last-child {
    margin-bottom: 0;
}

.deposit-page__steps-list li strong,
.deposit-page__withdrawal-steps li strong {
    color: #ffd700;
    font-weight: 600;
}

.deposit-page__payment-methods {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-page__payment-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.deposit-page__payment-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.deposit-page__payment-list li:last-child {
    margin-bottom: 0;
}

.deposit-page__payment-list li strong {
    color: #ffd700;
    font-weight: 600;
}

.deposit-page__table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.deposit-page__payment-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-page__payment-table th {
    background-color: rgba(255, 107, 53, 0.2);
    color: #ffd700;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-page__payment-table td {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-page__payment-table tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.deposit-page__payment-table tr:last-child td {
    border-bottom: none;
}

.deposit-page__withdrawal-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.deposit-page__info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.deposit-page__info-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.deposit-page__info-list li:before {
    content: '✓';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.deposit-page__info-list li:last-child {
    margin-bottom: 0;
}

.deposit-page__security-info {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-page__security-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deposit-page__security-info p:last-child {
    margin-bottom: 0;
}

.deposit-page__security-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.deposit-page__security-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.deposit-page__security-list li:last-child {
    margin-bottom: 0;
}

.deposit-page__security-list li strong {
    color: #ffd700;
    font-weight: 600;
}

.deposit-page__cta {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.deposit-page__cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation-play-state: paused;
}

.deposit-page__cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.deposit-page__cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .deposit-page__main-title {
        font-size: 2.2rem;
    }
    
    .deposit-page__intro-section {
        flex-direction: column;
        text-align: center;
    }
    
    .deposit-page__intro-image {
        width: 250px;
        margin: 0 auto;
    }
    
    .deposit-page__title {
        font-size: 1.8rem;
    }
    
    .deposit-page__subtitle {
        font-size: 1.2rem;
    }
    
    .deposit-page__deposit-section,
    .deposit-page__withdrawal-section {
        flex-direction: column;
        text-align: center;
    }
    
    .deposit-page__section-image {
        width: 250px;
        margin: 0 auto;
    }
    
    .deposit-page__payment-methods,
    .deposit-page__security-info {
        padding: 1.5rem;
    }
    
    .deposit-page__steps-list li,
    .deposit-page__withdrawal-steps li {
        padding: 1rem;
        padding-left: 3rem;
    }
    
    .deposit-page__payment-table {
        font-size: 0.9rem;
    }
    
    .deposit-page__payment-table th,
    .deposit-page__payment-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 640px) {
    .deposit-page {
        padding: 2rem 0;
    }
    
    .deposit-page__container {
        padding: 0 0.5rem;
    }
    
    .deposit-page__main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .deposit-page__intro-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .deposit-page__intro-image {
        width: 220px;
    }
    
    .deposit-page__intro-content p {
        font-size: 1rem;
    }
    
    .deposit-page__title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .deposit-page__subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .deposit-page__deposit-section,
    .deposit-page__withdrawal-section {
        padding: 1rem;
    }
    
    .deposit-page__section-image {
        width: 220px;
    }
    
    .deposit-page__section-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .deposit-page__payment-methods,
    .deposit-page__security-info {
        padding: 1rem;
    }
    
    .deposit-page__steps-list li,
    .deposit-page__withdrawal-steps li {
        padding: 0.8rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .deposit-page__steps-list li:before,
    .deposit-page__withdrawal-steps li:before {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.7rem;
    }
    
    .deposit-page__payment-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .deposit-page__payment-table {
        font-size: 0.8rem;
    }
    
    .deposit-page__payment-table th,
    .deposit-page__payment-table td {
        padding: 0.6rem;
    }
    
    .deposit-page__withdrawal-info {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .deposit-page__info-list li,
    .deposit-page__security-list li {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .deposit-page__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .deposit-page__cta-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
} 

.games-page {
    background-color: #461142;
    padding: 4rem 0;
}

.games-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.games-page__main-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.games-page__intro-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-page__intro-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.games-page__intro-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.games-page__intro-content p:last-child {
    margin-bottom: 0;
}

.games-page__section {
    margin-bottom: 3rem;
}

.games-page__title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.games-page__subtitle {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.games-page__slots-section,
.games-page__live-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-page__section-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.games-page__section-content {
    flex: 1;
}

.games-page__section-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.games-page__section-content p:last-child {
    margin-bottom: 0;
}

.games-page__slots-types,
.games-page__instant-games,
.games-page__live-games,
.games-page__features-list,
.games-page__sports-list,
.games-page__betting-list,
.games-page__advantages-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.games-page__slots-types li,
.games-page__instant-games li,
.games-page__live-games li,
.games-page__features-list li,
.games-page__sports-list li,
.games-page__betting-list li,
.games-page__advantages-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.games-page__slots-types li:last-child,
.games-page__instant-games li:last-child,
.games-page__live-games li:last-child,
.games-page__features-list li:last-child,
.games-page__sports-list li:last-child,
.games-page__betting-list li:last-child,
.games-page__advantages-list li:last-child {
    margin-bottom: 0;
}

.games-page__slots-types li strong,
.games-page__instant-games li strong,
.games-page__live-games li strong,
.games-page__features-list li strong,
.games-page__sports-list li strong,
.games-page__betting-list li strong,
.games-page__advantages-list li strong {
    color: #ffd700;
    font-weight: 600;
}

.games-page__providers-info {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-page__providers-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.games-page__table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.games-page__providers-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-page__providers-table th {
    background-color: rgba(255, 107, 53, 0.2);
    color: #ffd700;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-page__providers-table td {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-page__providers-table tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.games-page__providers-table tr:last-child td {
    border-bottom: none;
}

.games-page__live-features {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.games-page__sports-info,
.games-page__advantages {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-page__sports-info p,
.games-page__advantages p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.games-page__sports-info p:last-child,
.games-page__advantages p:last-child {
    margin-bottom: 0;
}

.games-page__betting-features {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.games-page__cta {
    display: inline-block;
    background-color: #ff6b35;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.games-page__cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation-play-state: paused;
}

.games-page__cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.games-page__cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .games-page__main-title {
        font-size: 2.2rem;
    }
    
    .games-page__intro-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .games-page__intro-image {
        width: 250px;
        margin: 0 auto;
    }
    
    .games-page__title {
        font-size: 1.8rem;
    }
    
    .games-page__subtitle {
        font-size: 1.2rem;
    }
    
    .games-page__slots-section,
    .games-page__live-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .games-page__section-image {
        width: 250px;
        margin: 0 auto;
    }
    
    .games-page__providers-info,
    .games-page__sports-info,
    .games-page__advantages {
        padding: 1.5rem;
    }
    
    .games-page__providers-table {
        font-size: 0.9rem;
    }
    
    .games-page__providers-table th,
    .games-page__providers-table td {
        padding: 0.8rem;
    }
    
    .games-page__slots-types li,
    .games-page__instant-games li,
    .games-page__live-games li,
    .games-page__features-list li,
    .games-page__sports-list li,
    .games-page__betting-list li,
    .games-page__advantages-list li {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .games-page {
        padding: 2rem 0;
    }
    
    .games-page__container {
        padding: 0 0.5rem;
    }
    
    .games-page__main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .games-page__intro-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .games-page__intro-image {
        width: 220px;
    }
    
    .games-page__intro-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .games-page__title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .games-page__subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .games-page__slots-section,
    .games-page__live-section {
        padding: 1rem;
    }
    
    .games-page__section-image {
        width: 220px;
    }
    
    .games-page__section-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .games-page__providers-info,
    .games-page__sports-info,
    .games-page__advantages {
        padding: 1rem;
    }
    
    .games-page__providers-table {
        font-size: 0.8rem;
    }
    
    .games-page__providers-table th,
    .games-page__providers-table td {
        padding: 0.6rem;
    }
    
    .games-page__slots-types li,
    .games-page__instant-games li,
    .games-page__live-games li,
    .games-page__features-list li,
    .games-page__sports-list li,
    .games-page__betting-list li,
    .games-page__advantages-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .games-page__live-features,
    .games-page__betting-features {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .games-page__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .games-page__cta-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
} 

.text-link {
    color: #ff6b35;
    text-decoration: underline;
    text-decoration-color: rgba(255, 107, 53, 0.5);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.text-link:hover {
    color: #ffd700;
    text-decoration-color: #ffd700;
    text-underline-offset: 4px;
}

.text-link:focus {
    outline: 2px solid rgba(255, 215, 0, 0.6);
    outline-offset: 2px;
    border-radius: 2px;
}

.text-link:visited {
    color: #e55a2b;
    text-decoration-color: rgba(229, 90, 43, 0.5);
}

.text-link:visited:hover {
    color: #ffd700;
    text-decoration-color: #ffd700;
}