:root {
    --color-primary: #0e0000;
    --color-accent: #ff6b35;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #cccccc;
    --font-family: 'Arial', sans-serif;
    --container-max-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text);
    background-color: #0d0c0c;
    padding-top: 70px;
}

.header {
    background-color: var(--color-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header__nav {
    display: none;
}

.header__nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.header__nav-link:hover,
.header__nav-link:focus {
    color: var(--color-accent);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.header__nav-link:hover::after,
.header__nav-link:focus::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.header__btn {
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    min-width: 80px;
    font-size: 0.9rem;
}

.header__btn--login {
    color: var(--color-white);
    border-color: var(--color-white);
}

.header__btn--login:hover,
.header__btn--login:focus {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.header__btn--register {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.header__btn--register:hover,
.header__btn--register:focus {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.header__burger:hover span {
    background-color: var(--color-accent);
}

.header__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger--active span:nth-child(2) {
    opacity: 0;
}

.header__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.header__nav--active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.header__nav--active .header__nav-list {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
}

.header__nav--active .header__nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__nav--active .header__nav-item:last-child {
    border-bottom: none;
}

.header__nav--active .header__nav-link {
    display: block;
    padding: 1rem 0;
}

.menu-open {
    overflow: hidden;
}

.header--scrolled {
    background-color: rgba(14, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .header__container {
        padding: 0 0.5rem;
    }
    
    .header__logo-img {
        height: 35px;
    }
    
    .header__btn {
        padding: 0.25rem 0.5rem;
        min-width: 60px;
        font-size: 0.8rem;
    }
    
    .header__actions {
        gap: 0.25rem;
    }
}

@media (max-width: 375px) {
    .header__container {
        padding: 0 0.25rem;
        min-height: 60px;
    }
    
    .header__logo-img {
        height: 30px;
    }
    
    .header__btn {
        padding: 0.2rem 0.4rem;
        min-width: 50px;
        font-size: 0.75rem;
        border-width: 1px;
    }
    
    .header__actions {
        gap: 0.2rem;
    }
    
    .header__burger {
        width: 25px;
        height: 20px;
    }
}

@media (max-width: 320px) {
    .header__container {
        padding: 0 0.25rem;
    }
    
    .header__logo-img {
        height: 28px;
    }
    
    .header__btn--login {
        display: none;
    }
    
    .header__btn {
        min-width: 45px;
        font-size: 0.7rem;
    }
}

.hero {
    background-image: url('img/legiano-bg-mob.webp');
    background-size: cover;
    background-position: 80% center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 500px;
    text-align: center;
}

.hero__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__cta {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero__cta:hover,
.hero__cta:focus {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
}

.info {
    background-color: #1a1818;
    padding: 4rem 0;
}

.info__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.info__content {
    max-width: 1000px;
    margin: 0 auto;
}

.info__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2626;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info__table td {
    padding: 1.5rem;
    border-bottom: 1px solid #3a3636;
    vertical-align: top;
}

.info__table td:first-child {
    font-weight: 600;
    color: var(--color-accent);
    width: 35%;
    background-color: #201e1e;
}

.info__table td:last-child {
    color: var(--color-text-light);
    line-height: 1.6;
}

.info__table tr:last-child td {
    border-bottom: none;
}

.info__table tr:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.info__table tr:hover td:first-child {
    background-color: #2d2929;
}

.connection {
    background-color: #0d0c0c;
    padding: 4rem 0;
}

.connection__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.connection__header {
    text-align: center;
    margin-bottom: 3rem;
}

.connection__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.connection__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.connection__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.connection__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connection__list li {
    background-color: #1a1818;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-accent);
    color: var(--color-text-light);
    line-height: 1.6;
    transition: var(--transition);
}

.connection__list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.connection__list li strong {
    color: var(--color-accent);
}

.connection__image {
    text-align: center;
}

.connection__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promotions {
    background-color: #1a1818;
    padding: 4rem 0;
}

.promotions__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.promotions__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.promotions__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.promotions__cta {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
    margin: 0 auto 3rem;
    display: block;
    text-align: center;
    width: fit-content;
}

.promotions__cta:hover,
.promotions__cta:focus {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: none;
}

.promotions__content {
    display: grid;
    gap: 3rem;
}

.promotions__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.promotions__welcome {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promotions__welcome p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promotions__terms {
    background-color: #0d0c0c;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-accent);
    margin-top: 1.5rem;
}

.promotions__terms p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.promotions__terms p:last-child {
    margin-bottom: 0;
}

.promotions__terms strong {
    color: var(--color-accent);
}

.promotions__deposit {
    background-color: #0d0c0c;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.promotions__deposit p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.promotions__vip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promotions__vip p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promotions__vip-levels {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promotions__vip-levels li {
    background-color: #0d0c0c;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    color: var(--color-text-light);
    border-left: 3px solid var(--color-accent);
}

.promotions__vip-levels li strong {
    color: var(--color-accent);
}

.promotions__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.games {
    background-color: #0d0c0c;
    padding: 4rem 0;
}

.games__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.games__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3rem;
    text-align: center;
}

.games__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.games__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.games__types {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games__types li {
    background-color: #1a1818;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-accent);
    color: var(--color-text-light);
    line-height: 1.6;
    transition: var(--transition);
}

.games__types li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.games__types li strong {
    color: var(--color-accent);
}

.games__slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.games__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.games__slots-description {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.games__slot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games__slot-list li {
    background-color: #1a1818;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-accent);
    color: var(--color-text-light);
    line-height: 1.6;
    transition: var(--transition);
}

.games__slot-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.games__slot-list li strong {
    color: var(--color-accent);
}

.games__live {
    background-color: #1a1818;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.games__live p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.games__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sports {
    background-color: #1a1818;
    padding: 4rem 0;
}

.sports__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.sports__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.sports__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.sports__cta {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
    margin: 0 auto 3rem;
    display: block;
    text-align: center;
    width: fit-content;
}

.sports__cta:hover,
.sports__cta:focus {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: none;
}

.sports__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.sports__live {
    margin-bottom: 4rem;
}

.sports__live p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sports__tournaments {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.sports__tournaments p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.sports__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sports__img--full {
    margin-top: 2rem;
    max-width: 100%;
}

.license {
    background-color: #0d0c0c;
    padding: 4rem 0;
}

.license__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.license__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.license__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.license__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.support {
    background-color: #1a1818;
    padding: 4rem 0;
}

.support__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.support__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.support__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.support__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq {
    background-color: #0d0c0c;
    padding: 4rem 0;
}

.faq__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.faq__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3rem;
    text-align: center;
}

.faq__item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #1a1818;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq__question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq__answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

.footer {
    background-color: #0e0000;
    padding: 3rem 0 2rem;
    border-top: 1px solid #333;
}

.footer__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__content {
    text-align: center;
}

.footer__copyright {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer__disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}



@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .header__container {
        padding: 0 2rem;
        min-height: 80px;
    }
    
    .header__logo-img {
        height: 50px;
    }
    
    .header__nav {
        display: block;
    }
    
    .header__burger {
        display: none;
    }
    
    .header__btn {
        padding: 0.75rem 1.5rem;
    }
    
    .hero {
        background-image: url('img/legiano-bg.webp');
        min-height: calc(100vh - 80px);
    }
    
    .hero__container {
        padding: 0 2rem;
    }
    
    .hero__content {
        text-align: left;
        max-width: 800px;
    }
    
    .hero__title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero__description {
        font-size: 1.1rem;
        max-width: 650px;
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__title,
    .hero__description {
        text-align: left;
    }
    
    .info__container {
        padding: 0 2rem;
    }
    
    .connection__container {
        padding: 0 2rem;
    }
    
    .connection__title {
        font-size: 2.5rem;
    }
    
    .connection__content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .connection__list li {
        margin-bottom: 1.5rem;
    }
    
    .promotions__container {
        padding: 0 2rem;
    }
    
    .promotions__title {
        font-size: 2.5rem;
    }
    
    .promotions__welcome {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .promotions__vip {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .games__container {
        padding: 0 2rem;
    }
    
    .games__title {
        font-size: 2.5rem;
    }
    
    .games__intro {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .games__slots {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .sports__container {
        padding: 0 2rem;
    }
    
    .sports__title {
        font-size: 2.5rem;
    }
    
    .sports__tournaments {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .license__container {
        padding: 0 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .license__title {
        text-align: left;
        font-size: 2.5rem;
    }

    .support__container {
        padding: 0 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .support__title {
        text-align: left;
        font-size: 2.5rem;
    }

    .faq__container {
        padding: 0 2rem;
    }

    .faq__title {
        font-size: 2.5rem;
    }

    .faq__question {
        font-size: 1.4rem;
    }

    .faq__answer {
        font-size: 1.1rem;
    }

    .footer__container {
        padding: 0 2rem;
    }

    .footer__copyright {
        font-size: 1rem;
    }

    .footer__disclaimer {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    body {
        padding-top: 90px;
    }
    
    .header__container {
        min-height: 90px;
    }
    
    .header__logo-img {
        height: 60px;
    }
    
    .header__nav-list {
        gap: 3rem;
    }
    
    .hero {
        min-height: calc(100vh - 90px);
    }
    
    .hero__content {
        max-width: 900px;
    }
    
    .hero__title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero__description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
    }
    
    .hero__cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .info {
        padding: 5rem 0;
    }
    
    .info__description {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }
    
    .info__table td {
        padding: 2rem;
    }
    
    .connection {
        padding: 5rem 0;
    }
    
    .connection__title {
        font-size: 3rem;
    }
    
    .connection__description {
        font-size: 1.2rem;
    }
    
    .connection__list li {
        padding: 2rem;
    }
    
    .promotions {
        padding: 5rem 0;
    }
    
    .promotions__title {
        font-size: 3rem;
    }
    
    .promotions__description {
        font-size: 1.2rem;
    }
    
    .promotions__content {
        gap: 4rem;
    }
    
    .games {
        padding: 5rem 0;
    }
    
    .games__title {
        font-size: 3rem;
    }
    
    .games__description {
        font-size: 1.2rem;
    }
    
    .games__slots-description {
        font-size: 1.2rem;
    }
    
    .games__live {
        padding: 2.5rem;
    }
    
    .sports {
        padding: 5rem 0;
    }
    
    .sports__title {
        font-size: 3rem;
    }
    
    .sports__description {
        font-size: 1.2rem;
    }
    
    .license {
        padding: 5rem 0;
    }
    
    .license__title {
        font-size: 3rem;
    }
    
    .license__description {
        font-size: 1.2rem;
    }

    .support {
        padding: 5rem 0;
    }

    .support__title {
        font-size: 3rem;
    }

    .support__description {
        font-size: 1.2rem;
    }

    .faq {
        padding: 5rem 0;
    }

    .faq__title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .faq__item {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }

    .faq__question {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .faq__answer {
        font-size: 1.2rem;
    }

    .footer {
        padding: 4rem 0 3rem;
    }

    .footer__copyright {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .footer__disclaimer {
        font-size: 1rem;
    }
}

.bonus-hero {
    background: linear-gradient(rgba(13, 12, 12, 0.85), rgba(13, 12, 12, 0.85)), url('/img/boni.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.bonus-hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-hero__content {
    max-width: 100%;
}

.bonus-hero__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bonus-hero__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.bonus-hero .hero__cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.bonus-deposit {
    background-color: #1a1818;
    padding: 4rem 0;
}

.bonus-deposit__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-deposit__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-deposit__description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.inlink {
    color: #ff8c60;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inlink:hover,
.inlink:focus {
    color: white;
    text-decoration: underline;
}

.bonus-welcome {
    background-color: #0d0c0c;
    padding: 4rem 0;
}

.bonus-welcome__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-welcome__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-welcome__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f5f5f5;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-welcome__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.bonus-welcome__item {
    background-color: #1a1818;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: #f5f5f5;
}

.bonus-welcome__item:last-child {
    margin-bottom: 0;
}

.bonus-welcome__item strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-welcome .hero__cta {
    display: block;
    width: fit-content;
    margin: 2rem auto;
}

.bonus-welcome__image {
    text-align: center;
    margin: 2rem 0;
}

.bonus-welcome__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.bonus-vip {
    background-color: #1a1818;
    padding: 4rem 0;
}

.bonus-vip__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-vip__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-vip__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #f5f5f5;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-vip__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #0d0c0c;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.bonus-vip__table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-vip__table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #333;
    color: #f5f5f5;
    line-height: 1.6;
}

.bonus-vip__table td:first-child {
    color: #ff8c60;
    font-weight: 600;
    white-space: nowrap;
}

.bonus-vip__table tr:last-child td {
    border-bottom: none;
}

.bonus-vip__table tr:hover {
    background-color: #1a1818;
}

.bonus-vip__table tr:hover td:first-child {
    color: #ff8c60;
}

.bonus-advantages {
    background-color: #0d0c0c;
    padding: 4rem 0;
}

.bonus-advantages__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-advantages__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-advantages__intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #f5f5f5;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-advantages__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.bonus-advantages__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-advantages__item {
    background-color: #1a1818;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: #f5f5f5;
}

.bonus-advantages__item:last-child {
    margin-bottom: 0;
}

.bonus-advantages__item strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-advantages__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bonus-claim {
    background-color: #1a1818;
    padding: 4rem 0;
}

.bonus-claim__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-claim__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-claim__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    counter-reset: step-counter;
}

.bonus-claim__item {
    background-color: #0d0c0c;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: #f5f5f5;
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
}

.bonus-claim__item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.bonus-claim__item:last-child {
    margin-bottom: 0;
}

.bonus-claim__item strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-claim .hero__cta {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

.bonus-conditions {
    background-color: #0d0c0c;
    padding: 4rem 0;
}

.bonus-conditions__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-conditions__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-conditions__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #f5f5f5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bonus-hero {
        padding: 6rem 0;
        min-height: 70vh;
    }

    .bonus-hero__container {
        padding: 0 2rem;
    }

    .bonus-hero__content {
        max-width: 800px;
    }

    .bonus-hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .bonus-hero__description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        max-width: 650px;
    }

    .bonus-deposit {
        padding: 5rem 0;
    }

    .bonus-deposit__container {
        padding: 0 2rem;
    }

    .bonus-deposit__title {
        font-size: 2.5rem;
    }

    .bonus-deposit__description {
        font-size: 1.1rem;
        max-width: 900px;
    }

    .bonus-welcome {
        padding: 5rem 0;
    }

    .bonus-welcome__container {
        padding: 0 2rem;
    }

    .bonus-welcome__title {
        font-size: 2.5rem;
    }

    .bonus-welcome__intro {
        font-size: 1.2rem;
    }

    .bonus-welcome__item {
        padding: 2rem;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .bonus-welcome__item strong {
        color: #ffffff;
        font-size: 1.2rem;
    }

    .bonus-vip {
        padding: 5rem 0;
    }

    .bonus-vip__container {
        padding: 0 2rem;
    }

    .bonus-vip__title {
        font-size: 2.5rem;
    }

    .bonus-vip__description {
        font-size: 1.1rem;
        max-width: 900px;
    }

    .bonus-vip__table th {
        padding: 2rem 1.5rem;
        font-size: 1.2rem;
    }

    .bonus-vip__table td {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

    .bonus-advantages {
        padding: 5rem 0;
    }

    .bonus-advantages__container {
        padding: 0 2rem;
    }

    .bonus-advantages__title {
        font-size: 2.5rem;
    }

    .bonus-advantages__intro {
        font-size: 1.1rem;
        max-width: 900px;
    }

    .bonus-advantages__content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .bonus-advantages__item {
        padding: 2rem;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .bonus-advantages__item strong {
        font-size: 1.2rem;
    }

    .bonus-claim {
        padding: 5rem 0;
    }

    .bonus-claim__container {
        padding: 0 2rem;
    }

    .bonus-claim__title {
        font-size: 2.5rem;
    }

    .bonus-claim__item {
        padding: 2rem;
        padding-left: 4.5rem;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .bonus-claim__item::before {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1rem;
    }

    .bonus-claim__item strong {
        font-size: 1.2rem;
    }

    .bonus-conditions {
        padding: 5rem 0;
    }

    .bonus-conditions__container {
        padding: 0 2rem;
    }

    .bonus-conditions__title {
        font-size: 2.5rem;
    }

    .bonus-conditions__description {
        font-size: 1.1rem;
        max-width: 900px;
    }
}

@media (min-width: 1024px) {
    .bonus-hero {
        padding: 8rem 0;
        min-height: 80vh;
    }

    .bonus-hero__content {
        max-width: 900px;
    }

    .bonus-hero__title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .bonus-hero__description {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
        max-width: 700px;
    }

    .bonus-deposit {
        padding: 6rem 0;
    }

    .bonus-deposit__title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .bonus-deposit__description {
        font-size: 1.2rem;
        max-width: 1000px;
    }

    .bonus-welcome {
        padding: 6rem 0;
    }

    .bonus-welcome__container {
        max-width: 1200px;
    }

    .bonus-welcome__title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .bonus-welcome__intro {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }

    .bonus-welcome__item {
        padding: 2.5rem;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .bonus-welcome__item strong {
        color: #ffffff;
        font-size: 1.3rem;
    }

    .bonus-vip {
        padding: 6rem 0;
    }

    .bonus-vip__title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .bonus-vip__description {
        font-size: 1.2rem;
        max-width: 1000px;
        margin-bottom: 3rem;
    }

    .bonus-vip__table th {
        padding: 2.5rem 2rem;
        font-size: 1.3rem;
    }

    .bonus-vip__table td {
        padding: 2.5rem 2rem;
        font-size: 1.1rem;
    }

    .bonus-advantages {
        padding: 6rem 0;
    }

    .bonus-advantages__title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .bonus-advantages__intro {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 1000px;
    }

    .bonus-advantages__content {
        gap: 4rem;
    }

    .bonus-advantages__item {
        padding: 2.5rem;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .bonus-advantages__item strong {
        font-size: 1.3rem;
    }

    .bonus-claim {
        padding: 6rem 0;
    }

    .bonus-claim__title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .bonus-claim__item {
        padding: 2.5rem;
        padding-left: 5rem;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .bonus-claim__item::before {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }

    .bonus-claim__item strong {
        font-size: 1.3rem;
    }

    .bonus-conditions {
        padding: 6rem 0;
    }

    .bonus-conditions__title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .bonus-conditions__description {
        font-size: 1.2rem;
        max-width: 1000px;
    }
}

/* Login page styles */
.login-hero {
    background: #0d0c0c;
    padding: 3rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.login-hero__content {
    max-width: 600px;
}

.login-hero__title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.login-hero__description {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.login-hero__image {
    text-align: center;
}

.login-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .login-hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-hero__title {
        font-size: 2rem;
    }
    
    .login-hero__description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-hero {
        padding: 2rem 0;
    }
    
    .login-hero__title {
        font-size: 1.8rem;
    }
}

/* Login connect section */
.login-connect {
    background: #1a1818;
    padding: 3rem 0;
}

.login-connect__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.login-connect__title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.login-connect__description {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.login-connect__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.login-connect__feature {
    background: #0d0c0c;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    color: #f5f5f5;
    line-height: 1.6;
}

.login-connect__feature:last-child {
    margin-bottom: 0;
}

.login-connect__feature strong {
    color: #ff6b35;
    font-weight: 600;
}

.login-connect__image {
    text-align: center;
}

.login-connect__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.login-connect .hero__cta {
    max-width: 200px;
}

/* Login guide section */
.login-guide {
    background: #0d0c0c;
    padding: 3rem 0;
}

.login-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-guide__title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.login-guide__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.login-guide__step {
    background: #1a1818;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    color: #f5f5f5;
    line-height: 1.6;
    position: relative;
    padding-left: 4rem;
    counter-increment: step-counter;
}

.login-guide__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b35;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.login-guide__step:last-child {
    margin-bottom: 0;
}

.login-guide__step strong {
    color: #ffffff;
    font-weight: 600;
}

/* Login troubleshoot section */
.login-troubleshoot {
    background: #1a1818;
    padding: 3rem 0;
}

.login-troubleshoot__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.login-troubleshoot__title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-troubleshoot__problems {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-troubleshoot__problems .hero__cta {
    align-self: flex-start;
    max-width: 200px;
}

.login-troubleshoot__problem {
    background: #0d0c0c;
    padding: 2rem;
    border-radius: 8px;
}

.login-troubleshoot__problem-title {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 600;
}

.login-troubleshoot__problem-desc,
.login-troubleshoot__solution {
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.login-troubleshoot__solution {
    margin-bottom: 0;
}

.login-troubleshoot__problem-desc strong,
.login-troubleshoot__solution strong {
    color: #ffffff;
    font-weight: 600;
}

.login-troubleshoot__image {
    text-align: center;
}

.login-troubleshoot__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Login sections responsive design */
@media (max-width: 768px) {
    .login-connect__container,
    .login-troubleshoot__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-connect .hero__cta,
    .login-troubleshoot__problems .hero__cta {
        align-self: center;
        margin: 0 auto;
    }
    
    .login-connect__title,
    .login-guide__title,
    .login-troubleshoot__title {
        font-size: 1.8rem;
    }
    
    .login-guide__step,
    .login-troubleshoot__problem {
        padding: 1.5rem;
    }
    
    .login-guide__step {
        padding-left: 3.5rem;
    }
    
    .login-guide__step::before {
        left: 1rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .login-connect,
    .login-guide,
    .login-troubleshoot {
        padding: 2rem 0;
    }
    
    .login-connect__title,
    .login-guide__title,
    .login-troubleshoot__title {
        font-size: 1.6rem;
    }
    
    .login-connect__feature,
    .login-guide__step,
    .login-troubleshoot__problem {
        padding: 1.2rem;
    }
    
    .login-guide__step {
        padding-left: 3rem;
    }
    
         .login-guide__step::before {
         left: 0.8rem;
         width: 1.6rem;
         height: 1.6rem;
         font-size: 0.7rem;
     }
 }

/* Deposit page styles */
.deposit-hero {
    background: #0d0c0c;
    padding: 3rem 0;
    min-height: 80vh;
    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__content {
    max-width: 600px;
}

.deposit-hero__title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.deposit-hero__description {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.deposit-hero__image {
    text-align: center;
}

.deposit-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Deposit process section */
.deposit-process {
    background: #1a1818;
    padding: 3rem 0;
}

.deposit-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-process__title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.deposit-process__description {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.deposit-process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.deposit-process__step {
    background: #0d0c0c;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    color: #f5f5f5;
    line-height: 1.6;
    position: relative;
    padding-left: 4rem;
    counter-increment: step-counter;
}

.deposit-process__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b35;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.deposit-process__step:last-child {
    margin-bottom: 0;
}

.deposit-process__step strong {
    color: #ffffff;
    font-weight: 600;
}

/* Deposit methods section */
.deposit-methods {
    background: #0d0c0c;
    padding: 3rem 0;
}

.deposit-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-methods__title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.deposit-methods__description {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.deposit-methods__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: #1a1818;
    border-radius: 8px;
    overflow: hidden;
}

.deposit-methods__table th {
    background: #ff6b35;
    color: #ffffff;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.deposit-methods__table td {
    padding: 1.5rem 1rem;
    color: #f5f5f5;
    border-bottom: 1px solid #333;
}

.deposit-methods__table tr:last-child td {
    border-bottom: none;
}

.deposit-methods__table tr:hover {
    background: #0d0c0c;
}

.deposit-methods .hero__cta {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

/* Deposit security section */
.deposit-security {
    background: #1a1818;
    padding: 3rem 0;
}

.deposit-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.deposit-security__title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.deposit-security__description {
    font-size: 1.1rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.deposit-security__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deposit-security__feature {
    background: #0d0c0c;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    color: #f5f5f5;
    line-height: 1.6;
}

.deposit-security__feature:last-child {
    margin-bottom: 0;
}

.deposit-security__feature strong {
    color: #ff6b35;
    font-weight: 600;
}

.deposit-security__image {
    text-align: center;
}

.deposit-security__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Deposit tips section */
.deposit-tips {
    background: #0d0c0c;
    padding: 3rem 0;
}

.deposit-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposit-tips__title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.deposit-tips__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.deposit-tips__tip {
    background: #1a1818;
    padding: 2rem;
    border-radius: 8px;
}

.deposit-tips__tip-title {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 600;
}

.deposit-tips__tip-desc {
    color: #f5f5f5;
    line-height: 1.6;
}

/* Deposit responsive design */
@media (max-width: 768px) {
    .deposit-hero__container,
    .deposit-security__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .deposit-hero__title,
    .deposit-process__title,
    .deposit-methods__title,
    .deposit-security__title,
    .deposit-tips__title {
        font-size: 2rem;
    }
    
    .deposit-process__step {
        padding: 1.5rem;
        padding-left: 3.5rem;
    }
    
    .deposit-process__step::before {
        left: 1rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }
    
    .deposit-methods__table th,
    .deposit-methods__table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .deposit-tips__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .deposit-hero,
    .deposit-process,
    .deposit-methods,
    .deposit-security,
    .deposit-tips {
        padding: 2rem 0;
    }
    
    .deposit-hero__title,
    .deposit-process__title,
    .deposit-methods__title,
    .deposit-security__title,
    .deposit-tips__title {
        font-size: 1.8rem;
    }
    
    .deposit-process__step {
        padding: 1.2rem;
        padding-left: 3rem;
    }
    
    .deposit-process__step::before {
        left: 0.8rem;
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.7rem;
    }
    
    .deposit-methods__table {
        font-size: 0.8rem;
    }
    
    .deposit-methods__table th,
    .deposit-methods__table td {
        padding: 0.8rem 0.3rem;
    }
} 