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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.internal-link {
    color: #ecfd00;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.internal-link:hover,
.internal-link:focus {
    color: #cd0034;
    border-bottom-color: #cd0034;
    outline: none;
}

.header {
    background-color: #172333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header__logo {
    flex-shrink: 0;
}

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

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

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.header__nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.header__nav-link:hover,
.header__nav-link:focus {
    color: #ecfd00;
    outline: none;
}

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

.header__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 100px;
}

.header__btn--register {
    background-color: #cd0034;
    color: #fff;
    border-color: #cd0034;
}

.header__btn--register:hover,
.header__btn--register:focus {
    background-color: #fff;
    color: #cd0034;
    border-color: #cd0034;
    outline: none;
}

.header__btn--play {
    background-color: #ecfd00;
    color: #172333;
    border-color: #ecfd00;
}

.header__btn--play:hover,
.header__btn--play:focus {
    background-color: #172333;
    color: #ecfd00;
    border-color: #ecfd00;
    outline: none;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header__burger-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header__mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #172333;
    border-top: 1px solid #2a3a4a;
    padding: 1rem;
}

.header__mobile-nav[aria-hidden="false"] {
    display: block;
}

.header__mobile-nav-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.header__mobile-nav-item {
    margin-bottom: 0.5rem;
}

.header__mobile-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #2a3a4a;
    transition: color 0.3s ease;
}

.header__mobile-nav-link:hover,
.header__mobile-nav-link:focus {
    color: #ecfd00;
    outline: none;
}



.main {
    padding: 0;
}

.hero {
    background-image: url('assets/hero.webp');
    background-size: cover;
    background-position: 20% center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 35, 51, 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;
    color: #fff;
    text-align: center;
}

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

.hero__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.hero__cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #172333;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #ecfd00;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: pulse 3.4s infinite;
    box-shadow: 0 0 20px rgba(236, 253, 0, 0.6);
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.hero__cta:hover::before {
    left: 100%;
}

.hero__cta:hover,
.hero__cta:focus {
    background-color: #172333;
    color: #ecfd00;
    border-color: #ecfd00;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(236, 253, 0, 0.8);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(236, 253, 0, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(236, 253, 0, 0.9);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 20px rgba(236, 253, 0, 0.6);
        transform: scale(1);
    }
}

.info {
    background-color: #1a2530;
    padding: 4rem 0;
}

.info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.info__table-wrapper {
    margin-bottom: 3rem;
    overflow-x: auto;
}

.info__table {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
    background-color: #334155;
    border-radius: 8px;
    overflow: hidden;
}

.info__row {
    border-bottom: 1px solid #475569;
    transition: background-color 0.3s ease;
}

.info__row:hover {
    background-color: #3f4f5f;
}

.info__row:last-child {
    border-bottom: none;
}

.info__cell {
    padding: 1rem 1.5rem;
    vertical-align: top;
    text-align: left;
}

.info__cell--label {
    font-weight: 600;
    color: #ecfd00;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 280px;
    min-width: 250px;
    border-right: 2px solid #475569;
}

.info__cell--value {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.4;
}

.info__text {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background-color: #cd0034;
    border-radius: 8px;
    color: #fff;
}

.info__text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: #f0f0f0;
}

.info__image {
    flex-shrink: 0;
}

.info__img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bonus {
    background-color: #1a2530;
    padding: 4rem 0;
}

.bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.bonus__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.bonus__intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #334155;
    border-radius: 8px;
    border-left: 4px solid #ecfd00;
}

.bonus__intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0;
}

.bonus__intro-image {
    text-align: center;
}

.bonus__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bonus__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.bonus__item {
    padding: 2rem;
    background-color: #334155;
    border-radius: 8px;
    border-left: 4px solid #cd0034;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.bonus__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bonus__item-title {
    color: #ecfd00;
    font-weight: 600;
    font-size: 1.1rem;
}

.registration {
    background-color: #1a2530;
    padding: 4rem 0;
}

.registration__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.registration__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.registration__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.registration__info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.registration__text {
    color: #e2e8f0;
}

.registration__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.registration__text p:last-child {
    margin-bottom: 0;
}

.registration__image {
    text-align: center;
}

.registration__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.deposits {
    background-color: #1a2530;
    padding: 4rem 0;
}

.deposits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deposits__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.deposits__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.deposits__intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #334155;
    border-radius: 8px;
    border-left: 4px solid #ecfd00;
}

.deposits__intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0;
}

.deposits__intro-image {
    text-align: center;
}

.deposits__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.deposits__welcome {
    margin-bottom: 3rem;
}

.deposits__welcome-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background-color: #cd0034;
    border-radius: 8px;
}

.deposits__welcome-text {
    color: #fff;
}

.deposits__welcome-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.deposits__cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #172333;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #ecfd00;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deposits__cta:hover,
.deposits__cta:focus {
    background-color: #172333;
    color: #ecfd00;
    border-color: #ecfd00;
    outline: none;
}

.deposits__welcome-image {
    text-align: center;
}

.deposits__welcome-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.deposits__methods {
    color: #e2e8f0;
}

.deposits__methods p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.deposits__table-wrapper {
    overflow-x: auto;
}

.deposits__table {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
    background-color: #334155;
    border-radius: 8px;
    overflow: hidden;
}

.deposits__header-row {
    background-color: #475569;
}

.deposits__header {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #ecfd00;
    font-size: 1rem;
    border-bottom: 2px solid #64748b;
}

.deposits__row {
    border-bottom: 1px solid #475569;
    transition: background-color 0.3s ease;
}

.deposits__row:hover {
    background-color: #3f4f5f;
}

.deposits__row:last-child {
    border-bottom: none;
}

.deposits__cell {
    padding: 1rem;
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.withdrawals {
    background-color: #1a2530;
    padding: 4rem 0;
}

.withdrawals__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.withdrawals__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.withdrawals__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.withdrawals__intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #334155;
    border-radius: 8px;
    border-left: 4px solid #ecfd00;
}

.withdrawals__intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0;
}

.withdrawals__intro-image {
    text-align: center;
}

.withdrawals__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.withdrawals__process {
    color: #e2e8f0;
}

.withdrawals__process p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.withdrawals__process p:last-child {
    margin-bottom: 0;
}

.betting,
.mobile,
.sports,
.slots,
.license,
.support {
    background-color: #1a2530;
    padding: 4rem 0;
}

.betting:nth-of-type(even),
.mobile:nth-of-type(even),
.sports:nth-of-type(even),
.slots:nth-of-type(even),
.license:nth-of-type(even),
.support:nth-of-type(even) {
    background-color: #172333;
}

.betting__container,
.mobile__container,
.sports__container,
.slots__container,
.license__container,
.support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.betting__content,
.mobile__content,
.sports__content,
.slots__content,
.license__content,
.support__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.betting__title,
.mobile__title,
.sports__title,
.slots__title,
.license__title,
.support__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.betting__content p,
.mobile__content p,
.sports__text p,
.slots__content p,
.license__content p,
.support__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.betting__content p:last-child,
.mobile__content p:last-child,
.sports__text p:last-child,
.slots__content p:last-child,
.license__content p:last-child,
.support__content p:last-child {
    margin-bottom: 0;
}

.faq {
    background-color: #1a2530;
    padding: 4rem 0;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.faq__list {
    display: grid;
    gap: 1rem;
}

.faq__item {
    background-color: #334155;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ecfd00;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq__question:hover {
    background-color: #3f4f5f;
}

.faq__question:focus {
    outline: 2px solid #ecfd00;
    outline-offset: -2px;
}

.faq__icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecfd00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer[aria-hidden="false"] {
    max-height: 500px;
}

.faq__answer p {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .header__burger {
        display: flex;
    }
    
    .header__container {
        padding: 0 1rem;
    }
    
    .header__logo-img {
        height: 35px;
    }
    
    .header__actions {
        gap: 0.5rem;
    }
    
    .header__btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .hero {
        background-image: url('assets/hero-m.webp');
        min-height: 70vh;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .hero__cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .info {
        padding: 3rem 0;
    }
    
    .info__content {
        padding: 2rem;
    }
    
    .info__table-wrapper {
        margin-bottom: 2rem;
    }
    
    .info__content {
        padding: 2rem;
    }
    
    .info__cell {
        padding: 0.875rem 1rem;
    }
    
    .info__cell--label {
        width: 200px;
        min-width: 180px;
        font-size: 0.85rem;
    }
    
    .info__text {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .info__img {
        width: 280px;
        margin: 0 auto;
    }
    
    .bonus {
        padding: 3rem 0;
    }
    
    .bonus__content {
        padding: 2rem;
    }
    
    .bonus__title {
        font-size: 2rem;
    }
    
    .bonus__intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .bonus__img {
        max-width: 400px;
    }
    
    .bonus__item {
        padding: 1.5rem;
    }
    
    .registration {
        padding: 3rem 0;
    }
    
    .registration__content {
        padding: 2rem;
    }
    
    .registration__title {
        font-size: 2rem;
    }
    
    .registration__info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .registration__img {
        max-width: 320px;
    }
    
    .deposits {
        padding: 3rem 0;
    }
    
    .deposits__content {
        padding: 2rem;
    }
    
    .deposits__title {
        font-size: 2rem;
    }
    
    .deposits__intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .deposits__img {
        max-width: 400px;
    }
    
    .deposits__welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .deposits__welcome-img {
        max-width: 300px;
    }
    
    .deposits__header {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .deposits__cell {
        padding: 0.875rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .withdrawals {
        padding: 3rem 0;
    }
    
    .withdrawals__content {
        padding: 2rem;
    }
    
    .withdrawals__title {
        font-size: 2rem;
    }
    
    .withdrawals__intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .withdrawals__img {
        max-width: 350px;
    }
    
    .withdrawals__process p {
        font-size: 1rem;
    }
    
    .betting,
    .mobile,
    .sports,
    .slots,
    .license,
    .support {
        padding: 3rem 0;
    }
    
    .betting__content,
    .mobile__content,
    .sports__content,
    .slots__content,
    .license__content,
    .support__content {
        padding: 2rem;
    }
    
    .betting__title,
    .mobile__title,
    .sports__title,
    .slots__title,
    .license__title,
    .support__title {
        font-size: 1.8rem;
    }
    
    .betting__content p,
    .mobile__content p,
    .sports__text p,
    .slots__content p,
    .license__content p,
    .support__content p {
        font-size: 1rem;
    }
    
    .faq {
        padding: 3rem 0;
    }
    
    .faq__content {
        padding: 2rem;
    }
    
    .faq__title {
        font-size: 2rem;
    }
    
    .faq__question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq__icon {
        font-size: 1.3rem;
    }
    
    .faq__answer p {
        padding: 0.75rem 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header__container {
        height: 60px;
    }
    
    .header__logo-img {
        height: 30px;
    }
    
    .header__actions {
        gap: 0.25rem;
    }
    
    .header__btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .hero__container {
        padding: 1.5rem 1rem;
    }
    
    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .info {
        padding: 2rem 0;
    }
    
    .info__content {
        padding: 1.5rem;
    }
    
    .info__content {
        padding: 1.5rem;
    }
    
    .info__cell {
        padding: 0.75rem;
    }
    
    .info__cell--label {
        width: 140px;
        min-width: 130px;
        font-size: 0.8rem;
        border-right: none;
    }
    
    .info__cell--value {
        font-size: 0.9rem;
    }
    
    .info__text {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .info__text-content p {
        font-size: 1rem;
    }
    
    .info__img {
        width: 250px;
    }
    
    .bonus {
        padding: 2rem 0;
    }
    
    .bonus__content {
        padding: 1.5rem;
    }
    
    .bonus__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus__intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .bonus__intro-text p {
        font-size: 1rem;
    }
    
    .bonus__img {
        max-width: 200px;
    }
    
    .bonus__item {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .bonus__item-title {
        font-size: 1rem;
    }
    
    .bonus__img {
        max-width: 100%;
        width: 350px;
    }
    
    .registration {
        padding: 2rem 0;
    }
    
    .registration__content {
        padding: 1.5rem;
    }
    
    .registration__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .registration__text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .registration__img {
        max-width: 280px;
    }
    
    .deposits {
        padding: 2rem 0;
    }
    
    .deposits__content {
        padding: 1.5rem;
    }
    
    .deposits__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .deposits__intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .deposits__intro-text p {
        font-size: 1rem;
    }
    
    .deposits__img {
        max-width: 350px;
    }
    
    .deposits__welcome-content {
        padding: 1.5rem;
    }
    
    .deposits__welcome-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .deposits__cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .deposits__welcome-img {
        max-width: 280px;
    }
    
    .deposits__methods p {
        font-size: 1rem;
    }
    
    .deposits__header {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .deposits__cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .withdrawals {
        padding: 2rem 0;
    }
    
    .withdrawals__content {
        padding: 1.5rem;
    }
    
    .withdrawals__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .withdrawals__intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .withdrawals__intro-text p {
        font-size: 1rem;
    }
    
    .withdrawals__img {
        max-width: 320px;
    }
    
    .withdrawals__process p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .betting,
    .mobile,
    .sports,
    .slots,
    .license,
    .support {
        padding: 2rem 0;
    }
    
    .betting__content,
    .mobile__content,
    .sports__content,
    .slots__content,
    .license__content,
    .support__content {
        padding: 1.5rem;
    }
    
    .betting__title,
    .mobile__title,
    .sports__title,
    .slots__title,
    .license__title,
    .support__title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .betting__content p,
    .mobile__content p,
    .sports__text p,
    .slots__content p,
    .license__content p,
    .support__content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .faq {
        padding: 2rem 0;
    }
    
    .faq__content {
        padding: 1.5rem;
    }
    
    .faq__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .faq__question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq__icon {
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }
    
    .faq__answer p {
        padding: 0.75rem 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* Bonus Page Specific Styles */
.bonus-hero {
    background-color: #1a2530;
    padding: 4rem 0;
}

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

.bonus-hero__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.bonus-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bonus-hero__description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-hero__cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #172333;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid #ecfd00;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 3.4s infinite;
    box-shadow: 0 0 20px rgba(236, 253, 0, 0.6);
}

.bonus-hero__cta:hover,
.bonus-hero__cta:focus {
    background-color: #172333;
    color: #ecfd00;
    border-color: #ecfd00;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(236, 253, 0, 0.8);
}

.bonus-overview {
    background-color: #172333;
    padding: 4rem 0;
}

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

.bonus-overview__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.bonus-overview__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.bonus-overview__text p:last-child {
    margin-bottom: 0;
}

.bonus-types {
    background-color: #1a2530;
    padding: 4rem 0;
}

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

.bonus-types__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.bonus-types__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bonus-types__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.first-deposit {
    background-color: #172333;
    padding: 4rem 0;
}

.first-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.first-deposit__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.first-deposit__info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.first-deposit__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.first-deposit__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.first-deposit__text p:last-child {
    margin-bottom: 0;
}

.first-deposit__image {
    text-align: center;
}

.first-deposit__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.first-deposit__full-width {
    margin-top: 3rem;
}

.first-deposit__full-width p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.first-deposit__full-width p:last-child {
    margin-bottom: 0;
}

.welcome-bonus {
    background-color: #1a2530;
    padding: 4rem 0;
}

.welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.welcome-bonus__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.welcome-bonus__info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.welcome-bonus__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-bonus__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.welcome-bonus__text p:last-of-type {
    margin-bottom: 2rem;
}

.welcome-bonus__cta {
    display: inline-block;
    background-color: #cd0034;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #cd0034;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-bonus__cta:hover,
.welcome-bonus__cta:focus {
    background-color: #fff;
    color: #cd0034;
    border-color: #cd0034;
    outline: none;
}

.welcome-bonus__image {
    text-align: center;
}

.welcome-bonus__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.welcome-bonus__full-width {
    margin-top: 3rem;
}

.welcome-bonus__full-width p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.welcome-bonus__full-width p:last-of-type {
    margin-bottom: 2rem;
}

.welcome-bonus__full-width .welcome-bonus__cta {
    display: inline-block;
    background-color: #cd0034;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #cd0034;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-bonus__full-width .welcome-bonus__cta:hover,
.welcome-bonus__full-width .welcome-bonus__cta:focus {
    background-color: #fff;
    color: #cd0034;
    border-color: #cd0034;
    outline: none;
}

.promo-codes {
    background-color: #172333;
    padding: 4rem 0;
}

.promo-codes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-codes__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.promo-codes__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promo-codes__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .bonus-hero {
        padding: 3rem 0;
    }
    
    .bonus-hero__content {
        padding: 2rem;
    }
    
    .bonus-hero__title {
        font-size: 2.2rem;
    }
    
    .bonus-hero__description {
        font-size: 1rem;
    }
    
    .bonus-hero__cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-overview,
    .bonus-types,
    .first-deposit,
    .welcome-bonus,
    .promo-codes {
        padding: 3rem 0;
    }
    
    .bonus-overview__content,
    .bonus-types__content,
    .first-deposit__content,
    .welcome-bonus__content,
    .promo-codes__content {
        padding: 2rem;
    }
    
    .bonus-types__title {
        font-size: 2rem;
    }
    
    .first-deposit__info,
    .welcome-bonus__info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .first-deposit__title,
    .welcome-bonus__title,
    .promo-codes__title {
        font-size: 1.8rem;
    }
    
    .first-deposit__img,
    .welcome-bonus__img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .bonus-hero {
        padding: 2rem 0;
    }
    
    .bonus-hero__content {
        padding: 1.5rem;
    }
    
    .bonus-hero__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-hero__description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .bonus-hero__cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bonus-overview,
    .bonus-types,
    .first-deposit,
    .welcome-bonus,
    .promo-codes {
        padding: 2rem 0;
    }
    
    .bonus-overview__content,
    .bonus-types__content,
    .first-deposit__content,
    .welcome-bonus__content,
    .promo-codes__content {
        padding: 1.5rem;
    }
    
    .bonus-types__title {
        font-size: 1.6rem;
    }
    
    .first-deposit__title,
    .welcome-bonus__title,
    .promo-codes__title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .bonus-overview__text p,
    .bonus-types__content p,
    .first-deposit__text p,
    .welcome-bonus__text p,
    .promo-codes__content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .first-deposit__img,
    .welcome-bonus__img {
        max-width: 300px;
    }
    
    .welcome-bonus__cta,
    .welcome-bonus__full-width .welcome-bonus__cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* App Page Specific Styles */
.app-hero {
    background-color: #1a2530;
    padding: 4rem 0;
}

.app-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-hero__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.app-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.app-hero__description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-hero__cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #172333;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid #ecfd00;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 3.4s infinite;
    box-shadow: 0 0 20px rgba(236, 253, 0, 0.6);
}

.app-hero__cta:hover,
.app-hero__cta:focus {
    background-color: #172333;
    color: #ecfd00;
    border-color: #ecfd00;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(236, 253, 0, 0.8);
}

.app-overview {
    background-color: #172333;
    padding: 4rem 0;
}

.app-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-overview__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.app-overview__info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.app-overview__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.app-overview__text p:last-child {
    margin-bottom: 0;
}

.app-overview__image {
    text-align: center;
}

.app-overview__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.app-platforms {
    background-color: #1a2530;
    padding: 4rem 0;
}

.app-platforms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-platforms__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.app-platforms__info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.app-platforms__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.app-platforms__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.app-platforms__text p:last-of-type {
    margin-bottom: 2rem;
}

.app-platforms__cta {
    display: inline-block;
    background-color: #cd0034;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #cd0034;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-platforms__cta:hover,
.app-platforms__cta:focus {
    background-color: #fff;
    color: #cd0034;
    border-color: #cd0034;
    outline: none;
}

.app-platforms__image {
    text-align: center;
}

.app-platforms__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.app-platforms__full-width {
    margin-top: 3rem;
}

.app-platforms__full-width p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.app-platforms__full-width p:last-of-type {
    margin-bottom: 2rem;
}

.app-platforms__full-width .app-platforms__cta {
    display: inline-block;
    background-color: #cd0034;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #cd0034;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-platforms__full-width .app-platforms__cta:hover,
.app-platforms__full-width .app-platforms__cta:focus {
    background-color: #fff;
    color: #cd0034;
    border-color: #cd0034;
    outline: none;
}

.app-apk {
    background-color: #172333;
    padding: 4rem 0;
}

.app-apk__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-apk__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.app-apk__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.app-apk__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.app-summary {
    background-color: #1a2530;
    padding: 4rem 0;
}

.app-summary__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-summary__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.app-summary__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.app-summary__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .app-hero {
        padding: 3rem 0;
    }
    
    .app-hero__content {
        padding: 2rem;
    }
    
    .app-hero__title {
        font-size: 2.2rem;
    }
    
    .app-hero__description {
        font-size: 1rem;
    }
    
    .app-hero__cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .app-overview,
    .app-platforms,
    .app-apk,
    .app-summary {
        padding: 3rem 0;
    }
    
    .app-overview__content,
    .app-platforms__content,
    .app-apk__content,
    .app-summary__content {
        padding: 2rem;
    }
    
    .app-overview__info,
    .app-platforms__info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .app-platforms__title,
    .app-apk__title,
    .app-summary__title {
        font-size: 2rem;
    }
    
    .app-overview__img,
    .app-platforms__img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .app-hero {
        padding: 2rem 0;
    }
    
    .app-hero__content {
        padding: 1.5rem;
    }
    
    .app-hero__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .app-hero__description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .app-hero__cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .app-overview,
    .app-platforms,
    .app-apk,
    .app-summary {
        padding: 2rem 0;
    }
    
    .app-overview__content,
    .app-platforms__content,
    .app-apk__content,
    .app-summary__content {
        padding: 1.5rem;
    }
    
    .app-platforms__title,
    .app-apk__title,
    .app-summary__title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .app-overview__text p,
    .app-platforms__text p,
    .app-apk__content p,
    .app-summary__content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .app-overview__img,
    .app-platforms__img {
        max-width: 300px;
    }
    
    .app-platforms__cta,
    .app-platforms__full-width .app-platforms__cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Login Page Specific Styles */
.login-hero {
    background-color: #1a2530;
    padding: 4rem 0;
}

.login-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-hero__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.login-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.login-hero__description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-hero__cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #172333;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid #ecfd00;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 3.4s infinite;
    box-shadow: 0 0 20px rgba(236, 253, 0, 0.6);
}

.login-hero__cta:hover,
.login-hero__cta:focus {
    background-color: #172333;
    color: #ecfd00;
    border-color: #ecfd00;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(236, 253, 0, 0.8);
}

.login-overview {
    background-color: #172333;
    padding: 4rem 0;
}

.login-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-overview__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.login-overview__info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.login-overview__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.login-overview__text p:last-child {
    margin-bottom: 0;
}

.login-overview__image {
    text-align: center;
}

.login-overview__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.login-overview__full-width {
    margin-top: 3rem;
}

.login-overview__full-width p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.login-overview__full-width p:last-child {
    margin-bottom: 0;
}

.registration-process {
    background-color: #1a2530;
    padding: 4rem 0;
}

.registration-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.registration-process__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.registration-process__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.registration-process__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.login-process {
    background-color: #172333;
    padding: 4rem 0;
}

.login-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-process__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.login-process__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.login-process__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-process__content p:last-of-type {
    margin-bottom: 2rem;
}

.login-process__cta {
    display: inline-block;
    background-color: #cd0034;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #cd0034;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-process__cta:hover,
.login-process__cta:focus {
    background-color: #fff;
    color: #cd0034;
    border-color: #cd0034;
    outline: none;
}

.registration-bonus {
    background-color: #1a2530;
    padding: 4rem 0;
}

.registration-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.registration-bonus__content {
    background-color: #2a3a4a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}

.registration-bonus__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.registration-bonus__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.registration-bonus__content p:last-of-type {
    margin-bottom: 2rem;
}

.registration-bonus__cta {
    display: inline-block;
    background-color: #cd0034;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #cd0034;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.registration-bonus__cta:hover,
.registration-bonus__cta:focus {
    background-color: #fff;
    color: #cd0034;
    border-color: #cd0034;
    outline: none;
}

@media (max-width: 768px) {
    .login-hero {
        padding: 3rem 0;
    }
    
    .login-hero__content {
        padding: 2rem;
    }
    
    .login-hero__title {
        font-size: 2.2rem;
    }
    
    .login-hero__description {
        font-size: 1rem;
    }
    
    .login-hero__cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .login-overview,
    .registration-process,
    .login-process,
    .registration-bonus {
        padding: 3rem 0;
    }
    
    .login-overview__content,
    .registration-process__content,
    .login-process__content,
    .registration-bonus__content {
        padding: 2rem;
    }
    
    .login-overview__info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .registration-process__title,
    .login-process__title,
    .registration-bonus__title {
        font-size: 2rem;
    }
    
    .login-overview__img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .login-hero {
        padding: 2rem 0;
    }
    
    .login-hero__content {
        padding: 1.5rem;
    }
    
    .login-hero__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .login-hero__description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .login-hero__cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .login-overview,
    .registration-process,
    .login-process,
    .registration-bonus {
        padding: 2rem 0;
    }
    
    .login-overview__content,
    .registration-process__content,
    .login-process__content,
    .registration-bonus__content {
        padding: 1.5rem;
    }
    
    .registration-process__title,
    .login-process__title,
    .registration-bonus__title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .login-overview__text p,
    .registration-process__content p,
    .login-process__content p,
    .registration-bonus__content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .login-overview__img {
        max-width: 300px;
    }
    
    .login-process__cta,
    .registration-bonus__cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.footer {
    background-color: #172333;
    padding: 3rem 0 2rem;
    border-top: 2px solid #ecfd00;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer__info {
    color: #e2e8f0;
}

.footer__copyright {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ecfd00;
    margin-bottom: 1.5rem;
}

.footer__disclaimer {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #1a2530;
    border-radius: 8px;
    border-left: 4px solid #cd0034;
}

.footer__notices {
    display: grid;
    gap: 1rem;
}

.footer__age-notice,
.footer__responsible {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 6px;
    margin: 0;
}

.footer__age-notice {
    background-color: #cd0034;
    color: #fff;
}

.footer__responsible {
    background-color: #ecfd00;
    color: #172333;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__logo-img {
        height: 40px;
        margin: 0 auto;
    }
    
    .footer__copyright {
        font-size: 1rem;
    }
    
    .footer__disclaimer {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
    
    .footer__age-notice,
    .footer__responsible {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer__content {
        gap: 1.5rem;
    }
    
    .footer__logo-img {
        height: 35px;
    }
    
    .footer__copyright {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .footer__disclaimer {
        font-size: 0.9rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer__notices {
        gap: 0.75rem;
    }
    
    .footer__age-notice,
    .footer__responsible {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
} 