/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-purple: #b026ff;
    --bright-blue: #0066ff;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --light-text: #ffffff;
    --card-bg: rgba(16, 16, 40, 0.8);
    --casino-gradient: linear-gradient(135deg, #b026ff 0%, #0066ff 100%);
    --hotel-gradient: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: var(--hotel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-section .section-title {
    background: var(--casino-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    background: var(--hotel-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.casino-banner .btn {
    background: var(--casino-gradient);
    box-shadow: 0 5px 15px rgba(176, 38, 255, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.casino-banner .btn:hover {
    box-shadow: 0 8px 20px rgba(176, 38, 255, 0.4);
}

/* Шапка */
.header {
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(176, 38, 255, 0.2);
}

.casino-header {
    border-bottom: 1px solid rgba(176, 38, 255, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: 0.9rem;
    color: var(--neon-purple);
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--neon-purple);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-purple);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--light-text);
}

/* Баннер */
.banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(10, 10, 26, 0.7), rgba(10, 10, 26, 0.9)), 
                url('ban.png') center/cover no-repeat;
}

.casino-banner {
    background: linear-gradient(rgba(10, 10, 26, 0.7), rgba(10, 10, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1516487200032-8532cb603261?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80') center/cover no-repeat;
}

.banner-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--hotel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.casino-banner .banner-title {
    background: var(--casino-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
    line-height: 1.8;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--dark-bg) 70%);
}

/* Карточки отелей */
.hotels-section {
    background-color: var(--darker-bg);
    position: relative;
}

.hotels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--hotel-gradient);
}

.casino-section::before {
    background: var(--casino-gradient);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.hotel-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.casino-card {
    border: 1px solid rgba(176, 38, 255, 0.2);
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.5);
}

.casino-card:hover {
    box-shadow: 0 15px 30px rgba(176, 38, 255, 0.2);
    border-color: rgba(176, 38, 255, 0.5);
}

.hotel-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--hotel-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.casino-logo {
    background: var(--casino-gradient);
}

.hotel-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hotel-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.hotel-features i {
    margin-right: 5px;
    color: var(--bright-blue);
}

.casino-card .hotel-features i {
    color: var(--neon-purple);
}

.hotel-description {
    color: #aaa;
    margin-bottom: 25px;
    flex-grow: 1;
}

.casino-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec {
    text-align: center;
}

.spec-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.spec-label {
    font-size: 0.8rem;
    color: #aaa;
}

.book-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* О нас */
.about-section {
    background-color: var(--dark-bg);
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 0 250px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.casino-about .stat {
    border: 1px solid rgba(176, 38, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--hotel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.casino-about .stat-number {
    background: var(--casino-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 1rem;
    color: #ddd;
}

/* FAQ */
.faq-section {
    background-color: var(--darker-bg);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--card-bg);
    border: none;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 102, 255, 0.1);
}

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

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(16, 16, 40, 0.5);
}

.faq-answer.active {
    padding: 20px;
    max-height: 300px;
}

.faq-answer p {
    color: #ddd;
    line-height: 1.6;
}

/* Модальное окно */
.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(--darker-bg);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--neon-purple);
}

.modal-content h2 {
    margin-bottom: 30px;
    background: var(--casino-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 2px rgba(176, 38, 255, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    background: var(--casino-gradient);
}

/* Responsible Gambling */
.responsible-section {
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.age-restriction {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--casino-gradient);
    border-radius: 15px;
    padding: 20px;
    height: 120px;
}

.age-restriction i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.age-text {
    font-size: 2.5rem;
    font-weight: 800;
}

.responsible-text {
    flex: 1;
}

.responsible-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.responsible-text p {
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Подвал */
.footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo p {
    color: #aaa;
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-purple);
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--neon-purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-purple);
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
        padding: 20px 0;
        border-top: 1px solid rgba(176, 38, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .responsible-content {
        flex-direction: column;
        text-align: center;
    }
    
    .age-restriction {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}
       .terms-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 102, 255, 0.3);
        }
        
        .terms-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .last-updated {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .terms-section {
            margin-bottom: 40px;
            background: rgba(16, 16, 40, 0.5);
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid #0066ff;
        }
        
        .terms-section h2 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .terms-section h3 {
            color: #ddd;
            margin: 25px 0 15px;
            font-size: 1.2rem;
        }
        
        .terms-section p {
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .terms-section li {
            color: #ccc;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .terms-section table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .terms-section th, .terms-section td {
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 12px 15px;
            text-align: left;
        }
        
        .terms-section th {
            background-color: rgba(0, 102, 255, 0.2);
            color: #fff;
        }
        
        .terms-section td {
            color: #ccc;
        }
        
        .important-note {
            background: rgba(255, 193, 7, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid #ffc107;
        }
        
        .important-note h4 {
            color: #ffc107;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .casino-terms {
            background: rgba(176, 38, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            border: 1px solid rgba(176, 38, 255, 0.3);
        }
        
        .casino-terms h3 {
            color: #b026ff;
            margin-top: 0;
        }
        
        .back-btn {
            display: inline-block;
            margin-top: 30px;
            background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .back-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
        }
        
        @media (max-width: 768px) {
            .terms-header h1 {
                font-size: 2rem;
            }
            
            .terms-section {
                padding: 20px;
            }
            
            .terms-section table {
                display: block;
                overflow-x: auto;
            }
        }
                .policy-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(176, 38, 255, 0.3);
        }
        
        .policy-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #b026ff 0%, #0066ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .last-updated {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .policy-section {
            margin-bottom: 40px;
            background: rgba(16, 16, 40, 0.5);
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid #b026ff;
        }
        
        .policy-section h2 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .policy-section h3 {
            color: #ddd;
            margin: 25px 0 15px;
            font-size: 1.2rem;
        }
        
        .policy-section p {
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .policy-section li {
            color: #ccc;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .contact-info {
            background: rgba(176, 38, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            border: 1px solid rgba(176, 38, 255, 0.3);
        }
        
        .contact-info h3 {
            color: #b026ff;
            margin-top: 0;
        }
        
        .back-btn {
            display: inline-block;
            margin-top: 30px;
            background: linear-gradient(135deg, #b026ff 0%, #0066ff 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .back-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(176, 38, 255, 0.3);
        }
        
        @media (max-width: 768px) {
            .policy-header h1 {
                font-size: 2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
        }