:root {
    --header-bg: #59331b;
    --text-light: #ffffff;
    --text-hover: #ffd700;
    --btn-login-bg: #ce1a36;
    --btn-register-bg: #79d5cd;
    --btn-hover: #333;
    --container-max-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-image: url('images/bg-main.webp');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    min-height: 100vh;
}

.header {
    background-color: var(--header-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header__burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1001;
}

.header__burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    transform-origin: center;
}

.header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.header__nav-link:hover,
.header__nav-link:focus {
    color: var(--text-hover);
    background-color: rgba(255, 215, 0, 0.1);
    outline: none;
}

.header__nav-link:focus {
    box-shadow: 0 0 0 2px var(--text-hover);
}

.header__cta {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.header__btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 100px;
}

.header__btn--login {
    background-color: var(--btn-login-bg);
    color: var(--text-light);
}

.header__btn--login:hover,
.header__btn--login:focus {
    background-color: transparent;
    color: var(--btn-login-bg);
    border-color: var(--btn-login-bg);
    outline: none;
}

.header__btn--register {
    background-color: var(--btn-register-bg);
    color: var(--header-bg);
}

.header__btn--register:hover,
.header__btn--register:focus {
    background-color: transparent;
    color: var(--btn-register-bg);
    border-color: var(--btn-register-bg);
    outline: none;
}

.main {
    margin-top: var(--header-height);
}

.hero {
    min-height: calc(100vh - var(--header-height));
    background-image: url('images/homebg.webp');
    background-size: cover;
    background-position: 70% center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.67);
    z-index: 1;
}

.hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

.hero__cta {
    display: inline-block;
    background-color: var(--btn-login-bg);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(206, 26, 54, 0.3);
}

.hero__cta:hover,
.hero__cta:focus {
    background-color: transparent;
    border: 2px solid var(--btn-login-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 26, 54, 0.4);
    outline: none;
}

.casino-info {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.casino-info__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.casino-info__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.casino-info__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.casino-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.casino-info__item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.casino-info__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-info__text {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.casino-info__text strong {
    color: var(--text-hover);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.casino-info__image-wrapper {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.casino-info__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.casino-info__image:hover {
    transform: scale(1.02);
}

.casino-info__description {
    color: var(--text-light);
    line-height: 1.7;
}

.casino-info__description p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
    text-align: justify;
}

.casino-info__description p:last-child {
    margin-bottom: 0;
}

.games-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.games-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.games-section__title {
    font-size: 2.5rem;
    color: var(--text-hover);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-section__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-section__intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.games-section__intro-image {
    text-align: center;
}

.games-section__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.games-section__image:hover {
    transform: scale(1.02);
}

.games-section__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.games-section__block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.games-section__block:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.games-section__block--with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.games-section__subtitle {
    font-size: 1.8rem;
    color: var(--text-hover);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.games-section__block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
    opacity: 0.95;
}

.games-section__block p:last-child {
    margin-bottom: 0;
}

.games-section__cta {
    display: inline-block;
    background-color: var(--btn-register-bg);
    color: var(--header-bg);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(121, 213, 205, 0.3);
}

.games-section__cta:hover,
.games-section__cta:focus {
    background-color: transparent;
    color: var(--btn-register-bg);
    border: 2px solid var(--btn-register-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 213, 205, 0.4);
    outline: none;
}

.games-section__block-image {
    text-align: center;
}

.games-section__block-image .games-section__image {
    max-width: 300px;
}

.bonus-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.bonus-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-section__title {
    font-size: 2.5rem;
    color: var(--text-hover);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-section__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-section__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0.95;
}

.bonus-section__content p:last-child {
    margin-bottom: 0;
}

.bonus-section__image-wrapper {
    text-align: center;
}

.bonus-section__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.registration-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.registration-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.registration-section__title {
    font-size: 2.5rem;
    color: var(--text-hover);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.registration-section__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.registration-section__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0.95;
}

.registration-section__content p:last-child {
    margin-bottom: 2rem;
}

.registration-section__image-wrapper {
    text-align: center;
}

.registration-section__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.registration-section__cta {
    display: inline-block;
    background-color: var(--btn-login-bg);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(206, 26, 54, 0.3);
    align-self: flex-start;
}

.registration-section__cta:hover,
.registration-section__cta:focus {
    background-color: transparent;
    color: var(--btn-login-bg);
    border: 2px solid var(--btn-login-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 26, 54, 0.4);
    outline: none;
}

.payment-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.payment-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-section__title {
    font-size: 2.5rem;
    color: var(--text-hover);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.payment-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-section__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    text-align: justify;
    opacity: 0.95;
}

.payment-section__content p strong {
    color: var(--text-hover);
    font-weight: 600;
}

.payment-section__methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.payment-section__method-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-section__method-title {
    font-size: 1.2rem;
    color: var(--text-hover);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.payment-section__method-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-section__method-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.payment-section__method-list li:last-child {
    border-bottom: none;
}

.payment-section__method-list li::before {
    content: "💳";
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 0.9rem;
}

.payment-section__method-category:nth-child(2) .payment-section__method-list li::before {
    content: "💰";
}

.payment-section__method-category:nth-child(3) .payment-section__method-list li::before {
    content: "₿";
}

.payment-section__image-wrapper {
    text-align: center;
    margin: 1rem 0;
}

.payment-section__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.support-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.support-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.support-section__title {
    font-size: 2.5rem;
    color: var(--text-hover);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.support-section__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-section__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    text-align: justify;
    opacity: 0.95;
}

.support-section__contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.support-section__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-section__contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-section__contact-text {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.support-section__contact-text strong {
    color: var(--text-hover);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.licence-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.licence-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.licence-section__title {
    font-size: 2.5rem;
    color: var(--text-hover);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.licence-section__content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.licence-section__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0.95;
}

.licence-section__content p:last-of-type {
    margin-bottom: 2rem;
}

.licence-section__cta {
    display: inline-block;
    background-color: var(--btn-register-bg);
    color: var(--header-bg);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(121, 213, 205, 0.3);
}

.licence-section__cta:hover,
.licence-section__cta:focus {
    background-color: transparent;
    color: var(--btn-register-bg);
    border: 2px solid var(--btn-register-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 213, 205, 0.4);
    outline: none;
}

.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.faq-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-section__title {
    font-size: 2.5rem;
    color: var(--text-hover);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq__item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq__item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq__item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.faq__item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.95;
    text-align: justify;
}

.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem 0;
    margin-top: 2rem;
}

.footer__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer__payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__payment-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.footer__payment-img:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

.footer__disclaimer {
    margin-bottom: 1.5rem;
}

.footer__disclaimer p {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
    font-style: italic;
    line-height: 1.5;
}

.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer__copyright p {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 768px) {
    .header__container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .header__logo-img {
        height: 40px;
    }
    
    .header__burger {
        display: flex;
        order: 2;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--header-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    
    .header__nav.active {
        transform: translateX(0);
    }
    
    .header__nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .header__nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .header__cta {
        gap: 0.5rem;
        order: 3;
    }
    
    .header__btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .hero {
        background-image: url('images/homebgmob.webp');
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .casino-info {
        padding: 3rem 0;
    }
    
    .casino-info__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .casino-info__item {
        padding: 1.2rem;
    }
    
    .casino-info__icon {
        font-size: 1.3rem;
    }
    
    .casino-info__text {
        font-size: 0.9rem;
    }
    
    .games-section {
        padding: 3rem 0;
    }
    
    .games-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .games-section__intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    .games-section__intro-image {
        order: -1;
    }
    
    .games-section__content {
        gap: 2rem;
    }
    
    .games-section__block {
        padding: 2rem;
    }
    
    .games-section__block--with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-section__subtitle {
        font-size: 1.5rem;
    }
    
    .games-section__block p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .games-section__cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bonus-section {
        padding: 3rem 0;
    }
    
    .bonus-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .bonus-section__content {
        gap: 2rem;
        padding: 2rem;
    }
    
    .bonus-section__image-wrapper {
        order: -1;
    }
    
    .bonus-section__content p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .registration-section {
        padding: 3rem 0;
    }
    
    .registration-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .registration-section__content {
        gap: 2rem;
        padding: 2rem;
    }
    
    .registration-section__image-wrapper {
        order: -1;
    }
    
    .registration-section__content p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .registration-section__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .payment-section {
        padding: 3rem 0;
    }
    
    .payment-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .payment-section__content {
        gap: 1.2rem;
        padding: 2rem;
    }
    
    .payment-section__content p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .payment-section__methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-section__method-category {
        padding: 1.2rem;
    }
    
    .payment-section__method-title {
        font-size: 1.1rem;
    }
    
    .payment-section__method-list li {
        font-size: 0.9rem;
    }
    
    .support-section {
        padding: 3rem 0;
    }
    
    .support-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .support-section__content {
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .support-section__content p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .support-section__contact-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-section__contact-item {
        padding: 1.2rem;
    }
    
    .support-section__contact-icon {
        font-size: 1.3rem;
    }
    
    .support-section__contact-text {
        font-size: 0.9rem;
    }
    
    .licence-section {
        padding: 3rem 0;
    }
    
    .licence-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .licence-section__content {
        padding: 2rem;
    }
    
    .licence-section__content p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .licence-section__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-section__content {
        gap: 1rem;
    }
    
    .faq__item {
        padding: 1.5rem;
    }
    
    .faq__item h3 {
        font-size: 1.2rem;
    }
    
    .faq__item p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .footer {
        padding: 2rem 0 1.5rem 0;
        margin-top: 1rem;
    }
    
    .footer__payment-methods {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .footer__payment-img {
        height: 35px;
        max-width: 100px;
    }
    
    .footer__disclaimer p {
        font-size: 0.9rem;
    }
    
    .footer__copyright p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0 0.5rem;
    }
    
    .header__logo-img {
        height: 35px;
    }
    
    .header__btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        min-width: 70px;
    }
    
    .header__nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 0.9rem;
    }
    
    .hero__cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .casino-info {
        padding: 2rem 0;
    }
    
    .casino-info__item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .casino-info__icon {
        font-size: 1.2rem;
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .casino-info__text {
        font-size: 0.85rem;
    }
    
    .casino-info__description p {
        font-size: 0.9rem;
    }
    
    .games-section {
        padding: 2rem 0;
    }
    
    .games-section__title {
        font-size: 1.8rem;
    }
    
    .games-section__block {
        padding: 1.5rem;
    }
    
    .games-section__subtitle {
        font-size: 1.3rem;
    }
    
    .games-section__block p {
        font-size: 0.9rem;
    }
    
    .games-section__cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .bonus-section {
        padding: 2rem 0;
    }
    
    .bonus-section__title {
        font-size: 1.8rem;
    }
    
    .bonus-section__content {
        padding: 1.5rem;
    }
    
    .bonus-section__content p {
        font-size: 0.9rem;
    }
    
    .registration-section {
        padding: 2rem 0;
    }
    
    .registration-section__title {
        font-size: 1.8rem;
    }
    
    .registration-section__content {
        padding: 1.5rem;
    }
    
    .registration-section__content p {
        font-size: 0.9rem;
    }
    
    .registration-section__cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .payment-section {
        padding: 2rem 0;
    }
    
    .payment-section__title {
        font-size: 1.8rem;
    }
    
    .payment-section__content {
        padding: 1.5rem;
    }
    
    .payment-section__content p {
        font-size: 0.9rem;
    }
    
    .payment-section__method-category {
        padding: 1rem;
    }
    
    .payment-section__method-title {
        font-size: 1rem;
    }
    
    .payment-section__method-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .support-section {
        padding: 2rem 0;
    }
    
    .support-section__title {
        font-size: 1.8rem;
    }
    
    .support-section__content {
        padding: 1.5rem;
    }
    
    .support-section__content p {
        font-size: 0.9rem;
    }
    
    .support-section__contact-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .support-section__contact-icon {
        font-size: 1.2rem;
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .support-section__contact-text {
        font-size: 0.85rem;
    }
    
    .licence-section {
        padding: 2rem 0;
    }
    
    .licence-section__title {
        font-size: 1.8rem;
    }
    
    .licence-section__content {
        padding: 1.5rem;
    }
    
    .licence-section__content p {
        font-size: 0.9rem;
    }
    
    .licence-section__cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section__title {
        font-size: 1.8rem;
    }
    
    .faq__item {
        padding: 1rem;
    }
    
    .faq__item h3 {
        font-size: 1.1rem;
    }
    
    .faq__item p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer__payment-methods {
        gap: 0.8rem;
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .footer__payment-img {
        height: 30px;
        max-width: 80px;
    }
    
    .footer__disclaimer p {
        font-size: 0.85rem;
    }
    
    .footer__copyright {
        padding-top: 1rem;
    }
    
    .footer__copyright p {
        font-size: 0.8rem;
    }
}

/* Bonus Page Styles */
.bonus-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/bg-main.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 0 4rem 0;
    text-align: center;
}

.bonus-hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-hero__title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.bonus-hero__cta {
    display: inline-block;
    background-color: var(--btn-register-bg);
    color: var(--header-bg);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(121, 213, 205, 0.3);
}

.bonus-hero__cta:hover,
.bonus-hero__cta:focus {
    background-color: transparent;
    color: var(--btn-register-bg);
    border: 2px solid var(--btn-register-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 213, 205, 0.4);
    outline: none;
}

.bonus-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.bonus-content__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-content__intro {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3rem;
    text-align: center;
}

.bonus-content__intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    opacity: 0.95;
}

.bonus-section-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bonus-section-content__title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.bonus-section-content__subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.bonus-section-content__text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0.95;
}

.bonus-section-content__text p:last-child {
    margin-bottom: 0;
}

.bonus-section-content__image {
    text-align: center;
    margin: 1rem 0;
}

.bonus-section-content__image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.bonus-section-content__cta {
    display: inline-block;
    background-color: var(--btn-login-bg);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(206, 26, 54, 0.3);
    align-self: flex-start;
}

.bonus-section-content__cta:hover,
.bonus-section-content__cta:focus {
    background-color: transparent;
    color: var(--btn-login-bg);
    border: 2px solid var(--btn-login-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 26, 54, 0.4);
    outline: none;
}

@media (max-width: 768px) {
    .bonus-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .bonus-hero__title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-hero__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-content {
        padding: 3rem 0;
    }
    
    .bonus-content__intro {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .bonus-content__intro p {
        font-size: 1rem;
        text-align: left;
    }
    
    .bonus-section-content {
        padding: 2rem;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
    
    .bonus-section-content__title {
        font-size: 1.8rem;
    }
    
    .bonus-section-content__subtitle {
        font-size: 1.5rem;
    }
    
    .bonus-section-content__text p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .bonus-section-content__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-hero {
        padding: 3rem 0 2rem 0;
    }
    
    .bonus-hero__title {
        font-size: 1.8rem;
    }
    
    .bonus-hero__cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bonus-content {
        padding: 2rem 0;
    }
    
    .bonus-content__intro {
        padding: 1.5rem;
    }
    
    .bonus-content__intro p {
        font-size: 0.9rem;
    }
    
    .bonus-section-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .bonus-section-content__title {
        font-size: 1.5rem;
    }
    
    .bonus-section-content__subtitle {
        font-size: 1.3rem;
    }
    
    .bonus-section-content__text p {
        font-size: 0.9rem;
    }
    
    .bonus-section-content__cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

.bonus-section-content__two-column-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.bonus-section-content__text-column {
    flex: 1;
}

.bonus-section-content__text-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
    opacity: 0.95;
}

.bonus-section-content__text-column p:last-of-type {
    margin-bottom: 1.5rem;
}

.bonus-section-content__image-column {
    flex: 0 0 400px;
}

.bonus-section-content__image-column img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .bonus-section-content__two-column-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bonus-section-content__image-column {
        flex: none;
    }
}

.login-details-list,
.login-steps-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.login-details-list li,
.login-steps-list li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.login-details-list li::marker {
    color: var(--primary-color);
}

.login-steps-list li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .login-details-list,
    .login-steps-list {
        padding-left: 1.5rem;
    }
    
    .login-details-list li,
    .login-steps-list li {
        font-size: 0.95rem;
    }
}

.inlink {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.inlink:hover,
.inlink:focus {
    color: #f4d03f;
    border-bottom-color: var(--primary-color);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    outline: none;
}

.inlink:active {
    color: #e8c547;
    transform: translateY(1px);
}