:root {
    --header-bg: #0c0937;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-300: #d1d5db;
    --gray-600: #6b7280;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --green-600: #059669;
    --green-700: #047857;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--white);
}

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

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

.header__logo {
    flex-shrink: 0;
}

.header__logo-link {
    display: block;
    line-height: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.header__search {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-form__input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 25px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--gray-600);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-form__input:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-form__input::placeholder {
    color: var(--gray-600);
}

.search-form__button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-600);
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.search-form__button:hover {
    background-color: var(--gray-100);
    color: var(--blue-600);
}

.header__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.header__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
}

.header__btn--login {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.header__btn--login:hover {
    background-color: var(--white);
    color: var(--header-bg);
}

.header__btn--signup {
    background-color: var(--green-600);
    color: var(--white);
    border: 2px solid var(--green-600);
}

.header__btn--signup:hover {
    background-color: var(--green-700);
    border-color: var(--green-700);
}

@media (max-width: 768px) {
    .header__container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .header__logo-img {
        height: 35px;
    }
    
    .header__search {
        max-width: none;
        flex: 1;
        min-width: 0;
    }
    
    .search-form__input {
        padding: 0.6rem 2.5rem 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .header__actions {
        gap: 0.5rem;
    }
    
    .header__btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 90px;
    }
}

@media (max-width: 640px) {
    .header__container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .header__logo {
        order: 1;
    }
    
    .header__actions {
        order: 2;
        gap: 0.5rem;
    }
    
    .header__search {
        order: 3;
        width: 100%;
        flex: none;
    }
    
    .header__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
}

.main {
    min-height: calc(100vh - 80px);
}

.hero {
    background-image: linear-gradient(rgba(12, 9, 55, 0.7), rgba(12, 9, 55, 0.2)), url('assets/bg-u-desktop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
}

.hero__content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.hero__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero__container {
        padding: 1.5rem 1rem;
    }
    
    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero__title {
        font-size: 1.8rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

.info {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.info__content {
    max-width: 900px;
    margin: 0 auto;
}

.info__content--two-columns {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info__table-container {
    width: 100%;
}

.info__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info__img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.info__img:hover {
    transform: scale(1.02);
}

.info__description {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.info__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
}

.info__row {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-600);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info__row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.info__cell {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.info__cell--left {
    font-size: 0.9rem;
    font-weight: 600;
    width: 35%;
    border-radius: 8px 0 0 8px;
}

.info__cell--right {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    width: 65%;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 968px) {
    .info__content--two-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .info {
        padding: 3rem 0;
    }
    
    .info__container {
        padding: 0 1rem;
    }
    
    .info__content--two-columns {
        gap: 2.5rem;
    }
    
    .info__description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .info__table {
        border-spacing: 0 0.5rem;
    }
    
    .info__row {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .info__cell {
        display: block;
        width: 100% !important;
        text-align: center;
        border-radius: 0;
        padding: 0.5rem 0.75rem;
    }
    
    .info__cell--left {
        font-size: 0.85rem;
        border-radius: 8px 8px 0 0;
        padding-bottom: 0.4rem;
    }
    
    .info__cell--right {
        font-size: 0.8rem;
        border-radius: 0 0 8px 8px;
        padding-top: 0.4rem;
    }
}

@media (max-width: 480px) {
    .info {
        padding: 2.5rem 0;
    }
    
    .info__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .info__table {
        border-spacing: 0 0.4rem;
    }
    
    .info__cell {
        padding: 0.4rem 0.6rem;
    }
    
    .info__cell--left {
        font-size: 0.8rem;
    }
    
    .info__cell--right {
        font-size: 0.75rem;
    }
}

.registration {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.registration__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.registration__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.registration__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
}

.registration__intro,
.registration__login-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.registration__steps,
.registration__login-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.registration__steps li,
.registration__login-steps li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.registration__steps li:last-child,
.registration__login-steps li:last-child {
    border-bottom: none;
}

.registration__steps li strong,
.registration__login-steps li strong {
    color: var(--white);
    font-weight: 600;
}

.registration__security {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    padding: 1rem;
    background-color: rgba(5, 150, 105, 0.15);
    border-left: 4px solid var(--green-600);
    border-radius: 8px;
    line-height: 1.6;
}

.registration__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.registration__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.registration__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.registration__img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.registration__img:hover {
    transform: scale(1.02);
}

.registration__documents {
    margin-top: 3rem;
    text-align: left;
}

.registration__documents-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: none;
    margin: 0;
}

@media (max-width: 968px) {
    .registration__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .registration__image {
        order: -1;
    }
    
    .registration__title {
        font-size: 2.2rem;
    }
    
    .registration__subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .registration {
        padding: 3rem 0;
    }
    
    .registration__container {
        padding: 0 1rem;
    }
    
    .registration__content {
        gap: 2.5rem;
    }
    
    .registration__title {
        font-size: 1.9rem;
        margin-bottom: 1.25rem;
    }
    
    .registration__subtitle {
        font-size: 1.4rem;
        margin: 2rem 0 0.75rem 0;
    }
    
    .registration__intro,
    .registration__login-intro {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .registration__steps li,
    .registration__login-steps li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .registration__security {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .registration__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .registration {
        padding: 2.5rem 0;
    }
    
    .registration__title {
        font-size: 1.6rem;
    }
    
    .registration__subtitle {
        font-size: 1.3rem;
    }
    
    .registration__intro,
    .registration__login-intro {
        font-size: 1rem;
    }
    
    .registration__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

.games {
    background-color: #0e1147;
    padding: 4rem 0 1rem 0;
    color: var(--white);
}

.games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.games__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.games__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.games__slots,
.games__live,
.games__sports {
    margin-bottom: 4rem;
}

.games__slots {
    display: block;
}

.games__live {
    display: block;
}

.games__sports {
    display: block;
}

.games__slots-intro,
.games__sports-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.games__intro,
.games__live-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.games__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.games__list li:last-child {
    border-bottom: none;
}

.games__list li strong {
    color: var(--white);
    font-weight: 600;
}

.games__img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.games__img:hover {
    transform: scale(1.02);
}

.games__features {
    display: grid;
    gap: 1.5rem;
}

.games__live-image {
    width: 100%;
    margin-bottom: 3rem;
    text-align: center;
}

.games__live-image .games__img {
    width: 100%;
    max-width: 100%;
}

.games__feature {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-600);
}

.games__feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.games__feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 968px) {
    .games__slots {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .games__slots .games__slots-image {
        order: -1;
    }
    
    .games__title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .games__subtitle {
        font-size: 1.6rem;
    }
    
    .games__live-image {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .games {
        padding: 3rem 0;
    }
    
    .games__container {
        padding: 0 1rem;
    }
    
    .games__slots {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .games__live {
        margin-bottom: 3rem;
    }
    
    .games__live-image {
        margin-bottom: 2rem;
    }
    
    .games__title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    
    .games__subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .games__intro,
    .games__live-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .games__list li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .games__feature {
        padding: 1.25rem;
    }
    
    .games__feature-title {
        font-size: 1rem;
    }
    
    .games__feature p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 2.5rem 0;
    }
    
    .games__title {
        font-size: 1.6rem;
    }
    
    .games__subtitle {
        font-size: 1.3rem;
    }
    
    .games__slots {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .games__live {
        margin-bottom: 2.5rem;
    }
    
    .games__live-image {
        margin-bottom: 1.5rem;
    }
    
    .games__feature {
        padding: 1rem;
    }
}

.bonus {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.bonus__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.bonus__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bonus__intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.bonus__welcome,
.bonus__casino,
.bonus__sports {
    margin-bottom: 4rem;
}

.bonus__welcome {
    display: block;
}

.bonus__casino {
    display: block;
}

.bonus__sports {
    display: block;
}

.bonus__welcome-intro,
.bonus__casino-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.bonus__welcome-types,
.bonus__casino-types,
.bonus__sports-types {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.bonus__welcome-image {
    width: 100%;
    margin-top: 3rem;
    text-align: center;
}

.bonus__welcome-image .bonus__img {
    width: 100%;
    max-width: 800px;
}

.bonus__welcome-types {
    margin-bottom: 2.5rem;
}

.bonus__type,
.bonus__promo {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-600);
}

.bonus__type:last-child,
.bonus__promo:last-child {
    margin-bottom: 0;
}

.bonus__type-title,
.bonus__promo-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bonus__type p,
.bonus__promo p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.bonus__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.bonus__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.bonus__img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.bonus__img:hover {
    transform: scale(1.02);
}

.bonus__promotions-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus__img--full {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.bonus__promotions-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.bonus__promo-list {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .bonus__title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .bonus__subtitle {
        font-size: 1.6rem;
    }
    
    .bonus__welcome-image {
        margin-bottom: 2.5rem;
    }
    
    .bonus__promotions {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .bonus__promotions-image {
        order: -1;
    }
    
    .bonus__img--full {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .bonus {
        padding: 3rem 0;
    }
    
    .bonus__container {
        padding: 0 1rem;
    }
    
    .bonus__welcome,
    .bonus__promotions {
        margin-bottom: 3rem;
    }
    
    .bonus__welcome-image {
        margin-bottom: 2rem;
    }
    
    .bonus__promotions {
        gap: 2rem;
    }
    
    .bonus__img--full {
        max-width: 350px;
    }
    
    .bonus__title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    
    .bonus__subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .bonus__welcome-types {
        margin-bottom: 2rem;
    }
    
    .bonus__type,
    .bonus__promo {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus__type-title,
    .bonus__promo-title {
        font-size: 1rem;
    }
    
    .bonus__type p,
    .bonus__promo p {
        font-size: 0.95rem;
    }
    
    .bonus__promotions-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .bonus__promotions-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .bonus {
        padding: 2.5rem 0;
    }
    
    .bonus__title {
        font-size: 1.6rem;
    }
    
    .bonus__subtitle {
        font-size: 1.3rem;
    }
    
    .bonus__welcome,
    .bonus__promotions {
        margin-bottom: 2.5rem;
    }
    
    .bonus__type,
    .bonus__promo {
        padding: 1rem;
    }
    
    .bonus__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .bonus__welcome-image {
        margin-bottom: 1.5rem;
    }
    
    .bonus__promotions {
        gap: 1.5rem;
    }
    
    .bonus__img--full {
        max-width: 300px;
    }
}

.app-licensing {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.app-licensing__app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.app-licensing__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.app-licensing__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.app-licensing__app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-licensing__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.app-licensing__img:hover {
    transform: scale(1.02);
}

.security {
    background-color: #0e1147;
    padding: 2.5rem 0;
    color: var(--white);
}

.security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: left;
}

.security__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.security__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: none;
    margin: 0;
}

.support {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

.support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.support__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.support__methods {
    display: grid;
    gap: 2rem;
}

.support__method {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-600);
}

.support__method-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.support__method p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.support__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    margin-top: 2.5rem;
}

.support__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

@media (max-width: 968px) {
    .app-licensing__app {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .app-licensing__app-image {
        order: -1;
    }
    
    .app-licensing__title {
        font-size: 2.2rem;
    }
    
    .support__title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .app-licensing {
        padding: 3rem 0;
    }
    
    .support {
        padding: 3rem 0;
    }
    
    .app-licensing__container,
    .support__container {
        padding: 0 1rem;
    }
    
    .app-licensing__app {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .app-licensing__title {
        font-size: 1.9rem;
        margin-bottom: 1.25rem;
    }
    
    .support__title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    
    .app-licensing__text {
        font-size: 1rem;
    }
    
    .support__method {
        padding: 1.5rem;
    }
    
    .support__method-title {
        font-size: 1.2rem;
    }
    
    .support__method p {
        font-size: 0.95rem;
    }
    
    .support__methods {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .app-licensing {
        padding: 2.5rem 0;
    }
    
    .support {
        padding: 2.5rem 0;
    }
    
    .app-licensing__title {
        font-size: 1.6rem;
    }
    
    .support__title {
        font-size: 1.6rem;
    }
    
    .app-licensing__app {
        margin-bottom: 2.5rem;
    }
    
    .support__method {
        padding: 1.25rem;
    }
    
    .support__method-title {
        font-size: 1.1rem;
    }
}

.faq {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.faq__items {
    display: grid;
    gap: 1.5rem;
}

.faq__item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-600);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq__item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq__question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.faq__question:hover {
    color: var(--green-600);
}

.faq__question:focus {
    outline: 2px solid var(--green-600);
    outline-offset: 2px;
}

.faq__icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    color: var(--green-600);
}

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

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

.faq__answer.active {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.faq__answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq__container {
        padding: 0 1rem;
    }
    
    .faq__title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    
    .faq__question {
        padding: 1.25rem;
        font-size: 1.1rem;
    }
    
    .faq__answer.active {
        padding: 0.75rem 1.25rem 1.25rem 1.25rem;
    }
    
    .faq__answer p {
        font-size: 0.95rem;
    }
    
    .faq__items {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 2.5rem 0;
    }
    
    .faq__title {
        font-size: 1.6rem;
    }
    
    .faq__question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq__answer.active {
        padding: 0.5rem 1rem 1rem 1rem;
    }
}

/* Bonus Page Styles */
.bonus-hero {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.bonus-hero__title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bonus-hero__cta {
    display: block;
    width: fit-content;
    margin: 0 auto 3rem auto;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.bonus-hero__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

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

.bonus-hero__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.bonus-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bonus-options {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.bonus-options__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bonus-options__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.bonus-no-deposit {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

.bonus-no-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bonus-no-deposit__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bonus-no-deposit__text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.bonus-no-deposit__image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.welcome-bonus {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.welcome-bonus__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.welcome-bonus__types {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.welcome-bonus__type {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--green-600);
}

.welcome-bonus__type-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--green-600);
    line-height: 1.3;
}

.welcome-bonus__details p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.welcome-bonus__highlight {
    background-color: rgba(5, 150, 105, 0.15);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--green-600);
    font-style: italic;
}

.welcome-bonus__note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.welcome-bonus__cta-container {
    text-align: center;
}

.welcome-bonus__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.welcome-bonus__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.weekly-bonus {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.weekly-bonus__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.weekly-bonus__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.weekly-bonus__list {
    display: grid;
    gap: 1.5rem;
}

.weekly-bonus__item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--green-600);
}

.weekly-bonus__item-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--green-600);
    line-height: 1.3;
}

.weekly-bonus__item p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 968px) {
    .bonus-hero__content,
    .bonus-no-deposit__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-no-deposit__image {
        order: -1;
    }
    
    .bonus-hero__title {
        font-size: 2.5rem;
    }
    
    .bonus-options__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .bonus-hero,
    .bonus-options,
    .bonus-no-deposit,
    .welcome-bonus,
    .weekly-bonus {
        padding: 3rem 0;
    }
    
    .bonus-hero__container,
    .bonus-options__container,
    .bonus-no-deposit__container,
    .welcome-bonus__container,
    .weekly-bonus__container {
        padding: 0 1rem;
    }
    
    .bonus-hero__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-options__title {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-no-deposit__title,
    .welcome-bonus__title,
    .weekly-bonus__title {
        font-size: 1.6rem;
    }
    
    .welcome-bonus__type {
        padding: 1.5rem;
    }
    
    .welcome-bonus__type-title {
        font-size: 1.2rem;
    }
    
    .weekly-bonus__item {
        padding: 1.25rem;
    }
    
    .weekly-bonus__item-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .bonus-hero,
    .bonus-options,
    .bonus-no-deposit,
    .welcome-bonus,
    .weekly-bonus {
        padding: 2.5rem 0;
    }
    
    .bonus-hero__title {
        font-size: 1.8rem;
    }
    
    .bonus-options__title {
        font-size: 1.6rem;
    }
    
    .bonus-no-deposit__title,
    .welcome-bonus__title,
    .weekly-bonus__title {
        font-size: 1.4rem;
    }
    
    .welcome-bonus__type {
        padding: 1.25rem;
    }
    
    .weekly-bonus__item {
        padding: 1rem;
    }
}

/* Internal linking styles */
.internal-linking {
    color: var(--green-600);
    text-decoration: underline;
    text-decoration-color: var(--green-600);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

.internal-linking:hover {
    color: var(--green-700);
    text-decoration-color: var(--green-700);
    text-decoration-thickness: 2px;
}

/* Login Page Styles */
.login-hero {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.login-hero__title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.login-hero__cta {
    display: block;
    width: fit-content;
    margin: 0 auto 3rem auto;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.login-hero__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

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

.login-hero__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.login-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.account-creation {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

.account-creation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.account-creation__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.account-creation__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.account-creation__list {
    padding-left: 1.5rem;
    counter-reset: step-counter;
}

.account-creation__list li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    counter-increment: step-counter;
}

.account-creation__list li strong {
    color: var(--white);
    font-weight: 600;
}

.account-creation__image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.verification {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

.verification__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.verification__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.verification__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.verification__cta-container {
    text-align: center;
    margin-bottom: 3rem;
}

.verification__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.verification__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.verification__steps {
    display: grid;
    gap: 1.5rem;
}

.verification__step {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--green-600);
}

.verification__step-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--green-600);
    line-height: 1.3;
}

.verification__step p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 968px) {
    .login-hero__content,
    .account-creation__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .account-creation__image {
        order: -1;
    }
    
    .login-hero__title {
        font-size: 2.5rem;
    }
    
    .account-creation__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .login-hero,
    .account-creation,
    .verification {
        padding: 3rem 0;
    }
    
    .login-hero__container,
    .account-creation__container,
    .verification__container {
        padding: 0 1rem;
    }
    
    .login-hero__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .account-creation__title {
        font-size: 1.9rem;
        margin-bottom: 1.25rem;
    }
    
    .verification__title {
        font-size: 1.6rem;
    }
    
    .account-creation__intro,
    .verification__intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .account-creation__list li {
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
    }
    
    .verification__step {
        padding: 1.25rem;
    }
    
    .verification__step-title {
        font-size: 1.1rem;
    }
    
    .verification__step p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-hero,
    .account-creation,
    .verification {
        padding: 2.5rem 0;
    }
    
    .login-hero__title {
        font-size: 1.8rem;
    }
    
    .account-creation__title {
        font-size: 1.6rem;
    }
    
    .verification__title {
        font-size: 1.4rem;
    }
    
    .verification__step {
        padding: 1rem;
    }
    
    .account-creation__list {
        padding-left: 1rem;
    }
}

.footer {
    background-color: var(--header-bg);
    padding: 3rem 0 1.5rem 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo-link {
    display: block;
    line-height: 0;
}

.footer__logo-img {
    height: 35px;
    width: auto;
    max-width: 120px;
}

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

.footer__nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--green-600);
}

.footer__payments {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem 1.5rem;
}

.footer__payment-img {
    height: 50px;
    width: auto;
    max-width: 100px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.4rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer__payment-img:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}



.footer__copyright p,
.footer__notice p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer__notice p {
    font-style: italic;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer__container {
        padding: 0 1rem;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer__nav-list {
        gap: 1.5rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer__copyright p,
    .footer__notice p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 0.75rem 0;
    }
    
    .footer__nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer__nav-link {
        font-size: 0.95rem;
    }
    
    .footer__copyright p,
    .footer__notice p {
        font-size: 0.8rem;
    }
}

/* Bonus Page Specific Styles */
.bonus-intro {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.bonus-intro__content {
    text-align: left;
}

.bonus-intro__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.bonus-intro__image {
    margin-top: 2rem;
    text-align: center;
}

.bonus-intro__img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.welcome-bonus {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.welcome-bonus__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.welcome-bonus__offer,
.welcome-bonus__sports,
.welcome-bonus__promo {
    margin-bottom: 3rem;
}

.welcome-bonus__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.welcome-bonus__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.welcome-bonus__image {
    margin-top: 2rem;
    text-align: center;
}

.welcome-bonus__img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.loyalty-bonus {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.loyalty-bonus__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.loyalty-bonus__intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.loyalty-bonus__list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.loyalty-bonus__item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.loyalty-bonus__item:last-child {
    border-bottom: none;
}

.loyalty-bonus__cta-container {
    text-align: center;
}

.loyalty-bonus__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.loyalty-bonus__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.sports-bonus {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.sports-bonus__image {
    margin-bottom: 3rem;
    text-align: center;
}

.sports-bonus__img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sports-bonus__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.sports-bonus__intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.sports-bonus__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sports-bonus__item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-600);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.sports-bonus__item:last-child {
    margin-bottom: 0;
}

.sports-bonus__item strong {
    color: var(--white);
    font-weight: 600;
}

/* Responsive styles for bonus page */
@media (max-width: 768px) {
    .bonus-intro,
    .welcome-bonus,
    .loyalty-bonus,
    .sports-bonus {
        padding: 3rem 0;
    }
    
    .bonus-intro__container,
    .welcome-bonus__container,
    .loyalty-bonus__container,
    .sports-bonus__container {
        padding: 0 1rem;
    }
    
    .welcome-bonus__title,
    .loyalty-bonus__title,
    .sports-bonus__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .welcome-bonus__subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .bonus-intro__text,
    .welcome-bonus__text,
    .loyalty-bonus__intro,
    .sports-bonus__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .loyalty-bonus__item,
    .sports-bonus__item {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .loyalty-bonus__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-bonus__title,
    .loyalty-bonus__title,
    .sports-bonus__title {
        font-size: 1.7rem;
    }
    
    .welcome-bonus__subtitle {
        font-size: 1.3rem;
    }
    
         .sports-bonus__item {
         padding: 1rem;
     }
 }

/* Payment Page Specific Styles */
.payment-intro {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

.payment-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.payment-intro__content {
    text-align: left;
}

.payment-intro__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.payment-intro__image {
    margin-top: 2rem;
    text-align: center;
}

.payment-intro__img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.deposit-process {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.deposit-process__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.deposit-process__intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.deposit-process__steps {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    counter-reset: step-counter;
}

.deposit-process__step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--green-600);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    counter-increment: step-counter;
    position: relative;
}

.deposit-process__step:before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 15px;
    background-color: var(--green-600);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-process__step:last-child {
    margin-bottom: 0;
}

.deposit-process__step strong {
    color: var(--white);
    font-weight: 600;
}

.deposit-process__cta-container {
    text-align: center;
}

.deposit-process__cta {
    display: inline-block;
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.deposit-process__cta:hover {
    background-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.currency-options {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

.currency-options__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.currency-options__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.currency-options__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.withdrawal-process {
    background-color: #0e1147;
    padding: 4rem 0;
    color: var(--white);
}

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

.withdrawal-process__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.withdrawal-process__content {
    max-width: none;
}

.withdrawal-process__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.withdrawal-process__text:last-child {
    margin-bottom: 0;
}

/* Responsive styles for payment page */
@media (max-width: 768px) {
    .payment-intro,
    .deposit-process,
    .currency-options,
    .withdrawal-process {
        padding: 3rem 0;
    }
    
    .payment-intro__container,
    .deposit-process__container,
    .currency-options__container,
    .withdrawal-process__container {
        padding: 0 1rem;
    }
    
    .deposit-process__title,
    .currency-options__title,
    .withdrawal-process__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-intro__text,
    .deposit-process__intro,
    .currency-options__text,
    .withdrawal-process__text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .deposit-process__step {
        font-size: 1rem;
        padding: 1.25rem;
        margin-left: 20px;
    }
    
    .deposit-process__step:before {
        left: -25px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .deposit-process__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .deposit-process__title,
    .currency-options__title,
    .withdrawal-process__title {
        font-size: 1.7rem;
    }
    
    .deposit-process__step {
        padding: 1rem;
        margin-left: 15px;
    }
    
    .deposit-process__step:before {
        left: -20px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
} 