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

body {
    font-family: 'Cinzel', serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

h2 {
    text-align: left;
}

p {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

.header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header__logo-link:hover {
    opacity: 0.8;
}

.header__logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

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

.header__login-btn {
    background-color: #008000;
    color: #ffffff;
    border: 2px solid #000000;
    outline: 1px solid #004000;
    padding: 0.75rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px #004000;
}

.header__login-btn:hover {
    background-color: #006800;
}

.header__login-btn:focus {
    outline: 1px solid #ffffff;
    outline-offset: -4px;
}

.header__login-btn:active {
    background-color: #005800;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 35%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.65) 100%),
        radial-gradient(circle at 70% 20%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 100%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.hero__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero__bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.hero__left {
    width: 600px;
    flex-shrink: 0;
}

.hero__content-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.98));
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    width: 100%;
    backdrop-filter: blur(10px);
}

.hero__content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 6px;
    z-index: -1;
}

.hero__title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.hero__description {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E0E0E0;
    text-align: left;
}

.hero__description strong {
    color: #D4AF37;
    font-weight: 600;
}

.hero__right {
    width: 600px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-left: -8rem;
}

.hero__main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 600px;
    max-height: 500px;
    transform: translateY(-1rem);
}

.hero__buttons {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero__btn {
    background: linear-gradient(180deg, #1e0f04, #0e0702);
    border: 1px solid #D4AF37;
    border-radius: 0;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    min-height: 75px;
    justify-content: flex-start;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    text-decoration: none;
    color: inherit;
}

.hero__btn::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 5%;
    bottom: 1px;
    background: linear-gradient(180deg, #1e0f04, #0e0702);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.hero__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    opacity: 0.7;
}

.hero__btn:hover {
    border-color: #FFD700;
    background: linear-gradient(180deg, #2a1505, #1e0f04);
}

.hero__btn:active {
    background: linear-gradient(180deg, #0e0702, #1e0f04);
}

.hero__btn:focus,
.hero__btn:visited {
    text-decoration: none;
    color: inherit;
}

.hero__btn-icon {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-left: 0.75rem;
    min-width: 24px;
}

.hero__btn-text {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: left;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.hero__btn-arrow {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: bold;
    margin-right: 1rem;
}

.body-container {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 2rem;
}

.casino-section {
    background-color: #1a1a1a;
    padding: 4rem 0 0 0;
}

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

.casino-section__image {
    width: 100%;
    height: auto;
    max-width: 90%;
    object-fit: contain;
}

.info-section {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.info-section__container {
}

.info-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.info-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
}

.info-section__text a {
    color: #D4AF37;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.info-section__text a:hover {
    color: #E6C757;
    text-decoration-color: #E6C757;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.casino-info-table {
    padding: 0 0 3rem 0;
    background-color: #1a1a1a;
}

.casino-info-table__container {
}

.casino-info-table__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.casino-info-table__header {
    background-color: #D4AF37;
    color: #1a1a1a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-info-table__property {
    background-color: #333333;
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #444444;
    width: 30%;
}

.casino-info-table__details {
    background-color: #2a2a2a;
    color: #E0E0E0;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #444444;
    line-height: 1.5;
}

.casino-info-table__table tr:last-child .casino-info-table__property,
.casino-info-table__table tr:last-child .casino-info-table__details {
    border-bottom: none;
}

.games-section {
    padding: 0 0 2rem 0;
    background-color: #1a1a1a;
}

.games-section__container {
}

.games-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.games-section__image {
    width: 100%;
    height: auto;
    max-width: 90%;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto 2rem auto;
    display: block;
}

.games-section__subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: left;
    margin: 3rem 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.games-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.games-section__providers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.games-section__provider {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid #D4AF37;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.games-section__provider:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.sports-section {
    padding: 0 0 2rem 0;
    background-color: #1a1a1a;
}

.sports-section__container {
}

.sports-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.sports-section__subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: left;
    margin: 3rem 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.sports-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.tournaments-section {
    padding: 0 0 2rem 0;
    background-color: #1a1a1a;
}

.tournaments-section__container {
}

.tournaments-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.tournaments-section__image {
    width: 90%;
    margin: 0 auto 2rem auto;
    display: block;
}

.tournaments-section__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

.tournaments-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.bonuses-section {
    padding: 0 0 4rem 0;
    background-color: #1a1a1a;
}

.bonuses-section__container {
}

.bonuses-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.bonuses-section__subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: left;
    margin: 3rem 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.bonuses-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.bonuses-section__vip-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.bonuses-section__vip-header {
    background-color: #D4AF37;
    color: #1a1a1a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonuses-section__vip-level {
    background-color: #333333;
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #444444;
    width: 30%;
}

.bonuses-section__vip-benefits {
    background-color: #2a2a2a;
    color: #E0E0E0;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #444444;
    line-height: 1.5;
}

.bonuses-section__vip-table tr:last-child .bonuses-section__vip-level,
.bonuses-section__vip-table tr:last-child .bonuses-section__vip-benefits {
    border-bottom: none;
}

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

.registration-section__container {
}

.registration-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.registration-section__image {
    width: 25%;
    height: auto;
    max-width: 25%;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto 2rem auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.registration-section__subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: left;
    margin: 3rem 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.registration-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.registration-section__steps {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.registration-section__step {
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.registration-section__step::marker {
    color: #D4AF37;
    font-weight: 700;
}

.payment-section {
    padding: 0 0 4rem 0;
    background-color: #1a1a1a;
}

.payment-section__container {
}

.payment-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.payment-section__subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: left;
    margin: 3rem 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.payment-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.payment-section__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
}

.payment-section__header {
    background-color: #D4AF37;
    color: #1a1a1a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-section__method {
    background-color: #333333;
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #444444;
    width: 40%;
}

.payment-section__amount {
    background-color: #2a2a2a;
    color: #E0E0E0;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #444444;
    width: 30%;
}

.payment-section__table tr:last-child .payment-section__method,
.payment-section__table tr:last-child .payment-section__amount {
    border-bottom: none;
}

.mobile-section {
    padding: 0 0 4rem 0;
    background-color: #1a1a1a;
}

.mobile-section__container {
}

.mobile-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.mobile-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.support-section {
    padding: 0 0 4rem 0;
    background-color: #1a1a1a;
}

.support-section__container {
}

.support-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.support-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.security-section {
    padding: 0 0 4rem 0;
    background-color: #1a1a1a;
}

.security-section__container {
}

.security-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.security-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.conclusion-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #2a1810 0%, #1a1a1a 50%, #2a1810 100%);
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
    position: relative;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.conclusion-section__container {
    position: relative;
    z-index: 2;
}

.conclusion-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conclusion-section__content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(42, 42, 42, 0.8);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.conclusion-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #F0F0F0;
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.conclusion-section__text:last-child {
    margin-bottom: 0;
}

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

.faq-section__container {
}

.faq-section__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-item__question {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    border: none;
    padding: 1.5rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    background: linear-gradient(135deg, #E5C047 0%, #C9A525 100%);
    transform: translateY(-1px);
}

.faq-item__question:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

.faq-item__question-text {
    flex: 1;
    margin-right: 1rem;
}

.faq-item__icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    background-color: #2a2a2a;
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
}

.faq-item__answer.active {
    max-height: 200px;
}

.faq-item__answer-content {
    padding: 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E0E0E0;
}

@media (max-width: 768px) {
    .header__container {
        padding: 1rem;
    }
    
    .header__logo-img {
        height: 2rem;
    }
    
    .header__login-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero__top {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .hero__bottom {
        margin-top: 0.5rem;
    }

    .hero__left {
        width: 100%;
        max-width: 500px;
    }

.hero__right {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        margin-left: 0;
        margin-top: -1rem;
    }

    .hero__content-box {
        padding: 2rem;
    }

    .hero__title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero__description {
        text-align: center;
        font-size: 17px;
    }

    .hero__buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
        max-width: none !important;
    }

    .hero__btn {
        width: 100% !important;
        max-width: 320px !important;
        min-height: 60px !important;
        padding: 1rem 1.2rem !important;
        margin: 0 !important;
    }

    .hero__main-img {
        width: 100%;
        max-height: 300px;
    }

    .casino-section {
        padding: 2rem 0;
    }

    .body-container {
        padding: 0 15px;
    }

    .casino-section__image {
        max-width: 100%;
    }

    .info-section {
        padding: 3rem 0;
    }

    .info-section__title {
        font-size: 2rem;
    }

    .info-section__text {
        font-size: 17px;
        text-align: left;
    }

    .casino-info-table {
        padding: 3rem 0;
    }

    .casino-info-table__header {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .casino-info-table__property {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .casino-info-table__details {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .games-section {
        padding: 3rem 0;
    }

    .games-section__title {
        font-size: 2rem;
    }

    .games-section__subtitle {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }

    .games-section__text {
        font-size: 17px;
        text-align: left;
    }

    .games-section__image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .games-section__providers {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .games-section__provider {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .sports-section {
        padding: 0 0 3rem 0;
    }

    .sports-section__title {
        font-size: 2rem;
    }

    .sports-section__subtitle {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }

    .sports-section__text {
        font-size: 17px;
        text-align: left;
    }

    .tournaments-section {
        padding: 0 0 3rem 0;
    }

    .tournaments-section__title {
        font-size: 2rem;
    }

    .tournaments-section__text {
        font-size: 17px;
        text-align: left;
    }

    .tournaments-section__image {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .bonuses-section {
        padding: 0 0 3rem 0;
    }

    .bonuses-section__title {
        font-size: 2rem;
    }

    .bonuses-section__subtitle {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }

    .bonuses-section__text {
        font-size: 17px;
        text-align: left;
    }

    .bonuses-section__vip-table,
    .bonuses-section__vip-table thead,
    .bonuses-section__vip-table tbody,
    .bonuses-section__vip-table th,
    .bonuses-section__vip-table td,
    .bonuses-section__vip-table tr {
        display: block;
    }

    .bonuses-section__vip-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .bonuses-section__vip-table tr {
        background-color: #2a2a2a;
        margin-bottom: 0.5rem;
        border-radius: 4px;
        overflow: hidden;
    }

    .bonuses-section__vip-table td {
        border: none;
        position: relative;
        padding: 0.8rem !important;
        width: 100% !important;
    }

    .bonuses-section__vip-level {
        background-color: #D4AF37 !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem !important;
    }

    .bonuses-section__vip-benefits {
        background-color: #2a2a2a !important;
        color: #E0E0E0 !important;
        font-size: 0.9rem !important;
    }

    .registration-section {
        padding: 0 0 3rem 0;
    }

    .registration-section__title {
        font-size: 2rem;
    }

    .registration-section__image {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
    }

    .registration-section__subtitle {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }

    .registration-section__text {
        font-size: 17px;
        text-align: left;
    }

    .registration-section__steps {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .registration-section__step {
        margin-bottom: 0.8rem;
    }

    .payment-section {
        padding: 0 0 3rem 0;
    }

    .payment-section__title {
        font-size: 2rem;
    }

    .payment-section__subtitle {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }

    .payment-section__text {
        font-size: 17px;
        text-align: left;
    }

    .payment-section__table,
    .payment-section__table thead,
    .payment-section__table tbody,
    .payment-section__table th,
    .payment-section__table td,
    .payment-section__table tr {
        display: block;
    }

    .payment-section__table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .payment-section__table tr {
        background-color: #2a2a2a;
        margin-bottom: 0.5rem;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
        padding-top: 2.5rem;
    }

    .payment-section__table tr:before {
        content: "Zahlungsmethode: ";
        position: absolute;
        top: 0.8rem;
        left: 0.8rem;
        font-family: 'Cinzel', serif;
        color: #D4AF37;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
    }

    .payment-section__table td {
        border: none;
        position: relative;
        padding: 0.8rem !important;
        width: 100% !important;
    }

    .payment-section__method {
        background-color: #D4AF37 !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem;
    }

    .payment-section__amount {
        background-color: #2a2a2a !important;
        color: #E0E0E0 !important;
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem;
    }

    .payment-section__amount:nth-child(2):before {
        content: "Mindest: ";
        color: #D4AF37;
        font-weight: 600;
    }

    .payment-section__amount:nth-child(3):before {
        content: "Maximal: ";
        color: #D4AF37;
        font-weight: 600;
    }

    .mobile-section {
        padding: 0 0 3rem 0;
    }

    .mobile-section__title {
        font-size: 2rem;
    }

    .mobile-section__text {
        font-size: 17px;
        text-align: left;
    }

    .support-section {
        padding: 0 0 3rem 0;
    }

    .support-section__title {
        font-size: 2rem;
    }

    .support-section__text {
        font-size: 17px;
        text-align: left;
    }

    .security-section {
        padding: 0 0 3rem 0;
    }

    .security-section__title {
        font-size: 2rem;
    }

    .security-section__text {
        font-size: 17px;
        text-align: left;
    }

    .conclusion-section {
        padding: 2rem 0;
    }

    .conclusion-section__title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        letter-spacing: 0.5px;
    }

    .conclusion-section__content {
        max-width: 100%;
        padding: 1.5rem;
        border-radius: 6px;
    }

    .conclusion-section__text {
        font-size: 17px;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 1rem;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-section__accordion {
        max-width: 100%;
    }

    .faq-item__question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item__question-text {
        margin-right: 0.8rem;
    }

    .faq-item__icon {
        font-size: 1.3rem;
    }

    .faq-item__answer-content {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
}

.footer {
    background: #0a0a0a;
    color: #E0E0E0;
    margin-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer__container {
    max-width: 1210px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 1;
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer__brand {
    text-align: center;
}

.footer__logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer__btn {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 1px solid #D4AF37;
}

.footer__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E6C757, #D4AF37);
}

.footer__disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #B0B0B0;
    max-width: 300px;
    margin: 0 auto;
    font-family: 'Jost', sans-serif;
}

.footer__payments-title {
    color: #D4AF37;
    font-size: 18px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer__payments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.footer__payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 10px;
    min-height: 50px;
    transition: all 0.3s ease;
}

.footer__payment-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.footer__payment-item img {
    max-width: 100%;
    max-height: 35px;
    width: auto;
    height: auto;
    filter: brightness(0.9);
}

.footer__certifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer__cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 10px;
    min-height: 50px;
    transition: all 0.3s ease;
}

.footer__cert-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.footer__cert-item img {
    max-width: 100%;
    max-height: 30px;
    width: auto;
    height: auto;
    filter: brightness(0.9);
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
}

.footer__link {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Jost', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.footer__link:hover {
    color: #D4AF37;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #B8941F);
    transition: width 0.3s ease;
}

.footer__link:hover::after {
    width: 100%;
}

.footer__bottom-certs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer__bottom-cert {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.footer__bottom-cert:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.footer__bottom-cert img {
    max-height: 40px;
    width: auto;
    filter: brightness(0.9);
}

.footer__copyright {
    text-align: center;
    font-size: 12px;
    color: #B0B0B0;
    font-family: 'Jost', sans-serif;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer__bottom-certs {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 30px 15px 15px;
    }
    
    .footer__payments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .footer__payment-item {
        padding: 8px;
        min-height: 45px;
    }
    
    .footer__payment-item img {
        max-height: 28px;
    }
    
    .footer__certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer__cert-item {
        padding: 8px;
        min-height: 45px;
    }
    
    .footer__cert-item img {
        max-height: 25px;
    }
    
    .footer__bottom-certs {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0.75rem;
    }
    
    .header__logo-img {
        height: 1.75rem;
    }
    
    .header__login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero__container {
        padding: 1rem;
    }

    .hero__top {
        gap: 1.5rem;
    }

    .hero__left {
        max-width: 100%;
    }

    .hero__right {
        max-width: 320px;
    }

    .hero__content-box {
        padding: 1.5rem;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__description {
        font-size: 17px;
    }

    .hero__btn {
        max-width: 280px;
        height: 50px;
        padding: 0.6rem 0.8rem;
    }

    .hero__btn-text {
        font-size: calc(0.75rem + 1px);
    }

    .hero__btn-icon {
        font-size: 1rem;
        margin-left: 0.5rem;
    }

    .hero__btn-arrow {
        font-size: 0.9rem;
        margin-right: 0.7rem;
    }

    .hero__main-img {
        max-height: 250px;
    }

    .casino-section {
        padding: 1.5rem 0;
    }

    .info-section {
        padding: 2rem 0;
    }



    .info-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-section__text {
        font-size: 17px;
    }

    .casino-info-table {
        padding: 2rem 0;
    }

    .casino-info-table__table {
        border-radius: 4px;
    }

    .casino-info-table__header {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }

    .casino-info-table__property {
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
        width: 35%;
    }

    .casino-info-table__details {
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
    }

    .casino-info-table__table,
    .casino-info-table__table thead,
    .casino-info-table__table tbody,
    .casino-info-table__table th,
    .casino-info-table__table td,
    .casino-info-table__table tr {
        display: block;
    }

    .casino-info-table__table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .casino-info-table__table tr {
        background-color: #2a2a2a;
        margin-bottom: 0.5rem;
        border-radius: 4px;
        overflow: hidden;
    }

    .casino-info-table__table td {
        border: none;
        position: relative;
        padding: 0.8rem !important;
        width: 100% !important;
    }

    .casino-info-table__property {
        background-color: #D4AF37 !important;
        color: #1a1a1a !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .casino-info-table__details {
        background-color: #2a2a2a !important;
        color: #E0E0E0 !important;
    }

    .games-section {
        padding: 2rem 0;
    }

    .games-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .games-section__subtitle {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .games-section__text {
        font-size: 17px;
    }

    .games-section__image {
        max-width: 100%;
        margin-bottom: 1rem;
        border-radius: 4px;
    }

    .games-section__providers {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin: 1rem 0;
    }

    .games-section__provider {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .sports-section {
        padding: 0 0 2rem 0;
    }

    .sports-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sports-section__subtitle {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .sports-section__text {
        font-size: 17px;
    }

    .tournaments-section {
        padding: 0 0 2rem 0;
    }

    .tournaments-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .tournaments-section__text {
        font-size: 17px;
    }

    .tournaments-section__image {
        width: 100%;
        margin-bottom: 1rem;
    }

    .tournaments-section__image img {
        border-radius: 4px;
    }

    .bonuses-section {
        padding: 0 0 2rem 0;
    }

    .bonuses-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .bonuses-section__subtitle {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .bonuses-section__text {
        font-size: 17px;
    }

    .bonuses-section__vip-table {
        border-radius: 4px;
    }

    .bonuses-section__vip-level {
        font-size: 0.8rem !important;
        padding: 0.7rem 0.8rem !important;
    }

    .bonuses-section__vip-benefits {
        font-size: 0.8rem !important;
        padding: 0.7rem 0.8rem !important;
    }

    .registration-section {
        padding: 0 0 2rem 0;
    }

    .registration-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .registration-section__image {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem;
        border-radius: 4px;
    }

    .registration-section__subtitle {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .registration-section__text {
        font-size: 17px;
    }

    .registration-section__steps {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }

    .registration-section__step {
        margin-bottom: 0.7rem;
    }

    .payment-section {
        padding: 0 0 2rem 0;
    }

    .payment-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .payment-section__subtitle {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .payment-section__text {
        font-size: 17px;
    }

    .payment-section__table {
        border-radius: 4px;
    }

    .payment-section__method {
        font-size: 0.8rem !important;
        padding: 0.7rem 0.8rem !important;
    }

    .payment-section__amount {
        font-size: 0.8rem !important;
        padding: 0.7rem 0.8rem !important;
    }

    .mobile-section {
        padding: 0 0 2rem 0;
    }

    .mobile-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .mobile-section__text {
        font-size: 17px;
    }

    .support-section {
        padding: 0 0 2rem 0;
    }

    .support-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .support-section__text {
        font-size: 17px;
    }

    .security-section {
        padding: 0 0 2rem 0;
    }

    .security-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .security-section__text {
        font-size: 17px;
    }

    .conclusion-section {
        padding: 1.5rem 0;
    }

    .conclusion-section__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 0.3px;
    }

    .conclusion-section__content {
        padding: 1.2rem;
        border-radius: 4px;
    }

    .conclusion-section__text {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .faq-section {
        padding: 2rem 0;
    }

    .faq-section__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-item__question {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-item__question-text {
        margin-right: 0.6rem;
    }

    .faq-item__icon {
        font-size: 1.2rem;
    }

    .faq-item__answer-content {
        padding: 1.2rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.header__mobile-login {
    display: none;
    background-color: #008000;
    color: #ffffff;
    border: 2px solid #000000;
    outline: 1px solid #004000;
    padding: 0.5rem 1rem;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 0 1px #004000;
    margin-right: 1rem;
}

.header__mobile-login:hover {
    background-color: #006800;
}

/* Mobile Navigation Styles */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.header__menu-toggle span {
    width: 2rem;
    height: 0.2rem;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.header__nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.header__nav-link--active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

/* Login Page Styles */
.login-hero {
    background-image: url('img/bg-legiano.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

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

.login-hero__background {
    display: none;
}

.login-hero__bg-img {
    display: none;
}

.login-hero__content-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.98));
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.login-hero__title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.login-hero__button-container {
    display: flex;
    justify-content: center;
}

.login-hero__btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    border: 2px solid #000000;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-hero__btn:hover {
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    transform: translateY(-2px);
}

.login-hero__btn-text {
    font-weight: 600;
}

.login-hero__btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.login-hero__btn:hover .login-hero__btn-arrow {
    transform: translateX(3px);
}

.login-intro {
    padding: 3rem 0;
}

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

.login-intro__text {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E0E0E0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.login-image-section {
    padding: 2rem 0;
}

.login-image-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.login-image-section__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.login-steps {
    padding: 3rem 0;
}

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

.login-steps__title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    text-align: left;
}

.login-steps__text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.login-steps__list {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E0E0E0;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.login-steps__item {
    margin-bottom: 1.5rem;
}

.login-steps__sublist {
    margin: 1rem 0 0 1.5rem;
    padding-left: 1rem;
}

.login-steps__button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.login-steps__btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    border: 2px solid #000000;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-steps__btn:hover {
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    transform: translateY(-2px);
}

.login-steps__btn-text {
    font-weight: 600;
}

.login-steps__btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.login-steps__btn:hover .login-steps__btn-arrow {
    transform: translateX(3px);
}

.verification-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(30, 30, 30, 0.7));
}

.verification-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.verification-section__title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    text-align: left;
}

.verification-section__text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.verification-section__requirements {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E0E0E0;
    padding-left: 1.5rem;
}

.verification-section__requirement {
    margin-bottom: 1.5rem;
}

/* Mobile Styles for Navigation */
@media (max-width: 768px) {
    .header__mobile-login {
        display: flex;
        align-items: center;
    }

    .header__menu-toggle {
        display: flex;
    }

    .header__nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 5;
        backdrop-filter: blur(10px);
    }

    .header__nav-menu.active {
        right: 0;
    }

    .header__nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .header__login-btn {
        margin-top: 1rem;
    }

    /* Login Page Mobile Styles */
    .login-hero {
        min-height: 50vh;
        background-position: center center;
    }

    .login-hero__container {
        padding: 1rem;
    }

    .login-hero__content-box {
        padding: 2rem;
    }

    .login-hero__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .login-hero__btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .login-steps__title {
        font-size: 1.8rem;
    }

    .login-steps__text {
        font-size: 17px;
    }

    .login-steps__list {
        font-size: 0.95rem;
        padding-left: 1rem;
    }

    .login-steps__btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .verification-section__title {
        font-size: 1.5rem;
    }

    .verification-section__text {
        font-size: 17px;
    }

    .verification-section__requirements {
        font-size: 0.95rem;
        padding-left: 1rem;
    }

    .login-image-section__image {
        max-width: 90%;
    }
}

/* Ensure all hero buttons are properly aligned - Desktop only */
@media (min-width: 769px) {
    .hero__buttons {
        display: flex;
        flex-direction: row;
        gap: 1.2rem;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        align-items: center;
    }

    .hero__btn {
        align-items: center;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.98));
    border-top: 2px solid #D4AF37;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-banner__content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner__title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.cookie-banner__text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #E0E0E0;
    margin-bottom: 0.5rem;
}

.cookie-banner__link {
    color: #D4AF37;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner__link:hover {
    color: #ffffff;
}

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-align: center;
}

.cookie-banner__btn--accept {
    background-color: #008000;
    color: #ffffff;
    border-color: #004000;
}

.cookie-banner__btn--accept:hover {
    background-color: #006800;
}

.cookie-banner__btn--decline {
    background-color: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.cookie-banner__btn--decline:hover {
    background-color: #D4AF37;
    color: #1a1a1a;
}

.cookie-banner__btn--manage {
    background-color: transparent;
    color: #ffffff;
    border-color: #666666;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    min-width: auto;
}

.cookie-banner__btn--manage:hover {
    background-color: #666666;
    color: #ffffff;
}

/* Cookie Banner Mobile Styles */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner__container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner__content {
        min-width: auto;
    }
    
    .cookie-banner__title {
        font-size: 1.1rem;
    }
    
    .cookie-banner__text {
        font-size: 0.85rem;
    }
    
    .cookie-banner__actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .cookie-banner__btn {
        width: 100%;
        max-width: 250px;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
    
    .cookie-banner__btn--manage {
        font-size: 0.75rem;
        max-width: 200px;
    }
} 