:root {
    --header-bg: #084147;
    --white: #ffffff;
    --primary-btn: #ff6b35;
    --secondary-btn: #28a745;
    --nav-hover: rgba(255, 255, 255, 0.1);
    --font-family: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: #021c2b;
}

.header {
    background-color: var(--header-bg);
    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: 50px;
    width: auto;
    max-width: 200px;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header__nav-item {
    margin: 0;
}

.header__nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.header__nav-link:hover,
.header__nav-link:focus {
    background-color: var(--nav-hover);
    outline: 2px solid transparent;
}

.header__nav-link:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.header__cta {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.header__cta-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.header__cta-btn--primary {
    background-color: var(--primary-btn);
    color: var(--white);
    border-color: var(--primary-btn);
}

.header__cta-btn--primary:hover,
.header__cta-btn--primary:focus {
    background-color: transparent;
    color: var(--primary-btn);
    border-color: var(--primary-btn);
}

.header__cta-btn--secondary {
    background-color: var(--secondary-btn);
    color: var(--white);
    border-color: var(--secondary-btn);
}

.header__cta-btn--secondary:hover,
.header__cta-btn--secondary:focus {
    background-color: transparent;
    color: var(--secondary-btn);
    border-color: var(--secondary-btn);
}

.header__cta-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.header__burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.header__burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.header__burger--active .header__burger-line:nth-child(1) {
    transform: translate(0, 7px) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: translate(0, -7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .header__burger {
        display: flex;
        order: 2;
    }
    
    .header__logo {
        order: 1;
    }
    
    .header__cta {
        order: 3;
        gap: 0.5rem;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--header-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
        order: 4;
    }
    
    .header__nav--open {
        transform: translateX(0);
    }
    
    .header__nav-list {
        flex-direction: column;
        gap: 0;
        padding: 2rem 1rem;
        align-items: stretch;
    }
    
    .header__nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        display: block;
        text-align: center;
        font-size: 1.125rem;
    }
    
    .header__cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header__container {
        padding: 0 0.5rem;
    }
    
    .header__logo-img {
        height: 40px;
    }
    
    .header__cta {
        gap: 0.25rem;
    }
    
    .header__cta-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

.hero {
    background-image: url('img/bg.webp');
    background-size: cover;
    background-position: 35% 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(5, 42, 46, 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: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__cta-btn {
    display: inline-block;
    background-color: var(--primary-btn);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-btn);
    min-height: 48px;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
}

.hero__cta-btn:hover,
.hero__cta-btn:focus {
    background-color: transparent;
    color: var(--primary-btn);
    border-color: var(--primary-btn);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero__cta-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .hero {
        background-image: url('img/bg1.webp');
    }
    
    .hero__container {
        padding: 1.5rem 0.5rem;
    }
    
    .hero__content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero__container {
        padding: 1rem 0.5rem;
    }
    
    .hero__cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

.info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info__content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

.info__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.info__text:last-child {
    margin-bottom: 0;
}

.info__table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    background-color: #2c3e50;
}

.info__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c3e50;
}

.info__table-row {
    border-bottom: 1px solid #34495e;
    transition: background-color 0.2s ease;
}

.info__table-row:hover {
    background-color: #34495e;
}

.info__table-row:last-child {
    border-bottom: none;
}

.info__table-label {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--header-bg);
    border-right: 1px solid #34495e;
    width: 35%;
    vertical-align: top;
}

.info__table-value {
    padding: 1.25rem 1.5rem;
    color: #ecf0f1;
    font-weight: 500;
    vertical-align: top;
}

@media (max-width: 768px) {
    .info {
        padding: 3rem 0;
    }
    
    .info__container {
        padding: 0 0.5rem;
    }
    
    .info__content {
        margin-bottom: 2rem;
    }
    
    .info__text {
        font-size: 1rem;
        text-align: left;
    }
    
    .info__table-wrapper {
        border-radius: 8px;
    }
    
    .info__table-label,
    .info__table-value {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .info__table-label {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .info {
        padding: 2rem 0;
    }
    
    .info__table-label,
    .info__table-value {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        display: block;
        width: 100%;
        border-right: none;
    }
    
    .info__table-label {
        background-color: var(--header-bg);
        color: var(--white);
        font-weight: 600;
        border-bottom: none;
    }
    
    .info__table-value {
        border-bottom: 1px solid #34495e;
        margin-bottom: 0.5rem;
    }
    
    .info__table-row {
        display: block;
        margin-bottom: 1rem;
        border: none;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
         .info__table-row:hover {
         background-color: transparent;
     }
 }

.guide {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.guide__intro {
    text-align: center;
    margin-bottom: 4rem;
}

.guide__main-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.guide__intro-text {
    font-size: 1.125rem;
    color: #ecf0f1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.guide__content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.guide__section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guide__section--reverse {
    direction: rtl;
}

.guide__section--reverse > * {
    direction: ltr;
}

.guide__text-content {
    order: 1;
}

.guide__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-btn);
}

.guide__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.guide__step {
    counter-increment: step-counter;
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #ecf0f1;
    line-height: 1.6;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide__step:last-child {
    border-bottom: none;
}

.guide__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: var(--primary-btn);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.guide__image-wrapper {
    order: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.guide__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.guide__image:hover {
    transform: scale(1.02);
}

.guide__footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide__footer-text {
    font-size: 1.125rem;
    color: #ecf0f1;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .guide {
        padding: 3rem 0;
    }
    
    .guide__container {
        padding: 0 0.5rem;
    }
    
    .guide__intro {
        margin-bottom: 3rem;
    }
    
    .guide__content {
        gap: 3rem;
    }
    
    .guide__section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide__section--reverse {
        direction: ltr;
    }
    
    .guide__text-content {
        order: 2;
    }
    
    .guide__image-wrapper {
        order: 1;
    }
    
    .guide__title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .guide__footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .guide {
        padding: 2rem 0;
    }
    
    .guide__step {
        padding: 0.75rem 0 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .guide__step::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }
    
    .guide__footer {
        padding: 1rem;
    }
    
         .guide__footer-text {
         font-size: 1rem;
     }
 }

.games {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.games__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.games__main-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.games__intro-text {
    font-size: 1.125rem;
    color: #ecf0f1;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.games__featured {
    margin-bottom: 4rem;
    text-align: center;
}

.games__featured-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.games__hero-image:hover {
    transform: scale(1.02);
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.games__category {
    background-color: #2c3e50;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #34495e;
}

.games__category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.games__category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-btn);
    position: relative;
}

.games__category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-btn);
}

.games__category-content {
    line-height: 1.6;
}

.games__category-text {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.games__category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.games__category-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #ecf0f1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.games__category-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-btn);
    font-size: 0.8rem;
}

.games__showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--header-bg) 0%, #0a525a 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.games__showcase-content {
    color: var(--white);
}

.games__showcase-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.games__showcase-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.games__showcase-text:last-child {
    margin-bottom: 0;
}

.games__showcase-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    max-width: 50%;
    margin: 0 auto;
}

.games__showcase-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.games__showcase-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .games {
        padding: 3rem 0;
    }
    
    .games__container {
        padding: 0 0.5rem;
    }
    
    .games__intro {
        margin-bottom: 2rem;
    }
    
    .games__featured {
        margin-bottom: 3rem;
    }
    
    .games__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .games__category {
        padding: 1.5rem;
    }
    
    .games__category-title {
        font-size: 1.25rem;
    }
    
    .games__showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .games__showcase-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .games__showcase-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 2rem 0;
    }
    
    .games__category {
        padding: 1rem;
    }
    
    .games__category-list li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .games__showcase {
        padding: 1.5rem;
    }
    
         .games__showcase-text {
         font-size: 0.95rem;
     }
 }

.payments {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.payments__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payments__intro {
    text-align: center;
    margin-bottom: 4rem;
}

.payments__main-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.payments__intro-text {
    font-size: 1.125rem;
    color: #ecf0f1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.payments__methods {
    margin-bottom: 4rem;
}

.payments__methods-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.payments__table-wrapper {
    overflow-x: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    background-color: #2c3e50;
}

.payments__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c3e50;
}

.payments__table thead {
    background-color: var(--header-bg);
}

.payments__table th {
    padding: 1.25rem 1rem;
    color: var(--white);
    font-weight: 600;
    text-align: left;
    font-size: 1rem;
}

.payments__table td {
    padding: 1rem;
    color: #ecf0f1;
    border-bottom: 1px solid #34495e;
    font-size: 0.95rem;
}

.payments__table tbody tr:hover {
    background-color: #34495e;
}

.payments__table tbody tr:last-child td {
    border-bottom: none;
}

.payments__guides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.payments__guide {
    background-color: #2c3e50;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #34495e;
}

.payments__guide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.payments__guide-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-btn);
}

.payments__guide-intro {
    font-size: 1rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payments__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.payments__step {
    counter-increment: step-counter;
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #ecf0f1;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.payments__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: var(--primary-btn);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.payments__guide-note {
    background-color: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-btn);
    color: #ecf0f1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.payments__security {
    background: linear-gradient(135deg, var(--header-bg) 0%, #0a525a 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payments__security-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.payments__security-text {
    font-size: 1rem;
    color: #ecf0f1;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payments__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.payments__feature {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payments__feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.payments__feature-text {
    font-size: 0.9rem;
    color: #ecf0f1;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .payments {
        padding: 3rem 0;
    }
    
    .payments__container {
        padding: 0 0.5rem;
    }
    
    .payments__intro {
        margin-bottom: 3rem;
    }
    
    .payments__methods {
        margin-bottom: 3rem;
    }
    
    .payments__table th,
    .payments__table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .payments__guides {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .payments__guide {
        padding: 2rem;
    }
    
    .payments__security {
        padding: 2rem;
    }
    
    .payments__security-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .payments {
        padding: 2rem 0;
    }
    
    .payments__guide {
        padding: 1.5rem;
    }
    
    .payments__step {
        padding: 0.75rem 0 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .payments__step::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }
    
    .payments__security {
        padding: 1.5rem;
    }
    
         .payments__feature {
         padding: 1rem;
     }
 }

.bonuses {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonuses__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.bonuses__main-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bonuses__intro-text {
    font-size: 1.125rem;
    color: #ecf0f1;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.bonuses__featured {
    margin-bottom: 4rem;
    text-align: center;
}

.bonuses__featured-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.bonuses__hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.bonuses__hero-image:hover {
    transform: scale(1.02);
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.bonuses__category {
    background-color: #2c3e50;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #34495e;
}

.bonuses__category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.bonuses__category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-btn);
    position: relative;
}

.bonuses__category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-btn);
}

.bonuses__category-content {
    line-height: 1.6;
}

.bonuses__category-text {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.bonuses__category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.bonuses__category-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #ecf0f1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bonuses__category-list li::before {
    content: '💰';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 0.9rem;
}

.bonuses__vip {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #2c3e50;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #34495e;
}

.bonuses__vip-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.bonuses__vip-text {
    font-size: 1rem;
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bonuses__vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.bonuses__vip-level {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.bonuses__vip-level-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-btn);
    margin-bottom: 0.75rem;
}

.bonuses__vip-level-text {
    font-size: 0.85rem;
    color: #ecf0f1;
    line-height: 1.4;
    margin: 0;
}

.bonuses__vip-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.bonuses__vip-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bonuses__vip-img:hover {
    transform: scale(1.02);
}

.bonuses__terms {
    background: linear-gradient(135deg, var(--header-bg) 0%, #0a525a 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bonuses__terms-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.bonuses__terms-text {
    font-size: 1rem;
    color: #ecf0f1;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonuses__terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonuses__term {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonuses__term-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.bonuses__term-text {
    font-size: 0.9rem;
    color: #ecf0f1;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .bonuses {
        padding: 3rem 0;
    }
    
    .bonuses__container {
        padding: 0 0.5rem;
    }
    
    .bonuses__intro {
        margin-bottom: 2rem;
    }
    
    .bonuses__featured {
        margin-bottom: 3rem;
    }
    
    .bonuses__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .bonuses__category {
        padding: 1.5rem;
    }
    
    .bonuses__vip {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .bonuses__vip-levels {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .bonuses__terms {
        padding: 2rem;
    }
    
    .bonuses__terms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bonuses {
        padding: 2rem 0;
    }
    
    .bonuses__category {
        padding: 1rem;
    }
    
    .bonuses__category-list li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .bonuses__vip {
        padding: 1.5rem;
    }
    
    .bonuses__vip-level {
        padding: 1rem;
    }
    
    .bonuses__terms {
        padding: 1.5rem;
    }
    
    .bonuses__term {
        padding: 1rem;
    }
}

.faq {
    background: linear-gradient(135deg, #021c2b 0%, #0a3040 100%);
    padding: 4rem 0;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq__main-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq__intro-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq__question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--primary-btn);
}

.faq__question:focus {
    outline: 2px solid var(--primary-btn);
    outline-offset: -2px;
}

.faq__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq__icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq__question[aria-expanded="true"] .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__question[aria-expanded="true"] + .faq__answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq__answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq__container {
        padding: 0 1rem;
    }
    
    .faq__intro {
        margin-bottom: 2rem;
    }
    
    .faq__main-title {
        font-size: 2rem;
    }
    
    .faq__intro-text {
        font-size: 1rem;
    }
    
    .faq__question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq__icon {
        width: 20px;
        height: 20px;
        margin-left: 0.75rem;
    }
    
    .faq__icon::before {
        width: 14px;
    }
    
    .faq__icon::after {
        height: 14px;
    }
    
    .faq__question[aria-expanded="true"] + .faq__answer {
        padding: 0 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 2rem 0;
    }
    
    .faq__main-title {
        font-size: 1.75rem;
    }
    
    .faq__question {
        padding: 1rem;
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq__answer p {
        font-size: 0.9rem;
    }
    
    .faq__question[aria-expanded="true"] + .faq__answer {
        padding: 0 1rem 1rem;
    }
}

.footer {
    background-color: var(--header-bg);
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.footer__text {
    flex: 1;
    text-align: right;
}

.footer__disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    max-width: 600px;
    margin-left: auto;
}

.footer__copyright {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer__text {
        text-align: center;
    }
    
    .footer__disclaimer {
        font-size: 0.85rem;
        margin-left: 0;
    }
    
    .footer__copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer__content {
        gap: 1rem;
    }
    
    .footer__logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .footer__disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer__copyright {
        font-size: 0.75rem;
    }
}

.promo-hero {
    background: linear-gradient(135deg, #021c2b 0%, #084147 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg1.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.promo-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promo-hero__content {
    color: var(--white);
}

.promo-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
}

.promo-hero__cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-btn);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-btn);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    max-width: max-content;
}

.promo-hero__cta-btn:hover,
.promo-hero__cta-btn:focus {
    background-color: transparent;
    color: var(--secondary-btn);
    border-color: var(--secondary-btn);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.promo-hero__cta-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.promo-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.promo-hero__img:hover {
    transform: scale(1.05);
}

.promo-content {
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    padding: 4rem 0;
}

.promo-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-content__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.promo-content__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

@media (max-width: 768px) {
    .promo-hero {
        padding: 3rem 0;
    }
    
    .promo-hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .promo-hero__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .promo-hero__cta-btn {
        margin: 0 auto;
    }
    
    .promo-content {
        padding: 3rem 0;
    }
    
    .promo-content__text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .promo-hero {
        padding: 2rem 0;
    }
    
    .promo-hero__container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .promo-hero__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .promo-hero__cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .promo-content {
        padding: 2rem 0;
    }
    
    .promo-content__text p {
        font-size: 0.95rem;
        text-align: left;
    }
}

.promo-details {
    background-color: #021c2b;
    padding: 4rem 0;
}

.promo-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-details__intro {
    text-align: center;
    margin-bottom: 4rem;
}

.promo-details__main-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promo-details__section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.promo-details__content {
    color: var(--white);
}

.promo-details__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.promo-details__subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-btn);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.promo-details__text {
    color: #ecf0f1;
}

.promo-details__text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.promo-details__text p:last-child {
    margin-bottom: 0;
}

.promo-details__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-details__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.promo-details__img:hover {
    transform: scale(1.05);
}

.promo-details__welcome {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.promo-details__welcome .promo-details__title {
    text-align: center;
    margin-bottom: 3rem;
}

.promo-details__bonus-group {
    margin-bottom: 3rem;
}

.promo-details__bonus-group:last-child {
    margin-bottom: 0;
}

.promo-details__bonus-group .promo-details__title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.promo-details__bonus-group .promo-details__subtitle {
    margin-top: 0;
}

.promo-details__other-bonuses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.promo-details__other-bonuses .promo-details__bonus-group {
    padding: 2rem;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

.promo-details__other-bonuses .promo-details__title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .promo-details {
        padding: 3rem 0;
    }
    
    .promo-details__container {
        padding: 0 1rem;
    }
    
    .promo-details__intro {
        margin-bottom: 3rem;
    }
    
    .promo-details__main-title {
        font-size: 2rem;
    }
    
    .promo-details__section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    .promo-details__title {
        font-size: 1.5rem;
    }
    
    .promo-details__subtitle {
        font-size: 1.125rem;
    }
    
    .promo-details__text p {
        font-size: 0.95rem;
    }
    
    .promo-details__welcome {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    .promo-details__other-bonuses {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promo-details__other-bonuses .promo-details__bonus-group {
        padding: 1.5rem;
    }
    
    .promo-details__other-bonuses .promo-details__title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .promo-details {
        padding: 2rem 0;
    }
    
    .promo-details__main-title {
        font-size: 1.75rem;
    }
    
    .promo-details__section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .promo-details__title {
        font-size: 1.25rem;
    }
    
    .promo-details__subtitle {
        font-size: 1rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .promo-details__text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .promo-details__welcome {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .promo-details__bonus-group {
        margin-bottom: 2rem;
    }
    
    .promo-details__other-bonuses .promo-details__bonus-group {
        padding: 1rem;
    }
    
    .promo-details__other-bonuses .promo-details__title {
        font-size: 1.125rem;
    }
}

.login-hero {
    background: linear-gradient(135deg, #021c2b 0%, #084147 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg1.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.login-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-hero__content {
    color: var(--white);
}

.login-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
}

.login-hero__cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-btn);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-btn);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    max-width: max-content;
}

.login-hero__cta-btn:hover,
.login-hero__cta-btn:focus {
    background-color: transparent;
    color: var(--secondary-btn);
    border-color: var(--secondary-btn);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.login-hero__cta-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.login-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.login-hero__img:hover {
    transform: scale(1.05);
}

.login-content {
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    padding: 4rem 0;
}

.login-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-content__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.login-content__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

.login-guide {
    background-color: #021c2b;
    padding: 4rem 0;
}

.login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-guide__intro {
    text-align: center;
    margin-bottom: 4rem;
}

.login-guide__main-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.login-guide__intro-text {
    font-size: 1.125rem;
    color: #ecf0f1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.login-guide__steps {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.login-guide__step-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.login-guide__step {
    counter-increment: step-counter;
    position: relative;
    padding: 1.5rem 0 1.5rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
    line-height: 1.6;
}

.login-guide__step:last-child {
    border-bottom: none;
}

.login-guide__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--secondary-btn);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.login-guide__step strong {
    color: var(--secondary-btn);
    font-weight: 600;
}

@media (max-width: 768px) {
    .login-hero {
        padding: 3rem 0;
    }
    
    .login-hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-hero__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .login-hero__cta-btn {
        margin: 0 auto;
    }
    
    .login-content {
        padding: 3rem 0;
    }
    
    .login-content__text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .login-guide {
        padding: 3rem 0;
    }
    
    .login-guide__container {
        padding: 0 1rem;
    }
    
    .login-guide__intro {
        margin-bottom: 3rem;
    }
    
    .login-guide__main-title {
        font-size: 2rem;
    }
    
    .login-guide__steps {
        padding: 2rem;
    }
    
    .login-guide__step {
        padding: 1.25rem 0 1.25rem 3.5rem;
        font-size: 0.95rem;
    }
    
    .login-guide__step::before {
        width: 2rem;
        height: 2rem;
        top: 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login-hero {
        padding: 2rem 0;
    }
    
    .login-hero__container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .login-hero__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .login-hero__cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .login-content {
        padding: 2rem 0;
    }
    
    .login-content__text p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .login-guide {
        padding: 2rem 0;
    }
    
    .login-guide__main-title {
        font-size: 1.75rem;
    }
    
    .login-guide__intro-text {
        font-size: 1rem;
    }
    
    .login-guide__steps {
        padding: 1.5rem;
    }
    
    .login-guide__step {
        padding: 1rem 0 1rem 3rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .login-guide__step::before {
        width: 1.75rem;
        height: 1.75rem;
        top: 1rem;
        font-size: 0.8rem;
    }
}

.login-verification {
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    padding: 4rem 0;
}

.login-verification__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-verification__intro {
    text-align: center;
    margin-bottom: 4rem;
}

.login-verification__main-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.login-verification__intro-text {
    font-size: 1.125rem;
    color: #ecf0f1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.login-verification__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.login-verification__documents {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-verification__document {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-btn);
    transition: all 0.3s ease;
}

.login-verification__document:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.login-verification__doc-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-btn);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.login-verification__doc-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ecf0f1;
    margin: 0;
}

.login-verification__cta {
    text-align: center;
    margin-top: 1rem;
}

.login-verification__cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-btn);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-btn);
}

.login-verification__cta-btn:hover,
.login-verification__cta-btn:focus {
    background-color: transparent;
    color: var(--primary-btn);
    border-color: var(--primary-btn);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.login-verification__cta-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.login-verification__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-verification__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.login-verification__img:hover {
    transform: scale(1.05);
}

.login-verification__security {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.login-verification__security-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.login-verification__security-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ecf0f1;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .login-verification {
        padding: 3rem 0;
    }
    
    .login-verification__container {
        padding: 0 1rem;
    }
    
    .login-verification__intro {
        margin-bottom: 3rem;
    }
    
    .login-verification__main-title {
        font-size: 1.75rem;
    }
    
    .login-verification__intro-text {
        font-size: 1rem;
    }
    
    .login-verification__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .login-verification__documents {
        gap: 1.5rem;
    }
    
    .login-verification__document {
        padding: 1.25rem;
    }
    
    .login-verification__doc-title {
        font-size: 1.125rem;
    }
    
    .login-verification__doc-text {
        font-size: 0.95rem;
    }
    
    .login-verification__security {
        padding: 2rem;
    }
    
    .login-verification__security-title {
        font-size: 1.5rem;
    }
    
    .login-verification__security-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-verification {
        padding: 2rem 0;
    }
    
    .login-verification__main-title {
        font-size: 1.5rem;
    }
    
    .login-verification__intro-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .login-verification__content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .login-verification__documents {
        gap: 1rem;
    }
    
    .login-verification__document {
        padding: 1rem;
    }
    
    .login-verification__doc-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .login-verification__doc-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .login-verification__cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .login-verification__security {
        padding: 1.5rem;
    }
    
    .login-verification__security-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .login-verification__security-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.deposit-hero {
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
    padding: clamp(2rem, 5vw, 4rem) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.deposit-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.deposit-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.deposit-hero__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.deposit-hero__cta {
    display: inline-block;
    background: var(--primary-btn);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.deposit-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.deposit-hero__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.deposit-methods {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.deposit-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-methods__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.deposit-methods__intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.deposit-methods__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.deposit-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deposit-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-btn), #ff6b35);
}

.deposit-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.deposit-method__name {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.deposit-method__details p {
    margin-bottom: 0.5rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.5;
}

.deposit-method__details strong {
    color: var(--primary-btn);
    font-weight: 600;
}

.deposit-guide {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.deposit-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-guide__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.deposit-guide__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.deposit-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.deposit-step {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 4rem;
    transition: all 0.3s ease;
}

.deposit-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-btn);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.deposit-step:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.deposit-step strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.deposit-step span {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.deposit-guide__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.deposit-security {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.deposit-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-security__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.deposit-security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.security-feature::before {
    content: '🔒';
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.security-feature:nth-child(2)::before {
    content: '🛡️';
}

.security-feature:nth-child(3)::before {
    content: '📋';
}

.security-feature:nth-child(4)::before {
    content: '🎯';
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.security-feature__title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-feature__description {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

.deposit-faq {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.deposit-faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-faq__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

.deposit-support {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, #1a4e54 0%, #0d3439 100%);
}

.deposit-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-support__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.deposit-support__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.deposit-support__intro {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.support-channels {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.support-channel {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-channel__title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.support-channel__description {
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    opacity: 0.9;
    font-size: 0.95rem;
}

.support-channel__time {
    color: var(--primary-btn);
    font-size: 0.9rem;
}

.support-features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.support-features {
    text-align: left;
}

.support-features__title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-features__list {
    list-style: none;
    padding: 0;
}

.support-features__list li {
    color: var(--white);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
    font-size: 0.95rem;
}

.support-features__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-btn);
    font-weight: bold;
}

.deposit-support__cta {
    display: inline-block;
    background: var(--primary-btn);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    margin-top: 1rem;
}

.deposit-support__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.deposit-support__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .deposit-hero__container,
    .deposit-guide__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .deposit-hero__image,
    .deposit-guide__image {
        order: -1;
    }
    
    .support-channels {
        grid-template-columns: 1fr;
    }
    
    .support-features-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .deposit-support__image {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .deposit-methods__grid {
        grid-template-columns: 1fr;
    }
    
    .deposit-security__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.spl {
    color: var(--primary-btn);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.spl:hover {
    color: #ff6b35;
    border-bottom: 1px solid var(--primary-btn);
    text-decoration: none;
}

.spl:focus {
    outline: 2px solid var(--primary-btn);
    outline-offset: 2px;
    border-radius: 2px;
}

@media (max-width: 480px) {
    .deposit-step {
        padding-left: 3rem;
    }
    
    .deposit-step::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
    
    .deposit-method,
    .security-feature,
    .faq-item,
    .support-channel {
        padding: 1.5rem;
    }
} 