/**
 * Optimized CSS for Video Presentation
 * Performance improvements:
 * - GPU acceleration hints (will-change, transform: translateZ(0))
 * - CSS containment for layout isolation
 * - Optimized backdrop-filter usage
 * - Smooth transitions with better timing
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    width: 100vw;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    /* Prevent text selection during interactions */
    -webkit-tap-highlight-color: transparent;
}

body.scroll-locked {
    overflow: hidden;
}

/* Video fallback mode - when video doesn't work */
body.video-fallback-mode .intro-video-bg {
    display: none !important;
}

body.video-fallback-mode .main-video {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body.video-fallback-mode .intro-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 50%, #1a1a1a 100%);
}

/* ============================================
   LOADER - Optimized
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    /* GPU layer for smooth fade */
    will-change: opacity;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #94544D;
    border-radius: 50%;
    /* GPU accelerated animation */
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    will-change: transform;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

.loader-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    font-weight: 300;
}

/* ============================================
   TRANSITION OVERLAY - Fade to black between screens
   ============================================ */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   INTRO SCREEN - Optimized transitions
   ============================================ */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow: hidden;
    /* Fallback background - prevents black screen while video loads */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    /* Containment for performance */
    contain: layout style;
}

.intro-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.6);
    /* GPU layer */
    transform: scale(1.1) translateZ(0);
    will-change: filter, transform;
    transition: filter 1s ease, transform 1s ease;
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    will-change: opacity;
    transition: opacity 0.8s ease;
}

.intro-screen.hidden .intro-video-bg {
    filter: blur(0px) brightness(1);
    transform: scale(1) translateZ(0);
}

.intro-screen.hidden .intro-overlay {
    opacity: 0;
}

.intro-screen.hidden .intro-logo {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
}

.intro-screen.hidden .intro-content {
    opacity: 0;
    transform: scale(1.1) translateZ(0);
}

.intro-screen.hidden .intro-copyright {
    transform: translateX(-50%) translateY(50px);
    opacity: 0;
}

.intro-screen.hidden {
    pointer-events: none;
}

.intro-screen.fully-hidden {
    visibility: hidden;
}

.intro-content {
    text-align: center;
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-logo {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    object-fit: contain;
    z-index: 2;
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-social-icons {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 2;
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.intro-screen.hidden .intro-social-icons {
    transform: translateX(-50%) translateY(50px);
    opacity: 0;
}

.intro-contacts {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 32px;
    z-index: 2;
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
    white-space: nowrap;
}

.intro-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
}

.intro-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.intro-contact-item a:hover {
    color: #94544D;
}

.intro-contact-icon {
    width: 18px;
    height: 18px;
    color: #94544D;
}

.intro-screen.hidden .intro-contacts {
    transform: translateX(-50%) translateY(50px);
    opacity: 0;
}

.intro-area {
    font-family: 'Unbounded', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
}

.intro-area .unit {
    font-size: 50px;
    font-weight: 400;
    vertical-align: baseline;
}

.intro-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.intro-location {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.start-tour-btn {
    font-family: 'Unbounded', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    /* GPU accelerated hover */
    transform: translateZ(0);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    /* Reduced blur for performance */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.start-tour-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05) translateZ(0);
}

.intro-copyright {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 2;
    will-change: transform, opacity;
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

/* ============================================
   PLAYER CONTAINER - GPU optimized
   ============================================ */
.player-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    /* GPU layer */
    transform: translateZ(0);
    will-change: opacity;
    transition: opacity 0.8s ease;
    /* Containment */
    contain: layout style;
}

.player-container.visible {
    opacity: 1;
}

/* ============================================
   HEADER - Optimized
   ============================================ */
.player-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(-40px) translateZ(0);
    will-change: transform, opacity;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.player-container.visible:not(.ui-hidden) .player-header {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    pointer-events: all;
    transition-delay: 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    /* Reduced blur for performance - 10px instead of 20px */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo img {
    height: 36px;
    object-fit: contain;
}

.book-btn {
    font-family: 'Unbounded', sans-serif;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    background: #94544D;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    /* GPU accelerated animation */
    transform: translateZ(0);
    will-change: transform, box-shadow;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
        transform: scale(1) translateZ(0);
    }
    50% {
        box-shadow: 0 6px 22px rgba(148, 84, 77, 0.55);
        transform: scale(1.02) translateZ(0);
    }
}

.book-btn:hover {
    background: #7a433d;
    transform: scale(1.05) translateZ(0);
    box-shadow: 0 8px 30px rgba(148, 84, 77, 0.6);
    animation-play-state: paused;
}

/* ============================================
   MAIN VIDEO - GPU optimized
   ============================================ */
.main-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    /* GPU layer for smooth transitions */
    transform: translateZ(0);
    will-change: height, filter, border-radius;
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
                border-radius 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
                filter 0.5s ease;
}

.main-video.blurred {
    filter: blur(15px) brightness(0.7);
}

/* ============================================
   INFO PANEL - Optimized
   ============================================ */
.info-panel {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) translateZ(0);
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    z-index: 100;
    /* Containment */
    contain: layout style;
    max-height: calc(100vh - 200px);
    overflow: visible;
}

.info-panel.visible {
    opacity: 1;
    visibility: visible;
}

.info-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(18px, 4vw, 32px);
    font-weight: 600;
    color: #fff;
    margin-bottom: clamp(10px, 2vw, 20px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-price {
    margin-bottom: clamp(20px, 4vw, 40px);
}

.price-value {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 700;
    color: #fff;
    display: block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.price-value br {
    content: "";
    display: block;
    margin: clamp(4px, 1vw, 8px) 0;
}

.price-label {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.7);
}

.info-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 35px;
}

.info-card {
    background: rgba(255, 255, 255, 0.12);
    /* Reduced blur */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 28px 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 240px;
}

.info-card-single {
    min-width: 320px;
    width: auto;
}

.info-card-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.info-icon {
    width: 28px;
    height: 28px;
    color: #94544D;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.info-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.info-value .unit-small {
    font-size: 14px;
    font-weight: 400;
}

.info-label {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(12px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.85);
}

.continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 16px 36px;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #94544D;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
}

.continue-btn:hover {
    background: #7a433d;
    transform: scale(1.05) translateZ(0);
    box-shadow: 0 6px 25px rgba(148, 84, 77, 0.5);
}

.info-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 25px;
    margin-bottom: 15px;
    padding: 18px 32px;
    background: linear-gradient(135deg, rgba(148, 84, 77, 0.25), rgba(148, 84, 77, 0.15));
    border: 2px solid rgba(148, 84, 77, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.highlight-icon {
    width: 32px;
    height: 32px;
    color: #94544D;
    stroke-width: 2;
}

.highlight-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CONTROLS PANEL - GPU optimized
   ============================================ */
.controls-panel {
    position: fixed;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(60px) translateZ(0);
    width: calc(100% - 60px);
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.12);
    /* Reduced blur for performance */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 32px;
    padding: 18px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    /* GPU optimization */
    will-change: transform, opacity;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    /* Containment */
    contain: layout style;
}

.player-container.visible:not(.ui-hidden) .controls-panel {
    opacity: 1;
    transform: translateX(-50%) translateY(0) translateZ(0);
    pointer-events: all;
}

/* ============================================
   SCROLL DOWN INDICATOR
   ============================================ */
.scroll-down-indicator {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.player-container.visible:not(.ui-hidden) .scroll-down-indicator {
    opacity: 1;
}

.scroll-arrow {
    width: 36px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Control Buttons */
.control-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transform: translateZ(0);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    color: #fff;
    flex-shrink: 0;
}

.control-btn:hover {
    background: rgba(148, 84, 77, 0.3);
    border-color: rgba(148, 84, 77, 0.5);
    transform: scale(1.05) translateZ(0);
}

.control-btn:active {
    transform: scale(0.95) translateZ(0);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

/* Progress Section */
.progress-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Progress Bar - GPU optimized */
.progress-container {
    padding: 8px 0;
    cursor: pointer;
}

.progress-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: visible;
}

.progress-filled {
    height: 100%;
    background: linear-gradient(90deg, #94544D 0%, #7a433d 100%);
    border-radius: 3px;
    width: 0%;
    /* GPU acceleration - use transform for width changes would be better but more complex */
    will-change: width;
    transition: none; /* Remove transition for smooth RAF updates */
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #94544D;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    left: 0%;
    will-change: left;
    transition: none; /* Remove transition for smooth RAF updates */
}

.time-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

/* Zone Tabs */
.zone-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.zone-tab {
    font-family: 'Raleway', sans-serif;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.zone-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 900;
}

.zone-tab.active {
    background: rgba(148, 84, 77, 0.85);
    color: #fff;
    border-color: rgba(148, 84, 77, 0.9);
    font-weight: 900;
}

/* Time Display */
.time-display {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-variant-numeric: tabular-nums;
    min-width: 100px;
    text-align: right;
    flex-shrink: 0;
    /* Ensure consistent numeric width across browsers */
    font-feature-settings: "tnum";
}

/* Volume Control */
.volume-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.volume-slider-container {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-bottom: 8px;
}

.volume-wrapper:hover .volume-slider-container {
    opacity: 1;
    visibility: visible;
}

.volume-slider {
    width: 6px;
    height: 80px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    writing-mode: bt-lr;
    -webkit-appearance: slider-vertical;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #94544D;
    border-radius: 50%;
    cursor: pointer;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .controls-panel {
        width: calc(100% - 40px);
        padding: 12px 16px;
        border-radius: 22px;
    }
    
    .zone-tabs {
        flex-wrap: wrap;
    }
    
    .zone-tab {
        padding: 4px 10px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .controls-panel {
        width: calc(100% - 20px);
        padding: 10px 12px;
        border-radius: 20px;
        bottom: 45px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        overflow: visible;
    }
    
    /* Grid layout: 3 rows */
    .controls-row {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "vol play time"
            "progress progress progress"
            "tabs tabs tabs";
        align-items: center;
        row-gap: 0;
        column-gap: 0;
        padding: 0 8px;
    }
    
    .controls-row::before {
        display: none;
    }
    
    /* Volume - LEFT */
    .volume-wrapper {
        grid-area: vol;
        justify-self: start;
        position: static;
        transform: none;
    }
    
    .volume-wrapper .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .volume-wrapper .control-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Play - CENTER */
    .play-pause {
        grid-area: play;
        justify-self: center;
        width: 56px;
        height: 56px;
    }
    
    .play-pause svg {
        width: 26px;
        height: 26px;
    }
    
    /* Time - RIGHT */
    .time-display {
        grid-area: time;
        justify-self: end;
        position: static;
        transform: none;
        font-size: 11px;
        font-weight: 600;
        min-width: auto;
        padding: 4px 8px;
        background: rgba(148, 84, 77, 0.3);
        border-radius: 12px;
        border: 1px solid rgba(148, 84, 77, 0.4);
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .control-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .volume-slider-container {
        left: 0;
        transform: none;
    }
    
    /* Progress - row 2 */
    .progress-section {
        grid-area: progress;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 16px !important;
        margin-bottom: 12px !important;
    }
    
    .progress-container {
        padding: 0;
        margin: 0 !important;
    }
    
    .progress-bar {
        height: 5px;
        border-radius: 3px;
    }
    
    .progress-handle {
        width: 18px;
        height: 18px;
        border-width: 2px;
    }
    
    .time-marker {
        width: 3px;
        height: 12px;
    }
    
    /* Zone tabs - row 3 */
    .zone-tabs {
        grid-area: tabs;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 6px;
        padding: 0 16px;
        margin: 0;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .zone-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .zone-tab {
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 600;
        flex-shrink: 0;
        border-radius: 20px;
        white-space: nowrap;
    }
    
    .zone-tab.active {
        background: #94544D;
        transform: scale(1.02) translateZ(0);
        box-shadow: 0 2px 8px rgba(148, 84, 77, 0.4);
    }
    
    /* Header - mobile */
    .player-header {
        top: 8px;
        left: 8px;
        right: 8px;
        gap: 8px;
    }
    
    .logo {
        padding: 6px 12px;
        border-radius: 30px;
    }
    
    .logo img {
        height: 22px;
    }
    
    .book-btn {
        padding: 8px 16px;
        font-size: 10px;
        border-radius: 30px;
        white-space: nowrap;
    }
    
    /* Info panel - mobile */
    .info-panel {
        width: calc(100% - 16px);
        padding: 0 8px;
        top: 70px !important;
        transform: translateX(-50%) translateZ(0) !important;
        max-height: calc(100vh - 250px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-title {
        font-size: 18px;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .price-value {
        font-size: 28px;
        line-height: 1;
    }
    
    .price-label {
        font-size: 11px;
        margin-top: 1px;
        display: block;
    }
    
    .info-price {
        margin-bottom: 12px;
    }
    
    /* Cards - vertical layout for tablets (600px-768px) */
    .info-cards {
        flex-direction: column;
        gap: 8px;
    }
    
    .info-card {
        min-width: auto;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .info-card-single {
        width: 100%;
        max-width: 100%;
    }
    
    .info-card-items {
        gap: 8px;
    }
    
    .info-item {
        gap: 6px;
    }
    
    .info-value {
        font-size: 13px;
    }
    
    .info-label {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .info-icon {
        width: 16px;
        height: 16px;
    }
    
    .info-highlight {
        margin: 10px 0 8px;
        padding: 8px 16px;
        gap: 6px;
    }
    
    .highlight-icon {
        width: 20px;
        height: 20px;
    }
    
    .highlight-text {
        font-size: 12px;
    }
    
    .info-social-icons {
        margin-top: 10px;
        gap: 8px;
    }
    
    .info-social-icons .social-icon-circle {
        width: 36px;
        height: 36px;
    }
    
    .info-social-icons .social-icon-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .continue-btn {
        margin-top: 10px;
        padding: 8px 20px;
        font-size: 10px;
        width: 100%;
        justify-content: center;
    }
    
    /* Intro - mobile */
    .intro-area {
        font-size: 64px;
    }
    
    .intro-subtitle {
        font-size: 20px;
    }
    
    .intro-location {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .intro-logo {
        height: 50px;
        top: 30px;
    }
    
    .start-tour-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ============================================
   BOOKING OVERLAY - Optimized
   ============================================ */
.booking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s;
}

.booking-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.booking-container {
    width: 100%;
    max-width: 500px;
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(20px) translateZ(0);
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.booking-container::-webkit-scrollbar {
    display: none;
}

.booking-overlay.visible .booking-container {
    transform: scale(1) translateY(0) translateZ(0);
}

.booking-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.booking-close:hover {
    background: rgba(148, 84, 77, 0.2);
    border-color: #94544D;
    color: #94544D;
    transform: rotate(90deg) translateZ(0);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 20px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #94544D;
    background: rgba(148, 84, 77, 0.05);
}

.form-textarea {
    min-height: 100px;
    resize: none;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    color: #fff;
}

.form-select option {
    background: #252525;
    color: #fff;
}

.form-submit {
    margin-top: 10px;
    background: #94544D;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #7a433d;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
}

.booking-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-divider span {
    padding: 0 15px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.social-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translateZ(0);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-circle svg {
    width: 22px;
    height: 22px;
}

.social-icon-circle:hover {
    transform: translateY(-3px) translateZ(0);
    background: rgba(255, 255, 255, 0.2);
    border-color: #94544D;
}

.social-icon-circle.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-icon-circle.telegram:hover { background: #0088cc; border-color: #0088cc; }
.social-icon-circle.vk:hover { background: #4C75A3; border-color: #4C75A3; }
.social-icon-circle.instagram:hover { background: #E1306C; border-color: #E1306C; }

.booking-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
}

.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.info-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
}

.booking-contact-item i {
    width: 16px;
    height: 16px;
    color: #94544D;
}

.booking-contact-item a {
    color: inherit;
    text-decoration: none;
}

/* Hide intro social icons on narrow screens */
@media (max-width: 900px) {
    .intro-social-icons {
        display: none;
    }
}

@media (max-width: 600px) {
    .booking-container {
        padding: 30px 20px;
        border-radius: 24px;
        margin: 15px;
    }
    .booking-social-icons {
        gap: 12px;
    }
    .intro-contacts {
        bottom: 85px;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    
    .intro-copyright {
        bottom: 20px;
        gap: 5px;
        font-size: 12px;
    }
    
    .intro-copyright .privacy-link {
        font-size: 11px;
    }
    
    /* Vertical layout for cards on mobile phones */
    .info-cards {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 6px;
        overflow: visible;
        padding: 4px 0;
        margin: 0;
        width: 100%;
    }
    
    .info-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 8px 12px;
        border-radius: 10px;
    }
    
    /* Single card styles */
    .info-card-single {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 8px 12px;
    }
    
    .info-card-single .info-card-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px 12px;
    }
    
    .info-card-single .info-item {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
    
    .info-card-single .info-icon {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
        min-width: 14px;
    }
    
    .info-card-single .info-label {
        font-size: 10px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .booking-title {
        font-size: 22px;
    }
    
    .intro-area {
        font-size: 48px;
    }
    
    .intro-subtitle {
        font-size: 16px;
    }
    
    .intro-location {
        font-size: 14px;
    }
    
    /* iPhone SE / Small screens specific fixes */
    .info-panel {
        top: 70px !important;
        transform: translateX(-50%) translateZ(0) !important;
        max-height: calc(100vh - 250px);
        overflow-y: auto;
        padding: 0 10px;
        width: calc(100% - 20px);
        box-sizing: border-box;
    }
}

/* All mobile phones - content starts right below header */
@media (max-width: 480px) and (min-height: 700px) {
    .info-panel {
        top: 70px !important;
        max-height: calc(100vh - 260px);
    }
}

@media (max-width: 480px) {
    .info-title {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .price-value {
        font-size: 20px;
        line-height: 1.15;
        word-spacing: -2px;
    }
    
    .price-label {
        font-size: 9px;
    }
    
    .info-price {
        margin-bottom: 4px;
    }
    
    /* Force vertical layout for all cards on mobile */
    .info-cards {
        flex-direction: column !important;
        gap: 4px;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    .info-card {
        min-width: 100% !important;
        max-width: 100%;
        width: 100%;
        padding: 6px 10px;
        border-radius: 8px;
        flex-shrink: 1;
    }
    
    .info-card-single {
        min-width: 100%;
        max-width: 100%;
        padding: 6px 10px;
    }
    
    .info-card-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3px 10px;
        justify-content: flex-start;
    }
    
    .info-item {
        gap: 4px;
        flex: 0 0 auto;
    }
    
    .info-value {
        font-size: 10px;
    }
    
    .info-label {
        font-size: 8px;
        line-height: 1.15;
    }
    
    .info-icon {
        width: 12px;
        height: 12px;
        min-width: 12px;
    }
    
    .info-highlight {
        padding: 5px 10px;
        margin: 4px 0 2px;
        gap: 4px;
    }
    
    .highlight-icon {
        width: 14px;
        height: 14px;
    }
    
    .highlight-text {
        font-size: 9px;
    }
    
    .continue-btn {
        padding: 5px 12px;
        font-size: 8px;
        margin-top: 4px;
    }
    
    /* Hide social icons on mobile - takes too much space */
    .info-social-icons {
        display: none !important;
    }
    
    /* Header adjustments for small screens */
    .player-header {
        top: 6px;
        left: 6px;
        right: 6px;
    }
    
    .logo {
        padding: 4px 8px;
        border-radius: 20px;
    }
    
    .logo img {
        height: 16px;
    }
    
    .book-btn {
        padding: 5px 10px;
        font-size: 8px;
        border-radius: 20px;
    }
    
    /* Controls panel adjustments */
    .controls-panel {
        width: calc(100% - 12px);
        padding: 8px 10px 6px;
        bottom: 35px;
        border-radius: 16px;
    }
    
    .zone-tab {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .controls-panel {
        width: calc(100% - 16px);
        padding: 10px 12px 8px;
        bottom: 40px;
        border-radius: 20px;
    }
    
    .play-pause,
    .volume-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .play-pause {
        top: 10px;
        left: 12px;
    }
    
    .volume-wrapper {
        top: 10px;
        left: 64px;
    }
    
    .time-display {
        top: 16px;
        right: 12px;
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .progress-section {
        margin-top: 48px;
    }
    
    .zone-tab {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .info-panel {
        width: calc(100% - 20px);
        padding: 0 10px;
        top: 70px !important;
        transform: translateX(-50%) translateZ(0) !important;
        max-height: calc(100vh - 250px);
    }
    
    .info-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .price-value {
        font-size: 40px;
    }
    
    .price-label {
        font-size: 14px;
    }
    
    .info-price {
        margin-bottom: 24px;
    }
    
    .info-card {
        padding: 16px 18px;
        border-radius: 18px;
    }
    
    .info-card-items {
        gap: 12px;
    }
    
    .info-value {
        font-size: 16px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .info-icon {
        width: 20px;
        height: 20px;
    }
    
    .info-highlight {
        padding: 12px 20px;
        margin: 16px 0 12px;
    }
    
    .highlight-icon {
        width: 24px;
        height: 24px;
    }
    
    .highlight-text {
        font-size: 14px;
    }
    
    .info-social-icons {
        gap: 12px;
        margin-top: 14px;
    }
    
    .info-social-icons .social-icon-circle {
        width: 44px;
        height: 44px;
    }
    
    .info-social-icons .social-icon-circle svg {
        width: 22px;
        height: 22px;
    }
    
    .continue-btn {
        padding: 12px 28px;
        font-size: 12px;
        margin-top: 16px;
    }
    
    .logo {
        padding: 8px 16px;
    }
    
    .logo img {
        height: 24px;
    }
    
    .book-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    /* Intro contacts and copyright adjustments for small screens */
    .intro-contacts {
        bottom: 90px;
        gap: 6px;
    }
    
    .intro-contact-item {
        font-size: 12px;
        gap: 6px;
    }
    
    .intro-contact-icon {
        width: 14px;
        height: 14px;
    }
    
    .intro-copyright {
        bottom: 16px;
        gap: 4px;
        font-size: 11px;
    }
    
    .intro-copyright .privacy-link {
        font-size: 10px;
    }
}

/* ============================================
   THANK YOU MODAL - Optimized
   ============================================ */
.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-you-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.thank-you-container {
    background: rgba(25, 25, 25, 0.9);
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9) translateY(20px) translateZ(0);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-you-overlay.visible .thank-you-container {
    transform: scale(1) translateY(0) translateZ(0);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: #94544D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1) translateZ(0); box-shadow: 0 0 0 0 rgba(148, 84, 77, 0.4); }
    50% { transform: scale(1.05) translateZ(0); box-shadow: 0 0 0 20px rgba(148, 84, 77, 0); }
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    color: white;
    stroke-width: 3;
}

.thank-you-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
}

.thank-you-message {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.thank-you-btn {
    background: #94544D;
    color: white;
    border: none;
    padding: 16px 36px;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
}

.thank-you-btn:hover {
    background: #7a433d;
    transform: scale(1.05) translateZ(0);
    box-shadow: 0 6px 25px rgba(148, 84, 77, 0.5);
}

/* ============================================
   SCROLL CTA BAR - GPU optimized
   ============================================ */
.scroll-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 40%);
    padding: 20px 30px 25px;
    z-index: 500;
    opacity: 0;
    transform: translateY(100%) translateZ(0);
    will-change: transform, opacity;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.scroll-cta-bar.visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    pointer-events: all;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.cta-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #94544D;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-btn:hover {
    background: #7a433d;
    transform: scale(1.05) translateZ(0);
    box-shadow: 0 6px 25px rgba(148, 84, 77, 0.5);
}

.cta-btn svg {
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ============================================
   PLAYER CONTAINER - SCROLL STATES
   ============================================ */
.player-container.shrinking {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.player-container.shrinking .main-video {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   SERVICES SCREEN
   ============================================ */
.services-screen {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 20px 60px;
    display: none;
    position: relative;
    /* Containment */
    contain: layout style;
}

.services-screen.visible {
    display: block;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.service-tab {
    padding: 14px 28px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.service-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.service-tab.active {
    background: #94544D;
    color: #fff;
    border-color: #94544D;
    box-shadow: 0 4px 20px rgba(148, 84, 77, 0.4);
}

.services-content {
    position: relative;
}

.service-card {
    display: none;
    animation: fadeInCard 0.4s ease;
}

.service-card.active {
    display: block;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.price-main {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.price-period {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.service-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(148, 84, 77, 0.25), rgba(148, 84, 77, 0.1));
    border: 2px solid rgba(148, 84, 77, 0.4);
    border-radius: 50px;
    margin-bottom: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.service-highlight .highlight-icon {
    width: 24px;
    height: 24px;
    color: #94544D;
}

.service-highlight span {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #94544D;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.feature-label {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.service-book-btn {
    display: block;
    width: 100%;
    padding: 18px 36px;
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #94544D;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
}

.service-book-btn:hover {
    background: #7a433d;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 30px rgba(148, 84, 77, 0.5);
}

.services-contact {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-info-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #94544D;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #94544D;
}

.services-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   COMPANY DETAILS BLOCK
   ============================================ */
.company-details {
    margin-top: 50px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.company-details-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
}

.company-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Download Contract Button */
.download-contract-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 32px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #94544D 0%, #7a443e 100%);
    border: 1px solid rgba(148, 84, 77, 0.5);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(148, 84, 77, 0.3);
}

.download-contract-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(148, 84, 77, 0.45);
    background: linear-gradient(135deg, #a5605a 0%, #8a4f48 100%);
}

.download-contract-btn:active {
    transform: translateY(0);
}

.download-contract-btn svg {
    flex-shrink: 0;
}

.services-copyright {
    text-align: center;
    margin-top: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Service Description Blocks */
.service-description {
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-description p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.service-description-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-description-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-description-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #94544D;
    border-radius: 50%;
}

/* Legal Address Card - Always Visible */
.legal-address-card {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 84, 77, 0.3);
    border-radius: 32px;
    padding: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInCard 0.4s ease;
}

.legal-address-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.legal-address-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(148, 84, 77, 0.25), rgba(148, 84, 77, 0.1));
    border: 2px solid rgba(148, 84, 77, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-address-icon {
    width: 28px;
    height: 28px;
    color: #94544D;
}

.legal-address-title-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-address-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.legal-address-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #94544D;
}

/* Back to Video Button */
.back-to-video-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transform: translateZ(0);
    transition: all 0.3s ease;
    z-index: 600;
}

.back-to-video-btn:hover {
    background: rgba(148, 84, 77, 0.3);
    border-color: rgba(148, 84, 77, 0.5);
}

.back-to-video-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE - CTA BAR & SERVICES
   ============================================ */
@media (max-width: 768px) {
    .scroll-cta-bar {
        padding: 30px 16px 24px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-text {
        align-items: center;
    }
    
    .cta-title {
        font-size: 16px;
    }
    
    .cta-subtitle {
        font-size: 13px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .services-screen {
        padding: 60px 16px 40px;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .services-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .service-tab {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .service-card {
        padding: 24px;
        border-radius: 24px;
        text-align: center;
    }
    
    .service-header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .service-name {
        font-size: 22px;
    }
    
    .service-price {
        align-items: center;
        text-align: center;
    }
    
    .price-main {
        font-size: 20px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        padding: 14px 16px;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
    }
    
    .feature-value {
        font-size: 16px;
    }
    
    .feature-label {
        font-size: 13px;
    }
    
    .service-book-btn {
        padding: 16px;
        font-size: 14px;
    }
    
    .contact-info-block {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .back-to-video-btn {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .services-title {
        margin-top: 30px;
    }
    
    .service-description {
        padding: 18px;
        border-radius: 16px;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .service-description p {
        font-size: 14px;
    }
    
    .service-description-list li {
        font-size: 13px;
    }
    
    .legal-address-card {
        padding: 24px;
        border-radius: 24px;
        margin-top: 30px;
    }
    
    .legal-address-header {
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .legal-address-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    
    .legal-address-icon {
        width: 24px;
        height: 24px;
    }
    
    .legal-address-title {
        font-size: 18px;
    }
    
    .legal-address-price {
        font-size: 16px;
    }
    
    .company-details {
        margin-top: 30px;
        padding: 24px;
        border-radius: 20px;
    }
    
    .company-details-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .company-details-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .detail-label {
        font-size: 11px;
    }
    
    .detail-value {
        font-size: 13px;
    }
}

/* ============================================
   SCALING FOR NON-STANDARD RESOLUTIONS
   ============================================ */

/* Low height screens (laptops, tablets in landscape) */
@media (max-height: 700px) {
    .intro-content {
        padding: 20px;
    }
    
    .intro-title {
        font-size: clamp(28px, 5vh, 48px);
    }
    
    .intro-subtitle {
        font-size: clamp(14px, 2vh, 18px);
        margin-bottom: 20px;
    }
    
    .info-overlay {
        padding-bottom: 100px;
    }
    
    .service-title {
        font-size: clamp(24px, 4vh, 36px);
    }
    
    .service-price {
        font-size: clamp(36px, 7vh, 72px);
    }
    
    .info-cards {
        gap: 16px;
    }
    
    .info-card {
        padding: 16px 20px;
    }
    
    .controls-panel {
        bottom: 40px;
        padding: 10px 16px;
    }
    
    .scroll-down-indicator {
        bottom: 8px;
    }
    
    .scroll-arrow {
        width: 24px;
        height: 24px;
    }
}

/* Very low height screens */
@media (max-height: 600px) {
    .intro-title {
        font-size: clamp(24px, 4vh, 36px);
    }
    
    .intro-subtitle {
        font-size: clamp(12px, 1.8vh, 16px);
    }
    
    .service-title {
        font-size: clamp(20px, 3.5vh, 28px);
    }
    
    .service-price {
        font-size: clamp(28px, 5vh, 48px);
    }
    
    .service-period {
        font-size: clamp(12px, 1.5vh, 16px);
    }
    
    .info-highlight {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .highlight-text {
        font-size: 14px;
    }
    
    .feature-label {
        font-size: 12px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .controls-panel {
        bottom: 35px;
        padding: 8px 12px;
    }
    
    .zone-tab {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .scroll-down-indicator {
        display: none;
    }
}

/* Wide screens with low height (ultrawide monitors, split view) */
@media (min-width: 1200px) and (max-height: 700px) {
    .info-overlay {
        padding: 30px 60px 120px;
    }
    
    .service-price {
        font-size: clamp(42px, 8vh, 72px);
    }
    
    .info-cards {
        flex-direction: row;
        gap: 20px;
    }
}

/* High DPI / Retina scaling fix */
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .controls-panel,
    .info-card,
    .info-highlight {
        backdrop-filter: blur(20px);
    }
}

/* ============================================
   EXTRA SMALL SCREENS (iPhone SE, etc.)
   ============================================ */
@media (max-width: 380px) {
    .info-panel {
        top: 70px !important;
        transform: translateX(-50%) translateZ(0) !important;
        max-height: calc(100vh - 180px);
        width: calc(100% - 10px);
        padding: 0 5px;
    }
    
    .info-title {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .price-value {
        font-size: 16px;
        line-height: 1.15;
        word-spacing: -2px;
    }
    
    .price-label {
        font-size: 8px;
        margin-top: 0;
    }
    
    .info-price {
        margin-bottom: 4px;
    }
    
    .info-cards {
        flex-direction: column !important;
        gap: 3px;
        overflow: visible !important;
    }
    
    .info-card {
        min-width: 100% !important;
        max-width: 100%;
        width: 100%;
        padding: 5px 8px;
        border-radius: 6px;
    }
    
    .info-card-single {
        min-width: 100%;
        max-width: 100%;
        padding: 5px 8px;
    }
    
    .info-card-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2px 8px;
    }
    
    .info-item {
        gap: 3px;
    }
    
    .info-value {
        font-size: 9px;
    }
    
    .info-label {
        font-size: 7px;
        line-height: 1.1;
    }
    
    .info-icon {
        width: 12px;
        height: 12px;
    }
    
    .info-highlight {
        padding: 5px 10px;
        margin: 6px 0 3px;
        gap: 4px;
    }
    
    .highlight-icon {
        width: 14px;
        height: 14px;
    }
    
    .highlight-text {
        font-size: 9px;
    }
    
    .continue-btn {
        padding: 5px 12px;
        font-size: 8px;
        margin-top: 5px;
    }
    
    /* Header */
    .player-header {
        top: 4px;
        left: 4px;
        right: 4px;
    }
    
    .logo {
        padding: 3px 6px;
        border-radius: 16px;
    }
    
    .logo img {
        height: 14px;
    }
    
    .book-btn {
        padding: 4px 8px;
        font-size: 7px;
        border-radius: 16px;
    }
    
    /* Controls */
    .controls-panel {
        width: calc(100% - 8px);
        padding: 5px 6px 3px;
        bottom: 25px;
        border-radius: 12px;
    }
    
    .zone-tab {
        padding: 4px 6px;
        font-size: 8px;
    }
    
    .control-btn {
        width: 32px;
        height: 32px;
    }
    
    .control-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .play-pause {
        width: 42px;
        height: 42px;
    }
    
    .play-pause svg {
        width: 20px;
        height: 20px;
    }
    
    .time-display {
        font-size: 9px;
        padding: 2px 5px;
    }
}

/* ============================================
   VERY SMALL SCREENS (360px and below - Galaxy S8+, etc.)
   ============================================ */
@media (max-width: 360px) {
    .info-panel {
        top: 70px !important;
        transform: translateX(-50%) translateZ(0) !important;
        max-height: calc(100vh - 170px);
    }
    
    .info-title {
        font-size: 12px;
        margin-bottom: 1px;
    }
    
    .price-value {
        font-size: 14px;
        line-height: 1.15;
        word-spacing: -2px;
    }
    
    .price-label {
        font-size: 7px;
    }
    
    .info-price {
        margin-bottom: 3px;
    }
    
    .info-card {
        min-width: 100% !important;
        max-width: 100%;
        width: 100%;
        padding: 4px 6px;
        border-radius: 6px;
    }
    
    .info-card-single {
        min-width: 100%;
        max-width: 100%;
        padding: 4px 6px;
    }
    
    .info-card-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2px 6px;
    }
    
    .info-item {
        gap: 2px;
    }
    
    .info-value {
        font-size: 8px;
    }
    
    .info-label {
        font-size: 6px;
        line-height: 1.1;
    }
    
    .info-icon {
        width: 10px;
        height: 10px;
    }
    
    .info-highlight {
        padding: 4px 8px;
        margin: 5px 0 2px;
        gap: 3px;
    }
    
    .highlight-icon {
        width: 12px;
        height: 12px;
    }
    
    .highlight-text {
        font-size: 8px;
    }
    
    .continue-btn {
        padding: 4px 10px;
        font-size: 7px;
        margin-top: 4px;
    }
    
    .logo {
        padding: 2px 5px;
        border-radius: 14px;
    }
    
    .logo img {
        height: 12px;
    }
    
    .book-btn {
        padding: 3px 6px;
        font-size: 6px;
        border-radius: 14px;
    }
}

/* Prevent overflow on all viewport sizes */
.info-overlay,
.service-content,
.info-cards {
    max-width: 100%;
    box-sizing: border-box;
}

.service-title,
.service-price,
.service-period {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    z-index: 15000;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.cookie-consent.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent.hidden {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    color: #94544D;
    flex-shrink: 0;
}

.cookie-description {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-description a {
    color: #94544D;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-description a:hover {
    color: #b06860;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 14px 28px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #94544D;
    color: #fff;
    box-shadow: 0 4px 15px rgba(148, 84, 77, 0.4);
}

.cookie-btn-accept:hover {
    background: #7a433d;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(148, 84, 77, 0.5);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Privacy Link in Footer */
.intro-copyright,
.services-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.privacy-link {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #94544D;
    text-decoration: underline;
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-title {
        justify-content: center;
        font-size: 14px;
    }
    
    .cookie-description {
        font-size: 13px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 13px;
    }
}

