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

:root {
    --neon-green: #00ff00;
    --bright-green: #39ff14;
    --dark-green: #00aa00;
    --neon-yellow: #ffff00;
    --bright-yellow: #ffcc00;
    --gold-yellow: #ffd700;
    --light-bg: #0a1a0a;
    --dark-bg: #051005;
    --card-bg: #0f1f0f;
    --text-light: #f0fff0;
    --text-muted: #b0d0b0;
    --success: #00ff88;
    --warning: #ffcc00;
    --danger: #ff3366;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
    --neon-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    --yellow-shadow: 0 0 15px rgba(255, 255, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 0, 0.05) 0%, transparent 20%);
}

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

/* Типография */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

.text-highlight {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Кнопки */
.btn-primary, .btn-secondary, .btn-booking, .btn-contact, .btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-green), var(--bright-yellow));
    color: var(--dark-bg);
    font-weight: 700;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.btn-secondary {
    background-color: transparent;
    color: var(--neon-yellow);
    border: 2px solid var(--neon-yellow);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.3);
}

.btn-booking {
    background: linear-gradient(135deg, var(--neon-green), var(--dark-green));
    color: white;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-booking:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.5);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.casino-btn {
    background: linear-gradient(135deg, var(--neon-yellow), var(--danger));
}

.casino-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.5);
}

.btn-contact {
    background: linear-gradient(135deg, var(--neon-green), var(--dark-green));
    color: white;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--neon-green), var(--bright-yellow));
    color: var(--dark-bg);
    width: 100%;
    font-size: 1.1rem;
    margin-top: 20px;
    font-weight: 700;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
    text-shadow: 0 0 10px var(--neon-green);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.logo-highlight {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
}

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

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

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-green);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neon-green);
}

/* Герой-секция */
.hero {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 0, 0.1), transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(255, 255, 0, 0.1), transparent 50%);
}

.casino-hero {
     background-size: cover;
    background-position: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-badge {
    background: rgba(15, 31, 15, 0.9);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--neon-shadow);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
}

.badge-age {
    background: linear-gradient(135deg, var(--neon-green), var(--bright-yellow));
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Секция отелей */
.hotels-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.hotels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.casino-section {
    background: linear-gradient(135deg, var(--light-bg), rgba(10, 26, 10, 0.9));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--neon-green), var(--neon-yellow));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.casino-notice {
    background: rgba(255, 51, 102, 0.1);
    border-left: 4px solid var(--danger);
    padding: 15px 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-right: 1px solid rgba(255, 51, 102, 0.3);
}

.casino-notice i {
    color: var(--danger);
    font-size: 1.5rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hotel-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 0, 0.2);
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow);
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--neon-green), var(--neon-yellow));
    opacity: 0;
    transition: var(--transition);
}

.hotel-card:hover::before {
    opacity: 1;
}

.casino-card {
    border-color: rgba(255, 255, 0, 0.3);
}

.casino-card:hover {
    border-color: var(--neon-yellow);
    box-shadow: var(--yellow-shadow);
}

.hotel-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-green), var(--bright-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.logo-circle:hover::before {
    left: 100%;
}

.casino-logo {
    background: linear-gradient(135deg, var(--neon-yellow), var(--danger));
}

.casino-tag {
    display: inline-block;
    background: rgba(255, 255, 0, 0.2);
    color: var(--neon-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.hotel-features {
    flex: 1;
    margin-bottom: 30px;
}

.hotel-features h4 {
    color: var(--neon-yellow);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hotel-features ul {
    list-style: none;
}

.hotel-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hotel-features i {
    color: var(--neon-green);
    margin-right: 10px;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.rating i {
    color: var(--bright-yellow);
    margin-right: 3px;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.rating span {
    margin-left: 10px;
    font-weight: 600;
    color: var(--neon-yellow);
}

/* Секция "О нас" */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.casino-about {
    background: linear-gradient(135deg, var(--dark-bg), rgba(5, 16, 5, 0.9));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
    position: relative;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.image-frame {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(255, 255, 0, 0.3));
    position: relative;
    overflow: hidden;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-size: cover;
    background-position: center;
    border-radius: calc(var(--border-radius) - 5px);
}

.casino-about-image .image-frame::before {
      background-size: cover;
    background-position: center;
}

/* Секция FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.casino-faq {
    background: linear-gradient(135deg, var(--light-bg), rgba(10, 26, 10, 0.9));
}

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

.faq-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.1);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(255, 255, 0, 0.05));
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-light);
}

.faq-question i {
    color: var(--neon-green);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-muted);
}

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

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

/* Возрастное ограничение секция */
.age-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(255, 255, 0, 0.1));
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.casino-age {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(255, 51, 102, 0.1));
}

.age-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.age-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-green), var(--bright-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
    position: relative;
    animation: pulse-age 2s infinite;
}

@keyframes pulse-age {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.casino-badge {
    background: linear-gradient(135deg, var(--neon-yellow), var(--danger));
}

.age-text {
    flex: 1;
    max-width: 600px;
}

.age-text h3 {
    color: var(--neon-yellow);
    margin-bottom: 20px;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 16, 5, 0.95);
    z-index: 2000;
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 100px auto;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--dark-green), rgba(255, 255, 0, 0.8));
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-bg);
    font-family: 'Orbitron', sans-serif;
}

.close-modal {
    font-size: 2rem;
    color: var(--dark-bg);
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
}

.close-modal:hover {
    color: var(--danger);
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(15, 31, 15, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: var(--neon-green);
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

.footer-logo p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    color: var(--neon-green);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.social-links a:hover {
    background-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.footer-links h3 {
    color: var(--neon-yellow);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-green);
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--neon-green);
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--neon-green);
    margin-right: 10px;
    width: 20px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Анимации */
@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 0, 0.7); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 0, 0.9), 0 0 30px rgba(0, 255, 0, 0.5); }
}

.logo-highlight, .text-highlight {
    animation: glow 2s infinite;
}

/* Адаптивность */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        height: 300px;
    }
    
    .age-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(5, 16, 5, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        display: none;
        border-bottom: 1px solid rgba(0, 255, 0, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 20px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hotel-card {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 50px auto;
    }
    
    .age-badge {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}
  .privacy-hero {
            background: linear-gradient(135deg, rgba(10, 26, 10, 0.95), rgba(5, 16, 5, 0.95)), url('ban.png');
            background-size: cover;
            background-position: center;
        }
        
        .privacy-content {
            padding: 80px 0;
            background-color: var(--light-bg);
            position: relative;
        }
        
        .privacy-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 255, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .privacy-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .privacy-section {
            margin-bottom: 50px;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 0, 0.2);
            transition: var(--transition);
        }
        
        .privacy-section:hover {
            border-color: var(--neon-green);
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
        }
        
        .privacy-section h2 {
            color: var(--neon-yellow);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 255, 0, 0.3);
            font-family: 'Orbitron', sans-serif;
            position: relative;
        }
        
        .privacy-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--neon-green), var(--neon-yellow));
            border-radius: 2px;
        }
        
        .privacy-section h3 {
            color: var(--text-light);
            margin: 25px 0 15px;
            font-size: 1.3rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .privacy-list {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .privacy-list li {
            margin-bottom: 10px;
            color: var(--text-muted);
            position: relative;
            padding-left: 10px;
        }
        
        .privacy-list li::before {
            content: '•';
            color: var(--neon-green);
            font-weight: bold;
            position: absolute;
            left: -10px;
            text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
        }
        
        .privacy-list li strong {
            color: var(--neon-yellow);
        }
        
        .last-updated {
            background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(255, 255, 0, 0.1));
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            border-left: 4px solid var(--neon-green);
            border-right: 1px solid rgba(0, 255, 0, 0.3);
        }
        
        .last-updated strong {
            color: var(--neon-yellow);
        }
        
        .contact-privacy {
            background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(255, 255, 0, 0.1));
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 40px;
            border: 2px solid rgba(0, 255, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .contact-privacy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--neon-green), var(--neon-yellow));
        }
        
        .contact-privacy h3 {
            color: var(--neon-yellow);
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .contact-privacy p {
            margin-bottom: 10px;
        }
        
        .contact-privacy i {
            color: var(--neon-green);
            margin-right: 10px;
            text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
        }
        
        .data-rights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .data-right-item {
            background: rgba(15, 31, 15, 0.5);
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 0, 0.2);
            transition: var(--transition);
        }
        
        .data-right-item:hover {
            border-color: var(--neon-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 0, 0.1);
        }
        
        .data-right-item h4 {
            color: var(--neon-green);
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .data-right-item h4 i {
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .privacy-section {
                padding: 20px;
            }
            
            .privacy-content {
                padding: 50px 0;
            }
            
            .data-rights {
                grid-template-columns: 1fr;
            }
        }
               .terms-hero {
            background: linear-gradient(135deg, rgba(10, 26, 10, 0.95), rgba(5, 16, 5, 0.95)), url('ban.png');
            background-size: cover;
            background-position: center;
        }
        
        .terms-content {
            padding: 80px 0;
            background-color: var(--light-bg);
            position: relative;
        }
        
        .terms-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 30% 70%, rgba(0, 255, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .terms-section {
            margin-bottom: 50px;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 0, 0.2);
            transition: var(--transition);
        }
        
        .terms-section:hover {
            border-color: var(--neon-yellow);
            box-shadow: 0 10px 30px rgba(255, 255, 0, 0.1);
        }
        
        .terms-section h2 {
            color: var(--neon-green);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(0, 255, 0, 0.3);
            font-family: 'Orbitron', sans-serif;
            position: relative;
        }
        
        .terms-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--neon-green), var(--neon-yellow));
            border-radius: 2px;
        }
        
        .terms-section h3 {
            color: var(--text-light);
            margin: 25px 0 15px;
            font-size: 1.3rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .terms-list {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .terms-list li {
            margin-bottom: 10px;
            color: var(--text-muted);
            position: relative;
            padding-left: 10px;
        }
        
        .terms-list li::before {
            content: '▶';
            color: var(--neon-yellow);
            font-size: 0.8rem;
            position: absolute;
            left: -10px;
            text-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
        }
        
        .terms-list li strong {
            color: var(--neon-green);
        }
        
        .important-notice {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 255, 0, 0.1));
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border-left: 4px solid var(--danger);
            border-right: 1px solid rgba(255, 51, 102, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .important-notice::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--danger), var(--neon-yellow));
        }
        
        .important-notice h4 {
            color: var(--danger);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .casino-notice {
            background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(0, 255, 0, 0.1));
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border-left: 4px solid var(--neon-yellow);
            border-right: 1px solid rgba(255, 255, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .casino-notice::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--neon-yellow), var(--neon-green));
        }
        
        .casino-notice h4 {
            color: var(--neon-yellow);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .acceptance-box {
            background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(255, 255, 0, 0.1));
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 40px;
            border: 2px solid rgba(0, 255, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .acceptance-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--neon-green), var(--neon-yellow));
        }
        
        .acceptance-box h3 {
            color: var(--neon-green);
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .acceptance-box p {
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        
        .booking-terms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .booking-term-item {
            background: rgba(15, 31, 15, 0.5);
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 0, 0.2);
            transition: var(--transition);
            text-align: center;
        }
        
        .booking-term-item:hover {
            border-color: var(--neon-yellow);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 255, 0, 0.1);
        }
        
        .booking-term-item h4 {
            color: var(--neon-yellow);
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .booking-term-item h4 i {
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .terms-section {
                padding: 20px;
            }
            
            .terms-content {
                padding: 50px 0;
            }
            
            .booking-terms {
                grid-template-columns: 1fr;
            }
        }