
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    min-height: 100vh;
    background-color: #1a1a1a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


.hero-wrapper {
    position: relative;
    background: url('img/bg.webp') top center/cover no-repeat;
    background-attachment: fixed;
    padding-top: 70px; 
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.site-header {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.logo img {
    height: 2.5rem;
    display: block;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    flex-grow: 1;
    margin: 0 2rem;
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    padding-right: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.search-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
}

.search-button:hover {
    color: #fff;
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.25rem;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-outline {
    border: 1px solid #ccc;
    color: #fff;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline::after {
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-primary {
    background-color: #B7171F;
    color: #fff;
    border: 1px solid #B7171F;
}

.btn-primary:hover {
    background-color: #960D14;
    border-color: #960D14;
}

.btn-primary::after {
    border: 1px solid rgba(183, 23, 31, 0.7);
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.hero {
    padding: 6rem 0 4rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #B7171F;
    bottom: -5px;
    left: 25%;
}

.hero-text {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.about {
    padding: 3rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.features {
    padding: 4rem 0;
    background-color: #141414;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #B7171F;
}

.features-intro {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.features-content {
    flex: 1;
}

.features-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #B7171F;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.feature-content p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

.feature-item.with-image {
    display: flex;
    gap: 2rem;
    padding: 0;
    background-color: transparent;
    border-left: none;
}

.feature-image-container {
    flex: 1;
}

.feature-content-container {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #B7171F;
}

.ratings-table {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ratings-table table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.ratings-table th, 
.ratings-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ratings-table th {
    font-weight: 700;
    background: linear-gradient(135deg, rgba(183, 23, 31, 0.15) 0%, rgba(183, 23, 31, 0.08) 100%);
    color: #fde600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(183, 23, 31, 0.3);
}

.ratings-table tbody tr {
    transition: all 0.3s ease;
    background-color: transparent;
}

.ratings-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.ratings-table tbody tr:hover {
    background-color: rgba(183, 23, 31, 0.08);
    transform: translateX(5px);
}

.ratings-table tbody tr:last-child td {
    border-bottom: none;
}

.ratings-table td {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.casino-features {
    padding: 5rem 0;
    background: radial-gradient(circle at center, #252525, #141414);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.casino-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.casino-features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #B7171F;
}

.casino-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: center;
}

.casino-content {
    flex: 2;
    min-width: 300px;
}

.casino-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.casino-content p:last-child {
    margin-bottom: 0;
}

.casino-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
}

.casino-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.casino-image img:hover {
    transform: scale(1.02);
}

.feature-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.feature-block {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-block h3 {
    background-color: rgba(183, 23, 31, 0.9);
    color: #fff;
    padding: 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-content {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.block-text {
    flex: 3;
    min-width: 280px;
}

.block-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.block-text p:last-child {
    margin-bottom: 0;
}

.block-image {
    flex: 2;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature-block:nth-child(2) .block-content {
    display: block;
}

.feature-block:nth-child(2) .block-content p {
    margin-bottom: 1.5rem;
}

.payment-options {
    padding: 5rem 0;
    background-color: #1d1d1d;
    position: relative;
    overflow: hidden;
}

.payment-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 23, 31, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 0;
}

.payment-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.payment-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.payment-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #B7171F;
}

.payment-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.payment-info {
    flex: 1;
    min-width: 300px;
}

.payment-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.payment-info p:last-child {
    margin-bottom: 0;
}

.payment-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(183, 23, 31, 0.5);
    transition: all 0.3s ease;
}

.payment-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(183, 23, 31, 0.8);
}

.registration {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1d1d1d, #141414);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(183, 23, 31, 0.15), transparent 60%);
    z-index: 0;
}

.registration-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.registration-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.registration-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #B7171F;
}

.registration-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.registration-info {
    flex: 1.5;
    min-width: 300px;
}

.registration-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.registration-info h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.registration-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #B7171F;
}

.registration-steps {
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
    list-style: none;
}

.registration-steps li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.registration-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #B7171F;
}

.registration-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.registration-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(183, 23, 31, 0.2);
    transition: all 0.3s ease;
}

.registration-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(183, 23, 31, 0.5);
}

.bonuses {
    padding: 5rem 0 3rem;
    background-color: #141414;
    position: relative;
}

.bonuses::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 60%;
    background: radial-gradient(circle at bottom left, rgba(183, 23, 31, 0.1), transparent 70%);
    z-index: 0;
}

.bonuses-header {
    text-align: left;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.bonuses-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.bonuses-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #B7171F;
}

.bonuses-content {
    position: relative;
    z-index: 1;
    margin: 0;
}

.bonuses-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.bonuses-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 3rem 0 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.bonuses-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #B7171F;
}

.banner-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}

.banner-image {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    width: 80%;
    max-width: 800px;
    padding: 1.5rem 0;
}

.banner-text {
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border-left: 4px solid #B7171F;
}

.banner-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
                 0 2px 10px rgba(0, 0, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
                 0 2px 10px rgba(0, 0, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.banner-content .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    animation: pulse-strong 2s infinite;
    position: relative;
}

@keyframes pulse-strong {
    0% {
        box-shadow: 0 0 0 0 rgba(183, 23, 31, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(183, 23, 31, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(183, 23, 31, 0);
        transform: scale(1);
    }
}

.bonuses-info {
    padding: 4rem 0 5rem;
    background-color: #141414;
}

.bonuses-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.bonuses-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #B7171F;
}

.bonuses-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.mobile-experience {
    padding: 5rem 0;
    background-color: #141414;
    background-image: linear-gradient(to bottom, #1a1a1a, #141414);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center right, rgba(183, 23, 31, 0.08), transparent 70%);
    z-index: 0;
}

.mobile-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.mobile-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.mobile-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #B7171F;
}

.mobile-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.mobile-info {
    flex: 1.5;
    min-width: 300px;
}

.mobile-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.mobile-info p:last-child {
    margin-bottom: 0;
}

.mobile-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-img {
    max-width: 50%;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(183, 23, 31, 0.3);
    transition: all 0.3s ease;
}

.mobile-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(183, 23, 31, 0.6);
}

.mobile-platforms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.platform-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #B7171F;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.platform-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.platform-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #B7171F;
}

.platform-item p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.steps-list {
    counter-reset: step-counter;
    padding-left: 0;
    list-style-type: none;
    margin: 2rem 0 1rem;
}

.steps-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    counter-increment: step-counter;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: rgba(183, 23, 31, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.payment-methods {
    padding: 5rem 0;
    background-color: #171717;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 23, 31, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.payment-methods-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.payment-methods-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.payment-methods-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #B7171F;
}

.payment-methods-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.payment-methods-info {
    flex: 1.5;
    min-width: 300px;
}

.payment-methods-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.payment-methods-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #B7171F;
}

.payment-methods-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.payment-methods-info p:last-child {
    margin-bottom: 0;
}

.payment-methods-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-methods-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(183, 23, 31, 0.3);
    transition: all 0.3s ease;
}

.payment-methods-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(183, 23, 31, 0.6);
}

.payment-methods-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.payment-option {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    border-top: 3px solid #B7171F;
    overflow: hidden;
}

.payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(183, 23, 31, 0.1), transparent 80%);
    z-index: 0;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.payment-option h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.payment-option p {
    margin-bottom: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.customer-support {
    padding: 5rem 0;
    background-color: #121212;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.customer-support::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle at top right, rgba(183, 23, 31, 0.1), transparent 70%);
    z-index: 0;
}

.customer-support-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.customer-support-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.customer-support-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #B7171F;
}

.customer-support-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid #B7171F;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.customer-support-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.customer-support-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 2.5rem 0 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.customer-support-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #B7171F;
}

.support-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.support-contact-list li {
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-left: 3px solid rgba(183, 23, 31, 0.5);
}

.support-contact-list li:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-left-color: #B7171F;
    transform: translateX(5px);
}

.support-contact-list li strong {
    color: #fff;
    font-weight: 600;
}

.faq-section {
    padding: 5rem 0;
    background-color: #151515;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(183, 23, 31, 0.08), transparent 70%);
    z-index: 0;
}

.faq-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #B7171F;
}

.faq-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 3px solid #B7171F;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background-color: rgba(183, 23, 31, 0.05);
    display: flex;
    align-items: center;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(183, 23, 31, 0.1);
}

.faq-answer {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(183, 23, 31, 0.15);
}

.faq-item.active .faq-question::after {
    content: '−';
    color: #fff;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 300px;
    opacity: 1;
}

.site-footer {
    background-color: #0c0c0c;
    border-top: 2px solid rgba(183, 23, 31, 0.3);
    padding: 4rem 0 2rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 23, 31, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-logo {
    margin-top: 2rem;
    text-align: center;
}

.footer-logo img {
    height: 2.5rem;
    opacity: 0.7;
}

.responsible-gaming-logos {
    text-align: center;
    padding: 3rem 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.rg-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fde600;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logos-row img {
    height: 30px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.logos-row img:hover {
    opacity: 1;
    filter: brightness(1.3);
    transform: translateY(-5px);
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(183, 23, 31, 0.08);
    border-radius: 10px;
    border-left: 4px solid #B7171F;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.footer-disclaimer strong {
    color: #fde600;
    font-weight: 700;
}

.footer-legal {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.footer-legal p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fde600;
}

@media (max-width: 768px) {
    .hero-wrapper {
        background-position: 60% center;
    }

    .site-header {
        width: 100%;
        overflow: hidden;
    }
    
    .header-container {
        padding: 0.7rem 1rem;
        justify-content: space-between;
    }
    
    .logo img {
        height: auto;
        max-width: 120px;
    }
    
    .auth-buttons {
        display: flex;
        gap: 0.4rem;
    }
    
    .btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    }
    
    .hero h1::after {
        height: 2px;
    }

    .hero-text {
        font-size: 1.1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
        margin-bottom: 2rem;
    }
    
    .hero .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .about {
        padding: 2rem 0;
    }

    .about p {
        font-size: 0.9rem;
    }
    
    .features {
        padding: 2rem 0;
    }
    
    .features h2 {
        font-size: 1.8rem;
    }
    
    .features-intro {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    .feature-item.with-image {
        flex-direction: column;
    }
    
    .feature-content-container {
        padding: 1.5rem;
    }
    
    .ratings-table th,
    .ratings-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .ratings-table th {
        font-size: 0.85rem;
    }

    .casino-features {
        padding: 3rem 0;
    }
    
    .casino-features h2 {
        font-size: 1.8rem;
    }
    
    .casino-content {
        flex: 1 0 100%;
    }
    
    .casino-content p {
        font-size: 0.95rem;
    }
    
    .feature-block h3 {
        font-size: 1.4rem;
        padding: 1rem;
    }
    
    .block-content {
        padding: 1.5rem;
    }
    
    .payment-options {
        padding: 3rem 0;
    }
    
    .payment-header h2 {
        font-size: 1.8rem;
    }
    
    .payment-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .payment-info p {
        font-size: 0.95rem;
    }

    .registration {
        padding: 3rem 0;
    }
    
    .registration-header h2 {
        font-size: 1.8rem;
    }
    
    .registration-info h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }
    
    .registration-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .registration-info p {
        font-size: 0.95rem;
    }
    
    .registration-steps li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .bonuses {
        padding: 3rem 0 2rem;
    }
    
    .bonuses-header h2 {
        font-size: 1.8rem;
    }
    
    .bonuses-content p {
        font-size: 0.95rem;
    }
    
    .banner-image {
        min-height: 300px;
        max-height: 350px;
    }
    
    .banner-content {
        left: 5%;
        width: 90%;
        top: 50%;
        padding: 1.5rem 0;
    }
    
    .banner-text {
        margin-bottom: 1.5rem;
        padding: 1.2rem 1.5rem;
    }
    
    .banner-text h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .banner-text p {
        font-size: 1.1rem;
    }
    
    .banner-content .btn-large {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .bonuses-info {
        padding: 2rem 0 3rem;
    }
    
    .bonuses-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .bonuses-info p {
        font-size: 0.95rem;
    }

    .mobile-experience {
        padding: 3rem 0;
    }
    
    .mobile-header h2 {
        font-size: 1.8rem;
    }
    
    .mobile-content {
        flex-direction: column-reverse;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .mobile-info p {
        font-size: 0.95rem;
    }
    
    .mobile-img {
        max-width: 60%;
        border-radius: 25px;
    }
    
    .platform-item {
        padding: 1.5rem;
    }
    
    .platform-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .platform-item p {
        font-size: 0.95rem;
    }
    
    .steps-list {
        margin: 1.5rem 0 1rem;
    }
    
    .steps-list li {
        padding-left: 2.5rem;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .steps-list li::before {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }

    .payment-methods {
        padding: 3rem 0;
    }
    
    .payment-methods-header h2 {
        font-size: 1.8rem;
    }
    
    .payment-methods-content {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .payment-methods-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-methods-info p {
        font-size: 0.95rem;
    }
    
    .payment-methods-options {
        grid-template-columns: 1fr;
    }
    
    .payment-option {
        padding: 1.5rem;
    }
    
    .payment-option h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .payment-option p {
        font-size: 0.95rem;
    }
    
    .customer-support {
        padding: 3rem 0;
    }
    
    .customer-support-header h2 {
        font-size: 1.8rem;
    }
    
    .customer-support-content {
        padding: 1.5rem;
    }
    
    .customer-support-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }
    
    .customer-support-content p {
        font-size: 0.95rem;
    }
    
    .support-contact-list li {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }

    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }

    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        margin-top: 1.5rem;
    }
    
    .footer-logo img {
        height: 2rem;
    }
    
    .responsible-gaming-logos {
        padding: 2rem 1.5rem;
    }
    
    .rg-title {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }
    
    .logos-row {
        gap: 1.5rem;
    }
    
    .logos-row img {
        height: 28px;
    }
    
    .footer-disclaimer {
        padding: 1.5rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.85rem;
    }
    
    .footer-legal p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        font-size: 0.8rem;
    }

    .search-form {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-header {
        width: 100%;
    }
    
    .header-container {
        padding: 0.6rem 0.8rem;
    }
    
    .logo img {
        max-width: 100px;
        height: auto;
    }
    
    .auth-buttons {
        gap: 0.3rem;
    }
    
    .btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }

    .banner-image {
        min-height: 280px;
        max-height: none;
    }
    
    .banner-image img {
        min-height: 280px;
    }
    
    .banner-content {
        left: 5%;
        width: 90%;
        top: 0;
        transform: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 0;
    }
    
    .banner-text {
        margin-bottom: 1.5rem;
        padding: 1rem 1.2rem;
    }
    
    .banner-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .banner-text p {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .banner-content .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        align-self: flex-start;
        margin-top: 0.5rem;
    }
    
    .mobile-img {
        max-width: 70%;
        border-radius: 20px;
    }
}


.l1 {
    color: #B7171F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.l1:hover {
    color: #ff3942;
}

.l1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ff3942;
    transition: width 0.3s ease;
}

.l1:hover::after {
    width: 100%;
} 