/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-yellow: #FFEE00;
    --bright-blue: #0066FF;
    --dark-blue: #0A0E2A;
    --light-bg: #F5F7FF;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --accent-purple: #9D00FF;
    --shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    --neon-shadow: 0 0 15px rgba(255, 238, 0, 0.7);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.header {
    background-color: var(--dark-blue);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--neon-yellow);
    text-shadow: var(--neon-shadow);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-list a:hover {
    color: var(--neon-yellow);
    background-color: rgba(255, 238, 0, 0.1);
}

.nav-list a.active {
    color: var(--neon-yellow);
    background-color: rgba(255, 238, 0, 0.1);
}

.btn-contact {
    background-color: var(--bright-blue);
    padding: 10px 20px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--neon-yellow) !important;
    color: var(--dark-blue) !important;
    transform: translateY(-3px);
    box-shadow: var(--neon-shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Герой секция */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 14, 42, 0.85), rgba(10, 14, 42, 0.9)), url('ban.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.casino-hero {
    background: linear-gradient(rgba(10, 14, 42, 0.85), rgba(10, 14, 42, 0.9)), url('ban.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--neon-yellow);
    margin: 20px auto;
    box-shadow: var(--neon-shadow);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background-color: var(--neon-yellow);
    color: var(--dark-blue);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--neon-shadow);
}

.btn-hero:hover {
    background-color: var(--bright-blue);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
}

/* Секция отелей */
.hotels-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.casino-hotels-section {
    background: linear-gradient(to bottom, var(--light-bg) 0%, #eef1ff 100%);
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-blue);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--bright-blue);
    margin: 15px auto 30px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.hotel-card {
    background-color: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    padding: 30px;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.hotel-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.casino-hotel-card {
    border-top: 5px solid var(--neon-yellow);
}

.hotel-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.casino-logo {
    position: relative;
}

.logo-placeholder {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(to right, var(--bright-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--neon-yellow);
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--neon-shadow);
}

.hotel-name {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    background-color: rgba(0, 102, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.feature i {
    color: var(--bright-blue);
    margin-right: 8px;
    font-size: 16px;
}

.hotel-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.casino-games {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.game-tag {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.btn-booking {
    display: block;
    width: 100%;
    background-color: var(--bright-blue);
    color: var(--text-light);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-booking:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* О нас */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-blue);
    color: var(--text-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.about-image {
    flex: 1;
}

.image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--bright-blue), var(--accent-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.8);
}

.casino-image {
    background: linear-gradient(135deg, var(--neon-yellow), #FF9900);
}

.casino-image i {
    color: var(--dark-blue);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: var(--text-light);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 102, 255, 0.05);
}

.faq-question i {
    color: var(--bright-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    background-color: var(--text-light);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: #666;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Responsible Gambling */
.responsible-gambling {
    padding: 60px 0;
    background-color: #111827;
    color: var(--text-light);
}

.rg-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.rg-icon {
    flex-shrink: 0;
}

.age-limit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--neon-yellow);
    color: var(--dark-blue);
    font-size: 32px;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: var(--neon-shadow);
}

.rg-text {
    flex: 1;
}

.rg-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--neon-yellow);
}

.rg-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--text-light);
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--bright-blue);
}

.modal-title {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--bright-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: var(--bright-blue);
    color: var(--text-light);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Подвал */
.footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo-text {
    font-size: 28px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--neon-yellow);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--neon-yellow);
    font-family: 'Rajdhani', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--neon-yellow);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--neon-yellow);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.age-warning {
    margin-top: 10px;
    color: var(--neon-yellow);
    font-weight: 600;
}

.age-warning i {
    margin-right: 8px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
    }
    
    .rg-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}
    .policy-hero {
            height: 50vh;
            background: linear-gradient(rgba(10, 14, 42, 0.9), rgba(10, 14, 42, 0.95)), url('ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            margin-top: 80px;
        }
        
        .policy-content {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .policy-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--text-light);
            padding: 50px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .policy-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 36px;
            color: var(--dark-blue);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        .policy-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background-color: var(--bright-blue);
            margin: 15px auto 30px;
        }
        
        .policy-date {
            text-align: center;
            color: #666;
            font-style: italic;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .policy-section {
            margin-bottom: 40px;
        }
        
        .policy-section h2 {
            font-size: 24px;
            color: var(--dark-blue);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 102, 255, 0.1);
        }
        
        .policy-section h3 {
            font-size: 20px;
            color: var(--dark-blue);
            margin: 25px 0 15px;
        }
        
        .policy-section p {
            margin-bottom: 15px;
            line-height: 1.7;
            color: #555;
        }
        
        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .policy-section li {
            margin-bottom: 10px;
            line-height: 1.6;
            color: #555;
        }
        
        .policy-note {
            background-color: rgba(0, 102, 255, 0.05);
            padding: 20px;
            border-left: 4px solid var(--bright-blue);
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .policy-warning {
            background-color: rgba(255, 238, 0, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid rgba(255, 238, 0, 0.3);
        }
        
        .policy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        
        .policy-table th, .policy-table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        
        .policy-table th {
            background-color: rgba(0, 102, 255, 0.1);
            color: var(--dark-blue);
            font-weight: 600;
        }
        
        .policy-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .terms-acceptance {
            background-color: rgba(0, 102, 255, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
            text-align: center;
            border: 2px dashed var(--bright-blue);
        }
        
        @media (max-width: 768px) {
            .policy-container {
                padding: 30px 20px;
            }
            
            .policy-hero {
                height: 40vh;
            }
            
            .policy-title {
                font-size: 28px;
            }
            
            .policy-table {
                display: block;
                overflow-x: auto;
            }
        }
          .policy-hero {
            height: 50vh;
            background: linear-gradient(rgba(10, 14, 42, 0.9), rgba(10, 14, 42, 0.95)), url('ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            margin-top: 80px;
        }
        
        .policy-content {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .policy-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--text-light);
            padding: 50px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .policy-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 36px;
            color: var(--dark-blue);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        .policy-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background-color: var(--bright-blue);
            margin: 15px auto 30px;
        }
        
        .policy-date {
            text-align: center;
            color: #666;
            font-style: italic;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .policy-section {
            margin-bottom: 40px;
        }
        
        .policy-section h2 {
            font-size: 24px;
            color: var(--dark-blue);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 102, 255, 0.1);
        }
        
        .policy-section h3 {
            font-size: 20px;
            color: var(--dark-blue);
            margin: 25px 0 15px;
        }
        
        .policy-section p {
            margin-bottom: 15px;
            line-height: 1.7;
            color: #555;
        }
        
        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .policy-section li {
            margin-bottom: 10px;
            line-height: 1.6;
            color: #555;
        }
        
        .policy-note {
            background-color: rgba(0, 102, 255, 0.05);
            padding: 20px;
            border-left: 4px solid var(--bright-blue);
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .policy-contact {
            background-color: rgba(255, 238, 0, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
            border: 1px solid rgba(255, 238, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .policy-container {
                padding: 30px 20px;
            }
            
            .policy-hero {
                height: 40vh;
            }
            
            .policy-title {
                font-size: 28px;
            }
        }