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

body {
    font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background-color: #1f2937;
}

a {
    color: #ecfd00;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

a:hover {
    color: #d4e000;
    text-decoration: none;
}

a:focus {
    outline: 2px solid #ecfd00;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

h2 {
    border-bottom: 3px solid #ecfd00;
    padding-bottom: 0.5rem;
    scroll-margin-top: 120px;
}

.header {
    background-color: #111828;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.header__logo-link:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.header__logo-img {
    height: 4rem;
    width: auto;
    display: block;
}

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

.header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.header__menu-item {
    margin: 0;
}

.header__menu-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.header__menu-link:hover {
    color: #ecfd00;
}

.header__menu-link:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ecfd00;
    transition: width 0.3s ease;
}

.header__menu-link:hover::after {
    width: 100%;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1000;
}

.header__hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.header__hamburger--open .header__hamburger-line:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger--open .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger--open .header__hamburger-line:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header__btn--login {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.header__btn--login:hover {
    background-color: #ffffff;
    color: #111828;
}

.header__btn--login:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.header__btn--register {
    background-color: #ecfd00;
    color: #000000;
    border-color: #ecfd00;
}

.header__btn--register:hover {
    background-color: #d4e000;
    border-color: #d4e000;
}

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

@media (max-width: 768px) {
    .header__container {
        padding: 0 1rem;
    }
    
    .header__logo-img {
        height: 3.5rem;
    }
    
    .header__nav {
        position: relative;
    }
    
    .header__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #111828;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .header__nav--open .header__menu {
        right: 0;
    }
    
    .header__menu-link {
        font-size: 1rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header__hamburger {
        display: flex;
        order: 2;
        margin-left: 1rem;
    }
    
    .header__btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
        min-width: 100px;
        order: 1;
    }
}

@media (max-width: 480px) {
    .header__menu {
        width: 100%;
        right: -100%;
        padding: 6rem 1rem 2rem;
    }
    
    .header__btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        min-width: 90px;
    }
}

.hero {
    background: linear-gradient(135deg, rgba(17, 24, 40, 0.9), rgba(30, 41, 59, 0.8)), url('img/rectangle1.webp');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

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

.hero__content {
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero__bonus-info {
    background: linear-gradient(135deg, #1a2845 0%, #2c3e50 100%);
    padding: 8px 1.5rem 10px;
    border-radius: 6px;
    margin-bottom: 2rem;
    border: 2px solid #ecfd00;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__bonus-icon {
    flex-shrink: 0;
}

.hero__bonus-svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 8px rgba(236, 253, 0, 0.4));
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

.hero__bonus-content {
    display: flex;
    flex-direction: column;
}

.hero__bonus-sport {
    color: #ecfd00;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
    text-shadow: 0 0 10px rgba(236, 253, 0, 0.3);
}

.hero__bonus-amount {
    color: #ffffff;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__btn {
    background-color: #ecfd00;
    color: #000000;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(236, 253, 0, 0.7);
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(236, 253, 0, 0.7);
    }
    50% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(236, 253, 0, 0);
    }
    100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(236, 253, 0, 0);
    }
}

.hero__btn:hover {
    background-color: #d4e000;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(236, 253, 0, 0.7);
    animation: none;
}

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

.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 18px;
        max-width: 100%;
    }
    
    .hero__features {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero__feature {
        min-width: 100px;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .hero__container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 2rem;
    }
    
    .hero__bonus-info {
        margin: 0 0 2rem 0;
        max-width: 100%;
        width: 100%;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 1rem;
        text-align: left;
    }
    
    .hero__bonus-svg {
        width: 70px;
        height: 70px;
    }
    
    .hero__bonus-sport {
        font-size: 1rem;
    }
    
    .hero__bonus-amount {
        font-size: 1.5rem;
    }
    
    .hero__feature {
        min-width: 90px;
        padding: 0.75rem 0.5rem;
        flex: none;
    }
    
    .hero__feature-icon {
        font-size: 1.25rem;
    }
    
    .hero__feature-text {
        font-size: 0.75rem;
    }
    
    .hero__btn {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 45vh;
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .hero__container {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .hero__features {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .hero__feature {
        min-width: 80px;
        padding: 0.5rem 0.25rem;
    }
    
    .hero__feature-icon {
        font-size: 1rem;
    }
    
    .hero__feature-text {
        font-size: 0.625rem;
        line-height: 1.2;
    }
    
    .hero__btn {
        padding: 1.125rem 2.75rem;
        font-size: 1rem;
        width: 100%;
    }
}

.casino-review {
    background-color: #1f2937;
    padding: 4rem 0;
}

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

.casino-review h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.casino-review p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.casino-review__details {
    background-color: #111827;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #374151;
    margin-top: 2rem;
}

.casino-review__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #374151;
    transition: background-color 0.3s ease;
}

.casino-review__row:last-child {
    border-bottom: none;
}

.casino-review__row:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.casino-review__label {
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #f9fafb;
    background-color: #1f2937;
    border-right: 1px solid #374151;
    display: flex;
    align-items: center;
}

.casino-review__value {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.casino-review__image {
    margin-top: 2rem;
    text-align: center;
}

.casino-review__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .casino-review {
        padding: 3rem 0;
    }
    
    .casino-review__container {
        padding: 0 1rem;
    }
    
    .casino-review__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .casino-review__description {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .casino-review__details {
        margin-top: 1.5rem;
    }
    
    .casino-review__row {
        grid-template-columns: 1fr;
    }
    
    .casino-review__label {
        border-right: none;
        border-bottom: 1px solid #374151;
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .casino-review__value {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .casino-review__image {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .casino-review {
        padding: 2rem 0;
    }
    
    .casino-review__title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .casino-review__description {
        font-size: 18px;
    }
    
    .casino-review__label {
        padding: 0.625rem;
        font-size: 0.9375rem;
    }
    
    .casino-review__value {
        padding: 0.625rem;
        font-size: 0.9375rem;
    }
    
    .casino-review__image {
        margin-top: 1rem;
    }
}

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

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

.registration-guide h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.registration-guide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.registration-guide p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.registration-guide__steps {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
    padding: 0;
}

.registration-guide__steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 1rem 0 1rem 3rem;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    border-bottom: 1px solid #374151;
}

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

.registration-guide__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: #ecfd00;
    color: #111827;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.registration-guide__steps li strong {
    color: #ffffff;
    font-weight: 600;
}

.account-management {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.account-management h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.account-management h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.account-management p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.account-management__steps,
.account-management__recovery {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
    padding: 0;
}

.account-management__steps li,
.account-management__recovery li {
    counter-increment: step-counter;
    position: relative;
    padding: 1rem 0 1rem 3rem;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    border-bottom: 1px solid #374151;
}

.account-management__steps li:last-child,
.account-management__recovery li:last-child {
    border-bottom: none;
}

.account-management__steps li::before,
.account-management__recovery li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: #ecfd00;
    color: #111827;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.platform-features {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.platform-features h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.platform-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.deposit-methods h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

strong {
    font-weight: 700;
    color: #ffffff;
}

.platform-features p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

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

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

.bonus-promotions h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.bonus-promotions p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.bonus-promotions__list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.bonus-promotions__list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    border-bottom: 1px solid #374151;
}

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

.bonus-promotions__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #ecfd00;
    font-weight: bold;
    font-size: 1.2rem;
}

.bonus-promotions__list li strong {
    color: #ffffff;
    font-weight: 600;
}

.bonus-promotions__table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 0.5rem;
    border: 1px solid #374151;
}

.bonus-promotions__table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #111827;
}

.bonus-promotions__table th,
.bonus-promotions__table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #374151;
}

.bonus-promotions__table th {
    background-color: #1f2937;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-promotions__table td {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

.bonus-promotions__table tr:last-child th,
.bonus-promotions__table tr:last-child td {
    border-bottom: none;
}

.bonus-promotions__table tr:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

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

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

.welcome-bonus-details h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.welcome-bonus-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.welcome-bonus-details p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.welcome-bonus-details__list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.welcome-bonus-details__list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    border-bottom: 1px solid #374151;
}

.welcome-bonus-details__list li:last-child {
    border-bottom: none;
}

.welcome-bonus-details__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #ecfd00;
    font-weight: bold;
    font-size: 1.2rem;
}

.welcome-bonus-details__list li strong {
    color: #ffffff;
    font-weight: 600;
}

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

.welcome-bonus-details__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.game-selection {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.game-selection h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.game-selection h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.game-selection p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.game-selection__list,
.game-selection__slots-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.game-selection__list li,
.game-selection__slots-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    border-bottom: 1px solid #374151;
}

.game-selection__list li:last-child,
.game-selection__slots-list li:last-child {
    border-bottom: none;
}

.game-selection__list li::before,
.game-selection__slots-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #ecfd00;
    font-weight: bold;
    font-size: 1.2rem;
}

.game-selection__list li strong,
.game-selection__slots-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.game-selection__image {
    margin: 2rem 0;
    text-align: center;
}

.game-selection__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.deposit-methods {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.deposit-methods h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.deposit-methods p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.deposit-methods__list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.deposit-methods__list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    border-bottom: 1px solid #374151;
}

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

.deposit-methods__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #ecfd00;
    font-weight: bold;
    font-size: 1.2rem;
}

.deposit-methods__list li strong {
    color: #ffffff;
    font-weight: 600;
}

.casino-security {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.casino-security h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.casino-security p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

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

.customer-support {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.customer-support h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.customer-support p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

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

.customer-support__image {
    margin: 2rem 0;
    text-align: center;
}

.customer-support__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.customer-support__list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.customer-support__list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    border-bottom: 1px solid #374151;
}

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

.customer-support__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #ecfd00;
    font-weight: bold;
    font-size: 1.2rem;
}

.customer-support__list li strong {
    color: #ffffff;
    font-weight: 600;
}

.casino-features {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.casino-features h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.casino-features > .casino-features__container > p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: justify;
    max-width: 100%;
}

.casino-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.casino-features__item {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid #6b7280;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-features__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.casino-features__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.casino-features__item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.casino-features__item p {
    font-size: 0.8125rem;
    color: #d1d5db;
    line-height: 1.5;
    margin: 0;
}

.casino-features__tech-text {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 3rem;
    max-width: 100%;
}

.casino-features__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.casino-features__card {
    background-color: #1f2937;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

.casino-features__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #ecfd00;
}

.casino-features__card-image {
    width: 100%;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #111827, #1f2937);
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-features__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.casino-features__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 0.75rem;
}

.casino-features__card-text {
    font-size: 0.9375rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.casino-features__card-btn {
    background-color: #ecfd00;
    color: #111827;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.casino-features__card-btn:hover {
    background-color: #d4e000;
    transform: translateY(-1px);
}

.casino-features__card-btn:focus {
    outline: 2px solid #ecfd00;
    outline-offset: 2px;
}

@media (max-width: 1024px) {
    .casino-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .casino-features__cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .registration-guide {
        padding: 0 0 3rem 0;
    }
    
    .registration-guide__container {
        padding: 0 1rem;
    }
    
    .registration-guide h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .registration-guide h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .registration-guide p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .registration-guide__steps li {
        padding: 0.75rem 0 0.75rem 2.5rem;
        font-size: 18px;
    }
    
    .registration-guide__steps li::before {
        top: 0.75rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .account-management {
        padding: 0 0 3rem 0;
    }
    
    .account-management__container {
        padding: 0 1rem;
    }
    
    .account-management h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .account-management h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .account-management p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .account-management__steps li,
    .account-management__recovery li {
        padding: 0.75rem 0 0.75rem 2.5rem;
        font-size: 18px;
    }
    
    .account-management__steps li::before,
    .account-management__recovery li::before {
        top: 0.75rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .platform-features {
        padding: 0 0 3rem 0;
    }
    
    .platform-features__container {
        padding: 0 1rem;
    }
    
    .platform-features h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .platform-features h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .deposit-methods h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .platform-features p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .bonus-promotions {
        padding: 0 0 3rem 0;
    }
    
    .bonus-promotions__container {
        padding: 0 1rem;
    }
    
    .bonus-promotions h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-promotions p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .bonus-promotions__list li {
        padding: 0.625rem 0 0.625rem 1.5rem;
        font-size: 18px;
    }
    
    .bonus-promotions__list li::before {
        top: 0.625rem;
    }
    
    .bonus-promotions__table {
        font-size: 0.875rem;
    }
    
    .bonus-promotions__table th,
    .bonus-promotions__table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }

    .casino-features {
        padding: 0 0 3rem 0;
    }
    
    .casino-features__container {
        padding: 0 1rem;
    }
    
    .casino-features h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .casino-features > .casino-features__container > p {
        margin-bottom: 2rem;
    }
    
    .casino-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .casino-features__item {
        padding: 1.5rem 1rem;
    }
    
    .casino-features__icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .casino-features__item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .casino-features__item p {
        font-size: 0.8125rem;
    }
    
    .casino-features__tech-text {
        margin-bottom: 1.5rem;
    }
    
    .casino-features__card {
        padding: 0.875rem;
    }
    
    .casino-features__card-image {
        height: 120px;
        margin-bottom: 0.75rem;
    }
    
    .casino-features__card-title {
        font-size: 1.0625rem;
        margin-bottom: 0.375rem;
    }
    
    .casino-features__card-text {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }
    
    .casino-features__card-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .registration-guide {
        padding: 0 0 2rem 0;
    }
    
    .registration-guide h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .registration-guide h3 {
        font-size: 1.125rem;
    }
    
    .registration-guide p {
        font-size: 18px;
    }
    
    .registration-guide__steps li {
        padding: 0.625rem 0 0.625rem 2.25rem;
        font-size: 18px;
    }
    
    .registration-guide__steps li::before {
        top: 0.625rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.6875rem;
    }
    
    .account-management {
        padding: 0 0 2rem 0;
    }
    
    .account-management h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .account-management h3 {
        font-size: 1.125rem;
    }
    
    .account-management p {
        font-size: 18px;
    }
    
    .account-management__steps li,
    .account-management__recovery li {
        padding: 0.625rem 0 0.625rem 2.25rem;
        font-size: 18px;
    }
    
    .account-management__steps li::before,
    .account-management__recovery li::before {
        top: 0.625rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.6875rem;
    }
    
    .platform-features {
        padding: 0 0 2rem 0;
    }
    
    .platform-features h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .platform-features h3 {
        font-size: 1.125rem;
    }
    
    .deposit-methods h3 {
        font-size: 1.125rem;
    }
    
    .platform-features p {
        font-size: 18px;
    }
    
    .bonus-promotions {
        padding: 0 0 2rem 0;
    }
    
    .bonus-promotions h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .bonus-promotions p {
        font-size: 18px;
    }
    
    .bonus-promotions__list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 18px;
    }
    
    .bonus-promotions__list li::before {
        top: 0.5rem;
        font-size: 1rem;
    }
    
    .bonus-promotions__table thead {
        display: none;
    }
    
    .bonus-promotions__table tbody tr {
        display: block;
        background-color: #111827;
        border: 1px solid #374151;
        border-radius: 0.5rem;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
    }
    
    .bonus-promotions__table tbody tr:hover {
        background-color: #1f2937;
    }
    
    .bonus-promotions__table tbody td {
        display: block;
        border: none;
        padding: 0.375rem 0;
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .bonus-promotions__table tbody td:before {
        content: attr(data-label) ":";
        font-weight: 600;
        color: #ffffff;
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.8125rem;
    }
    
    .bonus-promotions__table tbody td:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .welcome-bonus-details {
        padding: 0 0 3rem 0;
    }
    
    .welcome-bonus-details__container {
        padding: 0 1rem;
    }
    
    .welcome-bonus-details h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-bonus-details h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .welcome-bonus-details p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .welcome-bonus-details__list li {
        padding: 0.625rem 0 0.625rem 1.5rem;
        font-size: 18px;
    }
    
    .welcome-bonus-details__list li::before {
        top: 0.625rem;
    }
    
    .welcome-bonus-details__image {
        margin-top: 1.5rem;
    }
    
    .game-selection {
        padding: 0 0 3rem 0;
    }
    
    .game-selection__container {
        padding: 0 1rem;
    }
    
    .game-selection h2 {
        font-size: 1.75rem;
    }
    
    .game-selection h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .game-selection p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .game-selection__list li,
    .game-selection__slots-list li {
        padding: 0.625rem 0 0.625rem 1.5rem;
        font-size: 18px;
    }
    
    .game-selection__list li::before,
    .game-selection__slots-list li::before {
        top: 0.625rem;
    }
    
    .game-selection__image {
        margin: 1.5rem 0;
    }
    
    .deposit-methods {
        padding: 0 0 3rem 0;
    }
    
    .deposit-methods__container {
        padding: 0 1rem;
    }
    
    .deposit-methods h2 {
        font-size: 1.75rem;
    }
    
    .deposit-methods p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .deposit-methods__list li {
        padding: 0.625rem 0 0.625rem 1.5rem;
        font-size: 18px;
    }
    
    .deposit-methods__list li::before {
        top: 0.625rem;
    }
    
    .casino-security {
        padding: 0 0 3rem 0;
    }
    
    .casino-security__container {
        padding: 0 1rem;
    }
    
    .casino-security h2 {
        font-size: 1.75rem;
    }
    
    .casino-security p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .customer-support {
        padding: 0 0 3rem 0;
    }
    
    .customer-support__container {
        padding: 0 1rem;
    }
    
    .customer-support h2 {
        font-size: 1.75rem;
    }
    
    .customer-support p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .customer-support__image {
        margin: 1.5rem 0;
    }
    
    .customer-support__list li {
        padding: 0.625rem 0 0.625rem 1.5rem;
        font-size: 18px;
    }
    
    .customer-support__list li::before {
        top: 0.625rem;
    }

    .casino-features {
        padding: 0 0 2rem 0;
    }
    
    .casino-features h2 {
        font-size: 1.5rem;
    }
    
    .casino-features > .casino-features__container > p {
        margin-bottom: 1.5rem;
    }
    
    .casino-features__tech-text {
        margin-bottom: 1rem;
    }
    
    .casino-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .casino-features__item {
        padding: 1.5rem 1rem;
    }
    
    .casino-features__icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .casino-features__item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .casino-features__item p {
        font-size: 0.875rem;
    }
    
    .casino-features__cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .casino-features__card {
        padding: 0.75rem;
    }
    
    .casino-features__card-image {
        height: 100px;
        margin-bottom: 0.625rem;
    }
    
    .casino-features__card-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .casino-features__card-text {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }
    
    .casino-features__card-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .welcome-bonus-details {
        padding: 0 0 2rem 0;
    }
    
    .welcome-bonus-details h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .welcome-bonus-details h3 {
        font-size: 1.125rem;
    }
    
    .welcome-bonus-details p {
        font-size: 18px;
    }
    
    .welcome-bonus-details__list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 18px;
    }
    
    .welcome-bonus-details__list li::before {
        top: 0.5rem;
        font-size: 1rem;
    }
    
    .welcome-bonus-details__image {
        margin-top: 1rem;
    }
    
    .game-selection {
        padding: 0 0 2rem 0;
    }
    
    .game-selection h2 {
        font-size: 1.5rem;
    }
    
    .game-selection h3 {
        font-size: 1.125rem;
    }
    
    .game-selection p {
        font-size: 18px;
    }
    
    .game-selection__list li,
    .game-selection__slots-list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 18px;
    }
    
    .game-selection__list li::before,
    .game-selection__slots-list li::before {
        top: 0.5rem;
        font-size: 1rem;
    }
    
    .game-selection__image {
        margin: 1rem 0;
    }
    
    .deposit-methods {
        padding: 0 0 2rem 0;
    }
    
    .deposit-methods h2 {
        font-size: 1.5rem;
    }
    
    .deposit-methods p {
        font-size: 18px;
    }
    
    .deposit-methods__list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 18px;
    }
    
    .deposit-methods__list li::before {
        top: 0.5rem;
        font-size: 1rem;
    }
    
    .casino-security {
        padding: 0 0 2rem 0;
    }
    
    .casino-security h2 {
        font-size: 1.5rem;
    }
    
    .casino-security p {
        font-size: 18px;
    }
    
    .customer-support {
        padding: 0 0 2rem 0;
    }
    
    .customer-support h2 {
        font-size: 1.5rem;
    }
    
    .customer-support p {
        font-size: 18px;
    }
    
    .customer-support__image {
        margin: 1rem 0;
    }
    
    .customer-support__list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 18px;
    }
    
    .customer-support__list li::before {
        top: 0.5rem;
        font-size: 1rem;
    }
}

.pros-cons {
    background-color: #1f2937;
    padding: 3rem 0;
}

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

.pros-cons h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pros-cons p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 3rem;
}

.pros-cons__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros-cons__pros,
.pros-cons__cons {
    background-color: #374151;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid;
}

.pros-cons__pros {
    border-color: #10b981;
}

.pros-cons__cons {
    border-color: #ef4444;
}

.pros-cons__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pros-cons__subtitle--pros {
    color: #10b981;
}

.pros-cons__subtitle--cons {
    color: #ef4444;
}

.pros-cons__icon {
    font-size: 1.5rem;
    font-weight: bold;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pros-cons__icon--pros {
    background-color: #10b981;
}

.pros-cons__icon--cons {
    background-color: #ef4444;
}

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

.pros-cons__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.pros-cons__item:last-child {
    margin-bottom: 0;
}

.pros-cons__star {
    color: #ecfd00;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pros-cons__warning {
    color: #fbbf24;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

@media (max-width: 768px) {
    .pros-cons {
        padding: 2rem 0;
    }
    
    .pros-cons__container {
        padding: 0 1rem;
    }
    
    .pros-cons h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .pros-cons p {
        margin-bottom: 2rem;
    }
    
    .pros-cons__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pros-cons__pros,
    .pros-cons__cons {
        padding: 1.5rem;
    }
    
    .pros-cons__subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .pros-cons__item {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .pros-cons {
        padding: 1.5rem 0;
    }
    
    .pros-cons h2 {
        font-size: 1.5rem;
    }
    
    .pros-cons p {
        margin-bottom: 1.5rem;
    }
    
    .pros-cons__pros,
    .pros-cons__cons {
        padding: 1.25rem;
    }
    
    .pros-cons__subtitle {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .pros-cons__icon {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1.25rem;
    }
    
    .pros-cons__item {
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .pros-cons__star,
    .pros-cons__warning {
        font-size: 1.125rem;
    }
}

.faq {
    background-color: #1f2937;
    padding: 3rem 0;
}

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

.faq h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faq p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 3rem;
}

.faq__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid #374151;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #374151;
}

.faq__item:last-child {
    margin-bottom: 0;
}

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

.faq__question:hover {
    background-color: #4b5563;
}

.faq__question.active {
    background-color: #ecfd00;
    color: #000000;
}

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

.faq__question.active .faq__icon {
    transform: rotate(45deg);
}

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

.faq__answer.active {
    max-height: 500px;
}

.faq__answer-content {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 2rem 0;
    }
    
    .faq__container {
        padding: 0 1rem;
    }
    
    .faq h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .faq p {
        margin-bottom: 2rem;
    }
    
    .faq__question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq__answer-content {
        padding: 0.875rem 1.25rem 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 1.5rem 0;
    }
    
    .faq h2 {
        font-size: 1.5rem;
    }
    
    .faq p {
        margin-bottom: 1.5rem;
    }
    
    .faq__question {
        padding: 1rem;
        font-size: 0.9375rem;
    }
    
    .faq__icon {
        font-size: 1.25rem;
    }
    
    .faq__answer-content {
        padding: 0.75rem 1rem 1rem 1rem;
        font-size: 0.875rem;
    }
}

.footer {
    background-color: #374151;
    padding: 2rem 0 1rem 0;
    color: #ffffff;
}

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

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer__certifications {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer__cert-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

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

.footer__cert-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    padding: 0.375rem;
}

.footer__warning {
    background-color: #4b5563;
    border: 2px solid #6b7280;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.footer__warning-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer__warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer__warning-text {
    color: #ffffff;
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 500;
}

.footer__link {
    color: #ecfd00;
    text-decoration: underline;
    font-weight: 600;
}

.footer__link:hover {
    color: #d4e000;
}

.footer__phone {
    color: #ecfd00;
    font-weight: 700;
}

.footer__bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #6b7280;
}

.footer__copyright {
    margin: 0;
    font-size: 0.875rem;
    color: #e5e7eb;
    line-height: 1.5;
}

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

.footer__nav {
    display: flex;
}

.footer__menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.footer__menu-item {
    margin: 0;
}

.footer__menu-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: block;
}

.footer__menu-link:hover {
    color: #ecfd00;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer__menu-link:focus {
    outline: 2px solid #ecfd00;
    outline-offset: 2px;
    color: #ecfd00;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer__container {
        padding: 0 1rem;
    }
    
    .footer__top {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer__logo-img {
        height: 50px;
    }
    
    .footer__certifications {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer__cert-img {
        height: 25px;
        padding: 0.25rem;
    }
    
    .footer__warning {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .footer__warning-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer__warning-text {
        font-size: 0.875rem;
    }
    
    .footer__menu-list {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer__menu-link {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer__certifications {
        gap: 0.5rem;
    }
    
    .footer__cert-img {
        height: 20px;
        padding: 0.125rem;
    }
    
    .footer__warning {
        padding: 1rem;
    }
    
    .footer__menu-list {
        gap: 0.25rem;
    }
    
    .footer__menu-link {
        font-size: 0.8125rem;
        padding: 0.25rem 0.5rem;
    }
    
    .footer__warning-text {
        font-size: 0.8125rem;
    }
    
    .footer__copyright {
        font-size: 0.8125rem;
    }
}

.games-section {
    background-color: #1f2937;
    padding: 0 0 4rem 0;
}

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

.games-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.games-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.games-grid::-webkit-scrollbar {
    height: 8px;
}

.games-grid::-webkit-scrollbar-track {
    background: #333333;
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: #bf0232;
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: #a0021b;
}

.game-card {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid #333333;
    min-width: 200px;
    flex-shrink: 0;
}

.game-card:hover .game-card__play-btn {
    opacity: 1;
    visibility: visible;
}

.game-card:hover .game-card__image::before {
    opacity: 1;
}

.game-card__badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: #ecfd00;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-transform: uppercase;
    z-index: 2;
}

.game-card__image {
    width: 100%;
    height: 300px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.game-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

.game-card__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ecfd00;
    color: #000000;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
}

.game-card__play-btn:hover {
    background-color: #d4e000;
    transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 1024px) {
    .games-grid {
        gap: 0.875rem;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 0 0 3rem 0;
    }
    
    .games-section__container {
        padding: 0 1rem;
    }
    
    .games-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .games-grid {
        gap: 0.75rem;
    }
    
    .game-card {
        padding: 0.75rem;
        min-width: 160px;
    }
    
    .game-card__image {
        height: 240px;
        margin-bottom: 0.625rem;
    }
    
    .game-card__title {
        font-size: 0.875rem;
    }
    
    .game-card__badge {
        top: 0.25rem;
        right: 0.25rem;
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 0 0 2rem 0;
    }
    
    .games-section h2 {
        font-size: 1.5rem;
    }
    
    .games-grid {
        gap: 0.75rem;
    }
    
    .game-card {
        padding: 0.5rem;
        min-width: 120px;
    }
    
    .game-card__image {
        height: 180px;
        margin-bottom: 0.5rem;
    }
    
    .game-card__title {
        font-size: 0.75rem;
    }
} 

.games-hero {
    background: linear-gradient(135deg, #111828, #1e293b);
    padding: 4rem 0;
    color: #ffffff;
}

.games-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.games-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.games-hero__description {
    font-size: 1.125rem;
    color: #e5e7eb;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.games-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.games-hero__stat {
    text-align: center;
}

.games-hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ecfd00;
    margin-bottom: 0.5rem;
}

.games-hero__stat-text {
    font-size: 1rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.games-categories__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

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

.games-categories__item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.games-categories__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.games-categories__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.games-categories__name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.games-categories__desc {
    color: #6b7280;
    line-height: 1.5;
}

.game-providers {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.game-providers__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 1.5rem;
}

.game-providers__description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.game-providers__item {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #ecfd00;
    transition: transform 0.3s ease;
}

.game-providers__item:hover {
    transform: translateY(-3px);
}

.game-providers__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.game-providers__desc {
    color: #6b7280;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .games-hero {
        padding: 3rem 0;
    }
    
    .games-hero__container {
        padding: 0 1rem;
    }
    
    .games-hero__title {
        font-size: 2.5rem;
    }
    
    .games-hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .games-hero__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .games-hero__stat-number {
        font-size: 2rem;
    }
    
    .games-categories {
        padding: 3rem 0;
    }
    
    .games-categories__container {
        padding: 0 1rem;
    }
    
    .games-categories__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .games-categories__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-categories__item {
        padding: 1.5rem;
    }
    
    .game-providers {
        padding: 3rem 0;
    }
    
    .game-providers__container {
        padding: 0 1rem;
    }
    
    .game-providers__title {
        font-size: 2rem;
    }
    
    .game-providers__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .game-providers__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-providers__item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .games-hero__title {
        font-size: 2rem;
    }
    
    .games-hero__stats {
        gap: 1rem;
    }
    
    .games-hero__stat-number {
        font-size: 1.75rem;
    }
    
    .games-categories__title {
        font-size: 1.75rem;
    }
    
    .games-categories__icon {
        font-size: 2.5rem;
    }
    
    .games-categories__name {
        font-size: 1.25rem;
    }
    
    .game-providers__title {
        font-size: 1.75rem;
    }
}

.toc {
    background-color: #1f2937 !important;
    padding: 1rem 0;
}

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

.toc__toggle {
    width: 100%;
    background-color: #1f2937 !important;
    border: 2px solid #ecfd00;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toc__toggle:hover {
    background-color: #374151 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.toc__toggle-text {
    flex: 1;
    text-align: left;
}

.toc__toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.toc__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #1f2937 !important;
}

.toc__content.toc__content--open {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.toc__nav {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 1.5rem;
}

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

.toc__item {
    margin: 0;
}

.toc__link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #374151 !important;
    border: 2px solid #4b5563;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toc__link:hover {
    border-color: #ecfd00 !important;
    background-color: #4b5563 !important;
    color: #ecfd00 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.toc__link:focus {
    outline: 2px solid #ecfd00;
    outline-offset: 2px;
    border-color: #ecfd00 !important;
    background-color: #4b5563 !important;
    color: #ecfd00 !important;
}

@media (max-width: 768px) {
    .toc {
        padding: 0.75rem 0;
    }
    
    .toc__container {
        padding: 0 1rem;
    }
    
    .toc__toggle {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .toc__toggle-icon {
        font-size: 1.25rem;
    }
    
    .toc__nav {
        padding-top: 1rem;
    }
    
    .toc__list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .toc__link {
        padding: 0.875rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .registration-guide,
    .account-management,
    .platform-features,
    .bonus-promotions,
    .welcome-bonus-details,
    .game-selection,
    .deposit-methods,
    .casino-security,
    .customer-support,
    .games-section {
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    .toc {
        padding: 0.5rem 0;
    }
    
    .toc__toggle {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .toc__link {
        padding: 0.75rem 0.625rem;
        font-size: 0.8rem;
    }
    
    .registration-guide,
    .account-management,
    .platform-features,
    .bonus-promotions,
    .welcome-bonus-details,
    .game-selection,
    .deposit-methods,
    .casino-security,
    .customer-support,
    .games-section {
        padding-bottom: 1rem !important;
    }
}

.registration-guide,
.account-management,
.platform-features,
.bonus-promotions,
.welcome-bonus-details,
.game-selection,
.deposit-methods,
.casino-security,
.customer-support,
.games-section,
.casino-review,
.faq {
    scroll-margin-top: 120px;
} 

.main-content {
    padding: 2rem 0;
    color: #ffffff;
    background-color: #1f2937;
}

.page-header {
    background-color: #111828;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

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

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

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

.responsible-gaming__section {
    margin-bottom: 2.5rem;
}

.responsible-gaming__section:last-child {
    margin-bottom: 0;
}

.responsible-gaming__section h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ecfd00;
    padding-bottom: 0.5rem;
}

.responsible-gaming__section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #d1d5db;
}

.responsible-gaming__section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.responsible-gaming__section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.responsible-gaming__section ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ecfd00;
    font-weight: bold;
}

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

.privacy-policy__section {
    margin-bottom: 2.5rem;
}

.privacy-policy__section:last-child {
    margin-bottom: 0;
}

.privacy-policy__section h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ecfd00;
    padding-bottom: 0.5rem;
}

.privacy-policy__section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #d1d5db;
}

.privacy-policy__section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.privacy-policy__section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.privacy-policy__section ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ecfd00;
    font-weight: bold;
}

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

.about-us__section {
    margin-bottom: 2.5rem;
}

.about-us__section:last-child {
    margin-bottom: 0;
}

.about-us__section h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ecfd00;
    padding-bottom: 0.5rem;
}

.about-us__section h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-us__section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #d1d5db;
} 

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-top: 2px solid #ecfd00;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
}

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

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__text p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

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

.cookie-banner__link {
    color: #ecfd00;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: #ffffff;
    background-color: rgba(236, 253, 0, 0.1);
    text-decoration: underline;
}

.cookie-banner__btn {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-banner__btn--decline {
    background-color: transparent;
    color: #9ca3af;
    border: 1px solid #374151;
}

.cookie-banner__btn--decline:hover {
    background-color: #374151;
    color: #ffffff;
    border-color: #4b5563;
}

.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #ecfd00 0%, #d4e000 100%);
    color: #111827;
    border: 1px solid #ecfd00;
}

.cookie-banner__btn--accept:hover {
    background: linear-gradient(135deg, #d4e000 0%, #c4d000 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(236, 253, 0, 0.2);
}

.cookie-banner__btn--accept:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(236, 253, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .cookie-banner__btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .cookie-banner__link {
        order: 3;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner__container {
        padding: 1rem;
    }
    
    .cookie-banner__text p {
        font-size: 0.8125rem;
    }
    
    .cookie-banner__btn {
        font-size: 0.75rem;
        padding: 0.625rem 0.875rem;
    }
    
    .cookie-banner__link {
        font-size: 0.75rem;
    }
} 