* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0F;
    color: #FFFFFF;
    line-height: 1.5;
    overflow-y: auto;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

/* ========== ШАПКА ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 150px;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(8px);
    padding: 10px 150px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.header.scrolled .logo-img {
    height: 55px;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.nav {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #FFD700;
}

.btn-participate {
    background: transparent;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 10px 28px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
}

.btn-participate:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.mobile-btn-participate {
    display: none;
    background: linear-gradient(95deg, #FFD700, #FFA500);
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    color: #0A0A0F;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    margin-top: 20px;
}

/* БУРГЕР-МЕНЮ */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #FFD700;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, #0A0A0F 100%);
    z-index: 5;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.magic-fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/magic-fog.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: fogDrift 20s ease-in-out infinite;
}

@keyframes fogDrift {
    0% { transform: scale(1) translateX(0); opacity: 0.35; }
    50% { transform: scale(1.03) translateX(1.5%); opacity: 0.4; }
    100% { transform: scale(1) translateX(0); opacity: 0.35; }
}

.lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/lightning.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 2;
    pointer-events: none;
    transform: scaleX(-1);
    animation: lightningFlicker 5s infinite;
}

@keyframes lightningFlicker {
    0%, 90%, 94%, 100% { opacity: 0; }
    92%, 93% { opacity: 0.4; }
    97% { opacity: 0.2; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #0A0A0F 0%, #0A0A0FCC 60%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 0 150px;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: none;
    width: 100%;
}

.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #FFD700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.hero-title .accent {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #B0B0C0;
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
    background: transparent;
    border: none;
}

.btn-gold {
    background: linear-gradient(95deg, #FFD700, #FFA500);
    color: #0A0A0F;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid #FFD700;
    border-radius: 8px;
    color: #FFD700;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* ========== ПРЕИМУЩЕСТВА (ЛЕВЫЙ КРАЙ) ========== */
.hero-features-vertical {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    text-align: left;
}

.feature-vertical {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-vertical i {
    font-size: 1.3rem;
    color: #FFD700;
    margin-top: 2px;
    min-width: 32px;
}

.feature-vertical div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-vertical strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
}

.feature-vertical span {
    font-size: 0.8rem;
    color: #B0B0C0;
    line-height: 1.4;
}

/* ========== СЛАЙДЕР ========== */
.slider-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: #0A0A0F;
    overflow: hidden;
}

.slider-fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/magic-fog.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: sliderFogDrift 25s ease-in-out infinite;
}

@keyframes sliderFogDrift {
    0% { transform: scale(1) translateX(0); opacity: 0.25; }
    50% { transform: scale(1.02) translateX(1%); opacity: 0.3; }
    100% { transform: scale(1) translateX(0); opacity: 0.25; }
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #0A0A0F 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn i {
    font-size: 1.2rem;
    color: #FFD700;
}

.slider-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 50px;
}

.next-btn {
    right: 50px;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.slider-card {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.75) 0%, rgba(10, 10, 15, 0.5) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 0 150px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 24px;
}

.card-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #D0D0E0;
    margin-bottom: 28px;
    max-width: 600px;
}

.card-info {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.card-info span {
    font-size: 0.95rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 28px;
}

.btn-card {
    background: linear-gradient(95deg, #FFD700, #FFA500);
    border: none;
    border-radius: 40px;
    padding: 12px 32px;
    color: #0A0A0F;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    font-family: inherit;
}

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

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #FFD700;
    width: 24px;
    border-radius: 5px;
}

/* ========== ФУТЕР ========== */
.footer {
    background: #05050A;
    padding: 60px 150px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    min-width: 200px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-col h4 {
    margin-bottom: 16px;
    color: #FFD700;
    font-size: 1rem;
}

.footer-col p {
    color: #A0A0B0;
    line-height: 1.8;
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 16px;
    font-size: 1.3rem;
    margin-top: 16px;
}

.social-icons i {
    cursor: pointer;
    color: #A0A0B0;
    transition: color 0.2s;
}

.social-icons i:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    color: #606070;
}

/* ========== МОДАЛЬНОЕ ОКНО ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 550px;
    width: 90%;
    background: linear-gradient(135deg, #12121A, #0D0D15);
    border-radius: 32px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 16px;
}

.modal-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-right: 12px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.modal-close {
    position: absolute;
    right: -15px;
    top: -15px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.modal-subtitle {
    text-align: center;
    color: #B0B0C0;
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.modal-booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-booking-form .form-group {
    width: 100%;
}

.modal-booking-form .form-group input,
.modal-booking-form .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #FFFFFF;
    font-family: inherit;
    transition: all 0.2s;
}

.modal-booking-form .form-group input:focus,
.modal-booking-form .form-group select:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.modal-booking-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-booking-form .form-row {
    display: flex;
    gap: 16px;
}

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

.modal-booking-form .btn-submit {
    background: linear-gradient(95deg, #FFD700, #FFA500);
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #0A0A0F;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.modal-booking-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.modal-booking-form .form-privacy {
    font-size: 0.7rem;
    color: #808090;
    text-align: center;
    margin-top: 12px;
}

/* ========== АДАПТИВНОСТЬ (ДЕСКТОП > 1000px) ========== */
@media (max-width: 1400px) {
    .header {
        padding: 20px 100px;
    }
    .header.scrolled {
        padding: 10px 100px;
    }
    .hero-container {
        padding: 0 100px;
    }
    .card-content {
        padding: 0 100px;
    }
    .footer {
        padding: 50px 100px 20px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .card-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1000px) {
    .header {
        padding: 16px 40px;
    }
    .header.scrolled {
        padding: 8px 40px;
    }
    .burger-menu {
        display: flex;
    }
    .desktop-only {
        display: none;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px;
    }
    .nav.active {
        right: 0;
    }
    .nav-link {
        font-size: 1.2rem;
    }
    .mobile-btn-participate {
        display: block;
    }
    .hero-container {
        padding: 0 40px;
        padding-top: 100px;
    }
    .hero-overlay {
        width: 100%;
        background: linear-gradient(135deg, #0A0A0F, #0A0A0FCC);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-features-vertical {
        margin-left: 0;
    }
    .card-content {
        padding: 0 40px;
    }
    .footer {
        padding: 40px 40px 20px;
    }
    .prev-btn {
        left: 15px;
    }
    .next-btn {
        right: 15px;
    }
}

/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ (768px и меньше) ========== */
@media (max-width: 768px) {
    .header {
        padding: 12px 24px;
    }
    .header.scrolled {
        padding: 8px 24px;
    }
    .logo-img {
        height: 50px;
    }
    .hero-container {
        padding: 0 24px;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: 1.8rem;
        text-align: left;
    }
    .hero-description {
        font-size: 0.9rem;
        text-align: left;
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .hero-badge {
        text-align: left;
    }
    .hero-features-vertical {
        max-width: 100%;
    }
    .feature-vertical {
        gap: 12px;
    }
    .feature-vertical i {
        font-size: 1.1rem;
        min-width: 28px;
    }
    .feature-vertical strong {
        font-size: 0.85rem;
    }
    .feature-vertical span {
        font-size: 0.75rem;
    }
    .card-content {
        padding: 0 24px;
        text-align: left;
        align-items: flex-start;
    }
    .card-content h2 {
        font-size: 1.5rem;
    }
    .card-description {
        font-size: 0.85rem;
    }
    .card-info {
        justify-content: flex-start;
    }
    .btn-card {
        margin: 0;
    }
    .footer {
        padding: 40px 24px 20px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .prev-btn, .next-btn {
        width: 32px;
        height: 32px;
    }
    .slider-btn i {
        font-size: 0.9rem;
    }
    .modal-content {
        padding: 30px 20px;
    }
    .modal-title {
        font-size: 1.4rem;
    }
    .modal-icon {
        font-size: 2rem;
    }
    .modal-close {
        right: -10px;
        top: -10px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    .modal-booking-form .form-row {
        flex-direction: column;
        gap: 18px;
    }
}