* {
    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;
}

.header {
    background-color: #052c22;
    border-bottom: 2px solid #faca54;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 50px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.header__nav-link {
    color: #faca54;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: #ffffff;
}

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

.header__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.95rem;
}

.header__btn--login {
    background-color: transparent;
    color: #faca54;
    border: 2px solid #faca54;
}

.header__btn--login:hover {
    background-color: #faca54;
    color: #052c22;
}

.header__btn--register {
    background-color: #faca54;
    color: #052c22;
    border: 2px solid #faca54;
}

.header__btn--register:hover {
    background-color: transparent;
    color: #faca54;
}

.burger-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #faca54;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.burger-menu:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.burger-menu__line {
    width: 20px;
    height: 2px;
    background-color: #052c22;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-menu__line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger-menu.active .burger-menu__line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-menu__line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(5, 44, 34, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav__list {
    list-style: none;
    text-align: center;
}

.mobile-nav__item {
    margin-bottom: 2rem;
}

.mobile-nav__link {
    color: #faca54;
    text-decoration: none;
    font-weight: 600;
    font-size: 2rem;
    display: block;
    padding: 1rem;
    transition: color 0.3s ease;
}

.mobile-nav__link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header__container {
        justify-content: space-between;
    }
    
    .header__buttons {
        gap: 0.5rem;
    }
    
    .header__btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0 0.75rem;
    }
    
    .header__logo-img {
        height: 40px;
    }
    
    .header__btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .burger-menu {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .burger-menu__line {
        width: 18px;
    }
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 44, 34, 0.7);
    z-index: 1;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
    color: white;
}

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

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

.hero__cta {
    display: inline-block;
    background-color: #faca54;
    color: #052c22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #faca54;
}

.hero__cta:hover {
    background-color: transparent;
    color: #faca54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 202, 84, 0.3);
}

@media (max-width: 768px) {
    .hero {
        background-image: url('img/casinia2.webp');
        min-height: 70vh;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero__content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero__title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero__text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

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

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

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

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

.info__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.info__table-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(250, 202, 84, 0.3);
    backdrop-filter: blur(10px);
}

.info__table {
    width: 100%;
    border-collapse: collapse;
}

.info__table td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: middle;
}

.info__table tr:last-child td {
    border-bottom: none;
}

.info__table td:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    width: 60%;
    font-size: 1rem;
}

.info__table td:last-child {
    color: #faca54;
    font-weight: 700;
    text-align: right;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .info {
        padding: 3rem 0;
    }
    
    .info__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info__text {
        font-size: 1rem;
        text-align: left;
    }
    
    .info__table-wrapper {
        padding: 1.5rem;
    }
    
    .info__table td {
        padding: 0.75rem 0;
    }
    
    .info__table td:first-child {
        font-size: 0.95rem;
        width: 65%;
    }
    
    .info__table td:last-child {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .info {
        padding: 2rem 0;
    }
    
    .info__text {
        font-size: 0.95rem;
    }
    
    .info__table-wrapper {
        padding: 1rem;
    }
    
    .info__table td {
        padding: 0.6rem 0;
    }
    
    .info__table td:first-child {
        font-size: 0.9rem;
        width: 70%;
    }
    
         .info__table td:last-child {
         font-size: 0.9rem;
     }
 }

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

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

.registration__top {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.registration__login {
    width: 100%;
}

.registration__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.registration__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #faca54;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.registration__description,
.registration__login-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.registration__steps,
.registration__login-steps {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.registration__steps li,
.registration__login-steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.registration__login-steps li strong {
    color: #faca54;
}

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

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

@media (max-width: 968px) {
    .registration__top {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .registration__image {
        order: -1;
    }
    
    .registration__img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .registration {
        padding: 3rem 0;
    }
    
    .registration__title {
        font-size: 2rem;
        text-align: center;
    }
    
    .registration__subtitle {
        font-size: 1.5rem;
        text-align: center;
        margin: 2.5rem 0 1rem 0;
    }
    
    .registration__description,
    .registration__login-description {
        font-size: 1rem;
    }
    
    .registration__steps,
    .registration__login-steps {
        padding-left: 1rem;
    }
    
    .registration__steps li,
    .registration__login-steps li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .registration {
        padding: 2rem 0;
    }
    
    .registration__title {
        font-size: 1.75rem;
    }
    
    .registration__subtitle {
        font-size: 1.3rem;
    }
    
    .registration__description,
    .registration__login-description {
        font-size: 0.95rem;
    }
    
    .registration__steps,
    .registration__login-steps {
        padding-left: 0.75rem;
    }
    
    .registration__steps li,
         .registration__login-steps li {
         font-size: 0.9rem;
         margin-bottom: 0.75rem;
     }
 }

.games {
    background-color: #0a3b2e;
    padding: 4rem 0;
}

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

.games__intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.games__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.games__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.games__description,
.games__slots-description,
.games__live-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.games__cta {
    display: inline-block;
    background-color: #faca54;
    color: #052c22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #faca54;
}

.games__cta:hover {
    background-color: transparent;
    color: #faca54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 202, 84, 0.3);
}

.games__intro-image,
.games__slots-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.games__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.games__slots-image .games__img {
    width: 105%;
}

.games__slots {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.games__slots-list {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 0;
    list-style: none;
    margin-bottom: 2rem;
}

.games__slots-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.games__slots-list li::before {
    content: "🎰";
    position: absolute;
    left: 0;
    top: 0;
}

.games__slots-list li strong {
    color: #faca54;
}

.games__live {
    width: 100%;
}

@media (max-width: 968px) {
    .games__intro {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .games__intro-image {
        order: -1;
    }
    
    .games__slots {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .games__img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .games {
        padding: 3rem 0;
    }
    
    .games__title {
        font-size: 2rem;
        text-align: center;
    }
    
    .games__subtitle {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .games__description,
    .games__slots-description,
    .games__live-description {
        font-size: 1rem;
    }
    
    .games__cta {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        display: block;
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .games__slots-list {
        padding-left: 0;
    }
    
    .games__slots-list li {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 2rem 0;
    }
    
    .games__title {
        font-size: 1.75rem;
    }
    
    .games__subtitle {
        font-size: 1.3rem;
    }
    
    .games__description,
    .games__slots-description,
    .games__live-description {
        font-size: 0.95rem;
    }
    
    .games__slots-image .games__img {
        width: 75%;
    }
    
    .games__cta {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
    
         .games__slots-list li {
         font-size: 0.9rem;
         margin-bottom: 1rem;
     }
 }

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

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

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

.bonus__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.bonus__sub-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.bonus__welcome {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.bonus__promotions {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.bonus__sports,
.bonus__casino,
.bonus__promotion-item {
    margin-bottom: 2.5rem;
}

.bonus__cashback {
    width: 100%;
    margin-top: 3rem;
}

.bonus__cta {
    display: inline-block;
    background-color: #faca54;
    color: #052c22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #faca54;
}

.bonus__cta:hover {
    background-color: transparent;
    color: #faca54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 202, 84, 0.3);
}

.bonus__welcome-image,
.bonus__promotions-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.bonus__promotions-image {
    flex-direction: row;
    align-items: flex-start;
}

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

@media (max-width: 968px) {
    .bonus__welcome {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .bonus__welcome-image {
        order: -1;
    }
    
    .bonus__promotions {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bonus__img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .bonus {
        padding: 3rem 0;
    }
    
    .bonus__title {
        font-size: 2rem;
    }
    
    .bonus__subtitle {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .bonus__sub-heading {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .bonus__description {
        font-size: 1rem;
    }
    
    .bonus__cta {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        display: block;
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .bonus {
        padding: 2rem 0;
    }
    
    .bonus__title {
        font-size: 1.75rem;
    }
    
    .bonus__subtitle {
        font-size: 1.3rem;
    }
    
    .bonus__sub-heading {
        font-size: 1.1rem;
    }
    
    .bonus__description {
        font-size: 0.95rem;
    }
    
         .bonus__cta {
         font-size: 0.95rem;
         padding: 0.75rem 1.5rem;
     }
 }

.mobile {
    background-color: #0a3b2e;
    padding: 4rem 0;
}

.mobile__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.mobile__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

.mobile__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.license {
    background-color: #0a3b2e;
    padding: 4rem 0;
}

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

.license__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

@media (max-width: 968px) {
    .mobile__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mobile__image {
        order: -1;
    }
    
    .mobile__img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .mobile {
        padding: 3rem 0;
    }
    
    .license {
        padding: 3rem 0;
    }
    
    .mobile__title,
    .license__title {
        font-size: 2rem;
    }
    
    .mobile__description,
    .license__description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile {
        padding: 2rem 0;
    }
    
    .license {
        padding: 2rem 0;
    }
    
    .mobile__title,
    .license__title {
        font-size: 1.75rem;
    }
    
         .mobile__description,
     .license__description {
         font-size: 0.95rem;
     }
 }

.support {
    background-color: #0a3b2e;
    padding: 4rem 0;
}

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

.support__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.support__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.support__option {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(250, 202, 84, 0.2);
    transition: all 0.3s ease;
}

.support__option:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 202, 84, 0.4);
    transform: translateY(-4px);
}

.support__option-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.support__option-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .support {
        padding: 3rem 0;
    }
    
    .support__title {
        font-size: 2rem;
    }
    
    .support__intro {
        font-size: 1rem;
    }
    
    .support__options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support__option {
        padding: 1.5rem;
    }
    
    .support__option-title {
        font-size: 1.3rem;
    }
    
    .support__option-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .support {
        padding: 2rem 0;
    }
    
    .support__title {
        font-size: 1.75rem;
    }
    
    .support__intro {
        font-size: 0.95rem;
    }
    
    .support__option {
        padding: 1.25rem;
    }
    
    .support__option-title {
        font-size: 1.2rem;
    }
    
         .support__option-description {
         font-size: 0.9rem;
     }
 }

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

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

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(250, 202, 84, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: rgba(250, 202, 84, 0.4);
}

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

.faq__question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq__icon {
    font-size: 1.5rem;
    color: #faca54;
    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.active {
    max-height: 500px;
}

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

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq__title {
        font-size: 2rem;
    }
    
    .faq__question {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq__icon {
        font-size: 1.25rem;
    }
    
    .faq__answer p {
        padding: 1.25rem 1.5rem 1.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 2rem 0;
    }
    
    .faq__title {
        font-size: 1.75rem;
    }
    
    .faq__question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq__icon {
        font-size: 1.125rem;
    }
    
         .faq__answer p {
         padding: 1rem 1.25rem 1.5rem 1.25rem;
         font-size: 0.9rem;
     }
 }

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

.bonus-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

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

.bonus-hero__cta {
    display: inline-block;
    background-color: #faca54;
    color: #052c22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #faca54;
    margin-bottom: 2rem;
}

.bonus-hero__cta:hover {
    background-color: transparent;
    color: #faca54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 202, 84, 0.3);
}

.bonus-hero__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

.bonus-hero__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.bonus-details {
    background-color: #0a3b2e;
    padding: 4rem 0;
}

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

.bonus-details__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.bonus-section {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.bonus-section__heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bonus-section__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.bonus-section__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bonus-section__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.bonus-welcome {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.bonus-welcome__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bonus-welcome__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.bonus-welcome__heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.bonus-item {
    margin-bottom: 2rem;
}

.bonus-item__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bonus-item__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.bonus-welcome__cta {
    display: inline-block;
    background-color: #faca54;
    color: #052c22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #faca54;
    margin-top: 1rem;
}

.bonus-welcome__cta:hover {
    background-color: transparent;
    color: #faca54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 202, 84, 0.3);
}

.bonus-weekly {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.bonus-weekly__heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.bonus-weekly__item {
    margin-bottom: 2.5rem;
}

.bonus-weekly__title {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #faca54;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bonus-weekly__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.bonus-weekly__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bonus-weekly__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .bonus-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bonus-hero__image {
        order: -1;
    }
    
    .bonus-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-section__image {
        order: -1;
    }
    
    .bonus-welcome {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bonus-weekly {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bonus-hero__img,
    .bonus-section__img,
    .bonus-welcome__img,
    .bonus-weekly__img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .bonus-hero {
        padding: 3rem 0;
    }
    
    .bonus-details {
        padding: 3rem 0;
    }
    
    .bonus-hero__title {
        font-size: 2.5rem;
    }
    
    .bonus-details__title {
        font-size: 2rem;
    }
    
    .bonus-section__heading,
    .bonus-welcome__heading,
    .bonus-weekly__heading {
        font-size: 1.5rem;
    }
    
    .bonus-item__title,
    .bonus-weekly__title {
        font-size: 1.2rem;
    }
    
    .bonus-hero__description,
    .bonus-section__text,
    .bonus-item__text,
    .bonus-weekly__text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-hero {
        padding: 2rem 0;
    }
    
    .bonus-details {
        padding: 2rem 0;
    }
    
    .bonus-hero__title {
        font-size: 2rem;
    }
    
    .bonus-details__title {
        font-size: 1.75rem;
    }
    
    .bonus-section__heading,
    .bonus-welcome__heading,
    .bonus-weekly__heading {
        font-size: 1.3rem;
    }
    
    .bonus-item__title,
    .bonus-weekly__title {
        font-size: 1.1rem;
    }
    
         .bonus-hero__description,
     .bonus-section__text,
     .bonus-item__text,
     .bonus-weekly__text {
         font-size: 0.95rem;
     }
 }

/* Withdrawal Page Styles */
.withdrawal-hero {
    background-color: #0a3b2e;
    padding: 4rem 0;
}

.withdrawal-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

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

.withdrawal-hero__cta {
    display: inline-block;
    background-color: #faca54;
    color: #052c22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #faca54;
    margin-bottom: 2rem;
}

.withdrawal-hero__cta:hover {
    background-color: transparent;
    color: #faca54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 202, 84, 0.3);
}

.withdrawal-hero__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

.withdrawal-hero__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.withdrawal-details {
    background-color: #0a3b2e;
    padding: 4rem 0;
}

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

.withdrawal-deposit {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.withdrawal-deposit__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.withdrawal-deposit__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.withdrawal-deposit__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.withdrawal-deposit__subheading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #faca54;
    margin: 2rem 0 1.5rem 0;
    line-height: 1.3;
}

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

.withdrawal-deposit__methods {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.5rem;
    margin: 0;
}

.withdrawal-deposit__methods li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.withdrawal-deposit__methods li strong {
    color: #faca54;
}

.withdrawal-instructions {
    margin-bottom: 4rem;
}

.withdrawal-instructions__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.withdrawal-instructions__steps {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.5rem;
    margin: 0;
}

.withdrawal-instructions__steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.withdrawal-instructions__steps li strong {
    color: #faca54;
}

.withdrawal-process {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.withdrawal-process__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.withdrawal-process__steps {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.withdrawal-process__steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.withdrawal-process__steps li strong {
    color: #faca54;
}

.withdrawal-process__cta {
    display: inline-block;
    background-color: #faca54;
    color: #052c22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #faca54;
}

.withdrawal-process__cta:hover {
    background-color: transparent;
    color: #faca54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 202, 84, 0.3);
}

.withdrawal-process__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.withdrawal-process__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.withdrawal-crypto {
    margin-bottom: 2rem;
}

.withdrawal-crypto__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #faca54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.withdrawal-crypto__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 968px) {
    .withdrawal-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .withdrawal-hero__image {
        order: -1;
    }
    
    .withdrawal-deposit {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .withdrawal-process {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .withdrawal-hero__img,
    .withdrawal-deposit__img,
    .withdrawal-process__img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .withdrawal-hero {
        padding: 3rem 0;
    }
    
    .withdrawal-details {
        padding: 3rem 0;
    }
    
    .withdrawal-hero__title {
        font-size: 2.5rem;
    }
    
    .withdrawal-deposit__heading,
    .withdrawal-instructions__heading,
    .withdrawal-process__heading,
    .withdrawal-crypto__heading {
        font-size: 2rem;
    }
    
    .withdrawal-deposit__subheading {
        font-size: 1.5rem;
    }
    
    .withdrawal-hero__description,
    .withdrawal-deposit__text,
    .withdrawal-instructions__intro,
    .withdrawal-process__intro,
    .withdrawal-crypto__text {
        font-size: 1rem;
    }
    
    .withdrawal-deposit__methods,
    .withdrawal-instructions__steps,
    .withdrawal-process__steps {
        padding-left: 1rem;
    }
    
    .withdrawal-deposit__methods li,
    .withdrawal-instructions__steps li,
    .withdrawal-process__steps li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .withdrawal-hero {
        padding: 2rem 0;
    }
    
    .withdrawal-details {
        padding: 2rem 0;
    }
    
    .withdrawal-hero__title {
        font-size: 2rem;
    }
    
    .withdrawal-deposit__heading,
    .withdrawal-instructions__heading,
    .withdrawal-process__heading,
    .withdrawal-crypto__heading {
        font-size: 1.75rem;
    }
    
    .withdrawal-deposit__subheading {
        font-size: 1.3rem;
    }
    
    .withdrawal-hero__description,
    .withdrawal-deposit__text,
    .withdrawal-instructions__intro,
    .withdrawal-process__intro,
    .withdrawal-crypto__text {
        font-size: 0.95rem;
    }
    
    .withdrawal-deposit__methods,
    .withdrawal-instructions__steps,
    .withdrawal-process__steps {
        padding-left: 0.75rem;
    }
    
    .withdrawal-deposit__methods li,
    .withdrawal-instructions__steps li,
    .withdrawal-process__steps li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
         }
 }

/* Interlinking Styles */
.interlinking {
    color: #faca54;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.interlinking:hover {
    color: #ffffff;
    border-bottom-color: #faca54;
    text-shadow: 0 0 8px rgba(250, 202, 84, 0.3);
}

.interlinking:focus {
    outline: 2px solid #faca54;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer {
    background-color: #052c22;
    border-top: 2px solid #faca54;
    padding: 2rem 0;
}

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

.footer__logo {
    flex-shrink: 0;
}

.footer__logo-img {
    height: 40px;
    width: auto;
}

.footer__content {
    text-align: right;
}

.footer__copyright {
    font-size: 1rem;
    font-weight: 600;
    color: #faca54;
    margin: 0 0 0.5rem 0;
}

.footer__disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer__logo-img {
        height: 35px;
    }
    
    .footer__content {
        text-align: center;
    }
    
    .footer__copyright {
        font-size: 0.95rem;
    }
    
    .footer__disclaimer {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer__container {
        gap: 1rem;
    }
    
    .footer__logo-img {
        height: 30px;
    }
    
    .footer__copyright {
        font-size: 0.9rem;
    }
    
    .footer__disclaimer {
        font-size: 0.75rem;
    }
} 