/* Base styles and reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--casino-dark);
    background-image: linear-gradient(to bottom, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.98)), url('./images/Без\ имени.jpg');
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--casino-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--casino-primary);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--casino-secondary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Container styles */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0.5rem 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.desktop-nav li {
    margin: 0 1rem;
}

.desktop-nav a {
    color: var(--casino-light);
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--casino-primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.cta-button {
    display: none;
}

.register-btn {
    display: inline-block;
    background-color: var(--casino-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.register-btn:hover {
    background-color: #ff0000;
    color: white;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--casino-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 46, 0.98);
    padding-top: 5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav li {
    margin: 1rem 0;
    text-align: center;
}

.mobile-menu nav a {
    display: block;
    color: var(--casino-light);
    font-size: 1.2rem;
    padding: 0.5rem 0;
    text-transform: uppercase;
}

.mobile-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Main content styles */
main {
    padding-top: 70px;
}

/* Hero section styles */
.hero-section {
    position: relative;
    padding: 4rem 1rem;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9)), url('./images/Без\ имени.jpg');
    background-size: cover;
    background-position: center;
    color: var(--casino-light);
}

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

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--casino-secondary);
}

.hero-cta {
    margin: 2rem 0;
}

.play-now-btn {
    display: inline-block;
    background-color: var(--casino-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
    animation: pulse 2s infinite;
}

.play-now-btn:hover {
    background-color: #ff0000;
    color: white;
    transform: scale(1.05);
}

.active-players {
    margin-top: 2rem;
}

.player-count {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--casino-secondary);
}

.count-number {
    font-weight: bold;
    color: var(--casino-secondary);
    margin-right: 0.5rem;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.benefit-icon {
    margin-bottom: 1rem;
    color: var(--casino-secondary);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--casino-secondary);
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
}

/* Games section styles */
#otkrojte-dla-seba-nasi-lucsie-igry-kazino-ot-slotov-do-nastol-nyh-igr {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--casino-secondary);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-card h3 {
    padding: 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.game-card p {
    padding: 0 1rem 1rem;
    text-align: center;
}

.play-btn {
    display: block;
    background-color: var(--casino-primary);
    color: white;
    text-align: center;
    padding: 0.75rem;
    margin: 0 1rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background-color: #ff0000;
    color: white;
}

.games-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.cta-container {
    text-align: center;
    margin-top: 2rem;
}

.explore-btn, .deposit-btn, .learn-more-btn, .vip-btn, .support-btn, .participate-btn {
    display: inline-block;
    background-color: var(--casino-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.explore-btn:hover, .deposit-btn:hover, .learn-more-btn:hover, .vip-btn:hover, .support-btn:hover, .participate-btn:hover {
    background-color: #ff0000;
    color: white;
    transform: scale(1.05);
}

/* Payment methods section styles */
#mgnovennye-vyvody-sredstv-i-bezopasnye-sposoby-oplaty-obretite-uverennost {
    padding: 4rem 0;
}

.payment-methods {
    margin-bottom: 3rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.payment-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.payment-icon {
    margin-bottom: 1rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon img {
    max-height: 100%;
}

.payment-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.payment-time {
    font-size: 0.9rem;
}

.payment-time span {
    font-weight: bold;
    color: var(--casino-secondary);
}

.payment-comparison {
    margin-bottom: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.payment-comparison h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chart-bar {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bar-label {
    width: 100px;
    text-align: right;
    padding-right: 1rem;
    font-weight: bold;
}

.bar-container {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: var(--casino-primary);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: white;
    font-weight: bold;
    border-radius: 15px;
}

.payment-details {
    margin-bottom: 3rem;
}

.details-accordion {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    color: var(--casino-light);
    font-weight: bold;
    text-align: left;
    cursor: pointer;
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-header.active svg {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 1rem;
    max-height: 500px;
}

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

/* Security section styles */
#igrajte-bezopasno-vasa-bezopasnost-nas-prioritet {
    padding: 4rem 0;
}

.security-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.security-icon {
    display: inline-block;
    color: var(--casino-secondary);
    animation: float 3s ease-in-out infinite;
}

.security-licenses {
    text-align: center;
    margin-bottom: 3rem;
}

.license-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.license-logo {
    max-width: 150px;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.feature-icon {
    margin-bottom: 1rem;
    color: var(--casino-secondary);
}

.security-infographic {
    margin-bottom: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.security-infographic h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.infographic-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--casino-primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

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

/* Loyalty program section styles */
#prisoedinajtes-k-nasej-programme-loal-nosti-polucajte-ekskluzivnye-voznagrazdenia-i-bonusy {
    padding: 4rem 0;
}

.loyalty-levels {
    margin-bottom: 3rem;
}

.level-ladder {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.level {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease;
}

.level:hover {
    transform: translateY(-5px);
}

.level-icon {
    margin-bottom: 1rem;
    color: var(--casino-secondary);
}

.level h3 {
    margin-bottom: 1rem;
}

.level ul {
    text-align: left;
    list-style-type: none;
}

.level ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.level ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--casino-secondary);
}

.loyalty-progress {
    margin-bottom: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.loyalty-progress h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.current-level, .next-level {
    font-weight: bold;
}

.points {
    color: var(--casino-secondary);
}

.progress-bar {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--casino-primary);
    border-radius: 10px;
}

.loyalty-benefits {
    margin-bottom: 3rem;
}

.loyalty-benefits h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.benefit-card .benefit-icon {
    margin-bottom: 1rem;
    color: var(--casino-secondary);
}

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

/* FAQ section styles */
#faq-nasa-sluzba-podderzki-klientov-dostupna-kruglosutocno {
    padding: 4rem 0;
}

.faq-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px 0 0 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--casino-light);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    padding: 0.75rem 1rem;
    background-color: var(--casino-primary);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--casino-light);
    border-radius: 50px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.category-btn.active, .category-btn:hover {
    background-color: var(--casino-primary);
    color: white;
}

.faq-accordion {
    margin-bottom: 3rem;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    color: var(--casino-light);
    font-weight: bold;
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1rem;
    max-height: 1000px;
}

.support-info {
    margin-bottom: 3rem;
}

.support-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.support-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.support-method {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.method-icon {
    margin-bottom: 1rem;
    color: var(--casino-secondary);
}

.contact-btn {
    display: inline-block;
    background-color: var(--casino-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ff0000;
    color: white;
}

.responsible-gaming {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.responsible-gaming h3 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Tournaments section styles */
#ekskluzivnye-turniry-i-dzekpoty-vas-sans-na-krupnyj-vyigrys {
    padding: 4rem 0;
}

.tournament-countdown {
    text-align: center;
    margin-bottom: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.tournament-countdown h3 {
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--casino-secondary);
}

.countdown-label {
    font-size: 0.8rem;
}

.tournaments-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tournament-card {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.tournament-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tournament-card.active .tournament-status {
    background-color: var(--casino-primary);
    color: white;
}

.tournament-card.upcoming .tournament-status {
    background-color: var(--casino-secondary);
    color: black;
}

.tournament-card h3 {
    margin-right: 80px;
    margin-bottom: 1.5rem;
}

.tournament-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.detail-item svg {
    margin-right: 0.5rem;
    color: var(--casino-secondary);
}

.tournament-btn {
    display: inline-block;
    background-color: var(--casino-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tournament-btn:hover {
    background-color: #ff0000;
    color: white;
}

.jackpots-section {
    margin-bottom: 3rem;
}

.jackpots-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.jackpots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.jackpot-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.jackpot-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--casino-secondary);
    margin-bottom: 1rem;
}

.jackpot-info {
    margin-bottom: 1rem;
}

.jackpot-btn {
    display: inline-block;
    background-color: var(--casino-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.jackpot-btn:hover {
    background-color: #ff0000;
    color: white;
}

.leaderboard {
    margin-bottom: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    overflow-x: auto;
}

.leaderboard h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.leaderboard-table {
    width: 100%;
    min-width: 600px;
}

.leaderboard-header, .leaderboard-row {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1fr 1fr 1fr;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-header {
    font-weight: bold;
    color: var(--casino-secondary);
}

.leaderboard-row:last-child {
    border-bottom: none;
}

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

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 4rem 0 2rem;
    color: var(--casino-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: var(--casino-secondary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--casino-light);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--casino-secondary);
}

.footer-payment-methods, .footer-licenses {
    margin-bottom: 3rem;
}

.footer-payment-methods h3, .footer-licenses h3, .footer-social h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--casino-secondary);
}

.payment-icons, .license-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--casino-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--casino-primary);
    color: white;
    transform: translateY(-5px);
}

.footer-responsible-gaming {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
    text-align: center;
}

.back-to-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--casino-primary);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.back-to-top a:hover {
    background-color: #ff0000;
    transform: translateY(-5px);
}

/* Modal styles */
.privacy-modal, .terms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    background-color: var(--casino-dark);
    border-radius: 10px;
    border: 1px solid var(--casino-secondary);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    margin: 0;
}

.close-modal {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--casino-light);
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(229, 9, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Media queries */
@media (min-width: 576px) {
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .benefit-item {
        width: calc(50% - 1rem);
    }
    
    .support-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jackpots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tournaments-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jackpots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
    
    .cta-button {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .security-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .level-ladder {
        flex-direction: row;
    }
    
    .level {
        flex: 1;
    }
    
    .support-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Основной текст */
body,
p,
li,
span {
    color: #FFD700;
    /* яркий жёлтый */
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
}

/* Заголовки — белые */
h1,
h2,
h3,
h4 {
    color: #ffffff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}

/* Жёлтая подсветка при наведении */
h1:hover,
h2:hover,
h3:hover,
h4:hover {
    color: #ffffff;
}

h1:hover::after,
h2:hover::after,
h3:hover::after,
h4:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100%;
    background: #FFD700;
    z-index: -1;
    transition: 0.3s;
}

/* Эффект “подсветки” фона */
h1::after,
h2::after,
h3::after,
h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background: #FFD700;
    z-index: -1;
    transition: height 0.3s ease;
}

h1:hover::after,
h2:hover::after,
h3:hover::after,
h4:hover::after {
    height: 8px;
}
.red-element{
    background-color:#ff0000;
    color:#fff;
}
