:root {
    --primary-color: #39ff14;
    --background-color: #000000;
    --text-color: #ffffff;
    --button-hover-bg: #32e512;
    --button-text: #000000;
    --search-bg: #1a1a1a;
    --search-text: #cccccc;
    --table-border: rgba(255, 255, 255, 0.1);
    --table-header-bg: rgba(57, 255, 20, 0.1);
    --section-bg: rgba(10, 10, 10, 0.5);
    --card-bg: rgba(20, 20, 20, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
}

header {
    background-color: var(--background-color);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 30px;
    display: block;
}

.search-container {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 20px;
}

#search-form {
    display: flex;
    align-items: center;
    background-color: var(--search-bg);
    border-radius: 25px;
    padding: 8px 15px;
}

#search-input {
    background: transparent;
    border: none;
    color: var(--search-text);
    padding: 5px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

#search-input::placeholder {
    color: #666;
}

.search-button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-left: 5px;
}

.search-button svg {
    width: 18px;
    height: 18px;
}

.te {padding-left: 2rem;
padding-top: 1rem;}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
}

.login {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.register {
    background-color: var(--primary-color);
    color: var(--button-text);
    border: none;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.register:hover {
    background-color: var(--button-hover-bg);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
    transform: translateY(-1px);
}


.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('images/bg-image.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    contain: paint;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bonus-offer {
    margin-bottom: 2rem;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bonus-amount span {
    color: var(--primary-color);
    font-size: 2.2rem;
}

.bonus-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--button-text);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.6);
}

.cta-button:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.about-section {
    padding: 80px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.brand-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    position: relative;
}

.brand-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}

.brand-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.info-table {
    width: 100%;
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--table-border);
}

.table-row {
    display: flex;
    border-bottom: 1px solid var(--table-border);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 15px 20px;
    line-height: 1.5;
}

.table-heading {
    font-weight: bold;
    width: 200px;
    background-color: var(--table-header-bg);
    flex-shrink: 0;
}

.table-cell:not(.table-heading) {
    flex-grow: 1;
}

/* Registration Section */
.registration-section {
    padding: 0 0 80px 0;
    position: relative;
    margin-top: 50px;
}

.promo-banner {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.registration-content {
    position: relative;
    margin-top: -80px;
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-container {
    margin: 25px 0 40px;
    background-color: rgba(20, 20, 20, 0.5);
    border-radius: 10px;
    padding: 25px 30px;
    border: 1px solid var(--table-border);
}

.registration-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.registration-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.registration-section h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--text-color);
}

.registration-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.steps-list {
    padding-left: 25px;
    margin: 0;
}

.steps-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.steps-list li strong {
    color: var(--primary-color);
    font-weight: bold;
}

.bonuses-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.bonuses-header {
    margin-bottom: 40px;
}

.bonuses-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.bonuses-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.bonuses-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.bonuses-table-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.football-image-container {
    position: absolute;
    top: -40px;
    right: -50px;
    width: 200px;
    height: 200px;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(57, 255, 20, 0.3);
}

.football-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.football-image-container:hover .football-image {
    transform: scale(1.1);
}

.bonuses-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--table-border);
    position: relative;
    z-index: 2;
}

.table-header {
    background-color: rgba(57, 255, 20, 0.15);
    font-weight: bold;
}

.bonuses-table .table-row {
    display: flex;
    border-bottom: 1px solid var(--table-border);
}

.bonuses-table .table-row:last-child {
    border-bottom: none;
}

.bonuses-table .table-cell {
    padding: 15px;
    line-height: 1.5;
    flex: 1;
    font-size: 0.95rem;
}

.bonuses-table .table-header .table-cell {
    padding: 15px;
    font-size: 1rem;
}

.welcome-bonus {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: rgba(20, 20, 20, 0.5);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--table-border);
}

.welcome-bonus-content {
    flex: 1;
    padding: 30px;
}

.welcome-bonus h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.welcome-bonus h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.welcome-bonus p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.welcome-bonus p:last-child {
    margin-bottom: 0;
}

.cards-image-container {
    flex: 0 0 40%;
    height: 100%;
    overflow: hidden;
}

.cards-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cards-image-container:hover .cards-image {
    transform: scale(1.05);
}

.games-section {
    padding: 80px 0;
}

.games-header {
    margin-bottom: 40px;
}

.games-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.games-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.games-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.games-categories {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.categories-content {
    flex: 1;
}

.categories-list {
    list-style-type: none;
}

.categories-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.categories-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.categories-list li strong {
    color: var(--primary-color);
    font-weight: bold;
}

.slots-image-container {
    flex: 0 0 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(57, 255, 20, 0.1);
}

.slots-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(57, 255, 20, 0.3);
    border-color: rgba(57, 255, 20, 0.3);
}

.slots-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.providers-info {
    margin-bottom: 50px;
}

.providers-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.providers-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.providers-list li {
    flex: 0 0 calc(50% - 15px);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.providers-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.providers-list li strong {
    color: var(--primary-color);
    font-weight: bold;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--table-border);
    max-width: 280px;
    margin: 0 auto;
}

.game-image-container {
    position: relative;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--primary-color);
    color: var(--button-text);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.game-image-container:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-button:hover {
    background-color: var(--button-hover-bg);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
}

.game-title {
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .football-image-container {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -30px;
    }
    
    .welcome-bonus {
        flex-direction: column;
    }
    
    .cards-image-container {
        flex: 0 0 300px;
        width: 100%;
    }
    
    .games-categories {
        flex-direction: column;
    }
    
    .slots-image-container {
        width: 100%;
        max-width: 400px;
    }
    
    .providers-list li {
        flex: 0 0 100%;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .game-card {
        max-width: 250px;
    }
    
    .game-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .search-container {
        display: none;
    }
    
    header {
        padding: 12px 15px;
    }
    
    .logo img {
        height: 25px;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .bonus-amount {
        font-size: 1.4rem;
    }
    
    .bonus-amount span {
        font-size: 1.7rem;
    }
    
    .bonus-desc {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .table-row {
        flex-direction: column;
    }
    
    .table-heading {
        width: 100%;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .registration-section {
        padding: 0 0 50px 0;
    }
    
    .promo-banner {
        height: 200px;
        margin-bottom: 50px;
    }
    
    .registration-content {
        padding: 25px 20px;
        margin-top: -40px;
    }
    
    .steps-container {
        padding: 20px;
        margin: 20px 0 30px;
    }
    
    .registration-section h2 {
        font-size: 1.8rem;
    }
    
    .registration-section h3 {
        font-size: 1.4rem;
        margin: 30px 0 15px;
    }
    
    .registration-section p {
        font-size: 1rem;
    }
    
    .steps-list li {
        margin-bottom: 12px;
    }
    
    .bonuses-section {
        padding: 50px 0;
    }
    
    .bonuses-header h2 {
        font-size: 1.8rem;
    }
    
    .bonuses-header p {
        font-size: 1rem;
    }
    
    .football-image-container {
        display: none;
    }
    
    .bonuses-table {
        overflow-x: auto;
    }
    
    .bonuses-table .table-row {
        flex-direction: column;
    }
    
    .bonuses-table .table-cell {
        padding: 12px;
    }
    
    .welcome-bonus-content {
        padding: 25px 20px;
    }
    
    .welcome-bonus h3 {
        font-size: 1.6rem;
    }
    
    .welcome-bonus p {
        font-size: 1rem;
    }
    
    .cards-image-container {
        flex: 0 0 200px;
    }
    
    .games-section {
        padding: 50px 0;
    }
    
    .games-header h2 {
        font-size: 1.8rem;
    }
    
    .games-header p {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .game-card {
        max-width: 160px;
    }
    
    .game-image {
        height: 180px;
    }
    
    .game-title {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .play-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card {
        max-width: 150px;
    }
    
    .game-image {
        height: 150px;
    }
}

.payment-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.payment-header {
    margin-bottom: 40px;
}

.payment-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.payment-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.payment-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.payment-table-container {
    margin-bottom: 50px;
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--table-border);
}

.payment-table .table-row {
    display: flex;
    border-bottom: 1px solid var(--table-border);
}

.payment-table .table-row:last-child {
    border-bottom: none;
}

.payment-table .table-header {
    background-color: rgba(57, 255, 20, 0.15);
    font-weight: bold;
}

.payment-table .table-cell {
    padding: 15px 20px;
    flex: 1;
    line-height: 1.5;
}

.payment-table .table-cell:first-child {
    font-weight: bold;
}

.payment-instructions {
    background-color: rgba(20, 20, 20, 0.5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--table-border);
}

.payment-instructions p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .payment-table .table-row {
        flex-wrap: wrap;
    }
    
    .payment-table .table-cell {
        flex: 1 1 50%;
        padding: 12px 15px;
    }
    
    .payment-table .table-header .table-cell {
        flex: 1 1 50%;
    }
}

@media (max-width: 768px) {
    .payment-section {
        padding: 50px 0;
    }
    
    .payment-header h2 {
        font-size: 1.8rem;
    }
    
    .payment-header p {
        font-size: 1rem;
    }
    
    .payment-table .table-row {
        flex-direction: column;
    }
    
    .payment-table .table-cell {
        flex: 100%;
        padding: 12px 15px;
    }
    
    .payment-table .table-cell:first-child {
        background-color: rgba(57, 255, 20, 0.08);
    }
    
    .payment-instructions {
        padding: 20px;
    }
    
    .payment-instructions p {
        font-size: 1rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-header {
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.reviews-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.reviews-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--table-border);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.2);
}

.review-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(57, 255, 20, 0.15);
    border: 2px solid rgba(57, 255, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initial {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.author-name {
    font-weight: bold;
    margin: 0;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .reviews-header p {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

.benefits-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.benefits-header {
    margin-bottom: 40px;
}

.benefits-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.benefits-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.benefits-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.benefits-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.benefits-list {
    flex: 1;
}

.advantages-list {
    list-style-type: none;
}

.advantages-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.advantages-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.advantages-list li strong {
    color: var(--primary-color);
    font-weight: bold;
}

.games-image-container {
    flex: 0 0 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(57, 255, 20, 0.1);
}

.games-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(57, 255, 20, 0.3);
    border-color: rgba(57, 255, 20, 0.3);
}

.games-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.games-image-container:hover .games-image {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .benefits-content {
        flex-direction: column;
    }
    
    .games-image-container {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefits-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-header p {
        font-size: 1rem;
    }
    
    .advantages-list li {
        margin-bottom: 15px;
    }
}

.faq-section {
    padding: 80px 0;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.faq-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--table-border);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.2);
}

.faq-question {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(57, 255, 20, 0.08);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

.faq-answer {
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

.site-footer {
    background-color: rgba(10, 10, 10, 0.8);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.disclaimer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.copyright p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 25px 0;
    }
    
    .footer-content {
        gap: 12px;
    }
    
    .disclaimer p {
        font-size: 0.9rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
} 