
/* --- HEADER --- */
.top-left-header {
    position: fixed;
    top: 30px;
    left: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
}
:root {
    --color-dark-purple: #120424;
    --color-mid-purple: #26094a;
    --color-header-bg: #1c0638;
    --color-logo-bg: #3a1078;
    --color-bg-base: #05010a;
    --color-text-main: #ffffff;
    --color-card-bg: rgba(43, 10, 90, 0.85);
    --color-card-border: rgba(90, 24, 154, 0.4);
    --font-main: 'Montserrat', sans-serif;
}

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

html {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    height: 100%;
    margin: 0;
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-main);
    overflow: hidden;
}

/* --- FULL-SCREEN SCROLL SNAP --- */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none; 
}

.scroll-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden; 
}


/* --- HEADER (Removed) --- */

/* --- 3D OPTION WHEEL (SIDE NAVIGATION) --- */
.option-wheel {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    height: 480px;
    z-index: 1000;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.option-wheel.nav-transparent {
    opacity: 0;
    pointer-events: auto;
}

.option-wheel.nav-transparent:hover {
    opacity: 1;
}

/* Glass track wrapper (subtle container background with fade masks) */
.option-wheel::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 48px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 2, 25, 0.45) 100%);
    border-radius: 24px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
}

/* Central focus indicator pill */
.ow-focus-indicator {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 160px;
    height: 38px;
    border-radius: 20px;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(199, 125, 255, 0.22);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.15), inset 0 0 15px rgba(157, 78, 221, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 1;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.option-wheel:hover .ow-focus-indicator {
    border-color: rgba(199, 125, 255, 0.4);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.25), inset 0 0 20px rgba(157, 78, 221, 0.12);
}

.ow-focus-glow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.8) 0%, transparent 70%);
    filter: blur(2px);
    pointer-events: none;
}

/* Track container holding the arc items */
.ow-track {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

/* Individual Option Wheel Item */
.ow-item {
    position: absolute;
    top: 50%;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    will-change: transform, opacity, filter;
    transform-origin: 100% 50%;
    padding: 6px 4px;
    z-index: 2;
    transition: color 0.25s ease;
}

/* Text label */
.ow-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: color 0.25s ease, font-weight 0.25s ease, text-shadow 0.25s ease;
    pointer-events: none;
}

/* Indicator dot */
.ow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}

/* Hover state */
.ow-item:hover .ow-label {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(199, 125, 255, 0.6);
}

.ow-item:hover .ow-dot {
    background: #c77dff;
    border-color: #e0aaff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(199, 125, 255, 0.8);
}

/* Active item state (centered on wheel) */
.ow-item.active {
    z-index: 3;
}

.ow-item.active .ow-label {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    text-shadow: 0 0 16px rgba(199, 125, 255, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.ow-item.active .ow-dot {
    width: 10px;
    height: 10px;
    background: #c77dff;
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 14px #c77dff, 0 0 24px rgba(157, 78, 221, 0.9);
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #0f0321 0%, #030008 100%);
    position: relative;
}

/* Background Layers for Hero */
.hero-bg-eq {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 3vw;
    opacity: 0.15;
    z-index: 0;
    width: 80vw;
    justify-content: center;
}
.eq-bar {
    will-change: height, opacity;
    width: 10vw;
    background-color: #7b2cbf;
    border-radius: 5vw;
    box-shadow: 0 0 50px #9d4edd;
    animation: eqPulse ease-in-out infinite alternate;
}
.eq-bar:nth-child(1) { --h: 60vh; margin-top: -12vh; animation-duration: 1.5s; }
.eq-bar:nth-child(2) { --h: 60vh; margin-top: 15vh; animation-duration: 1.1s; }
.eq-bar:nth-child(3) { --h: 50vh; margin-top: -10vh; animation-duration: 1.4s; }
.eq-bar:nth-child(4) { --h: 60vh; margin-top: 15vh; animation-duration: 1.3s; }
.eq-bar:nth-child(5) { --h: 60vh; margin-top: -12vh; animation-duration: 1.6s; }

@keyframes eqPulse {
    0% { height: var(--h); opacity: 1; }
    100% { height: calc(var(--h) * 0.4); opacity: 0.3; }
}

.hero-bg-wave {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 100px;
    transform: translateY(-50%);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q20,20 40,50 T80,50 T120,30 T160,50 T200,70 T240,50 T280,20 T320,50 T360,80 T400,50 T440,30 T480,50 T520,70 T560,50 T600,10 T640,50 T680,90 T720,50 T760,20 T800,50 T840,40 T880,50 T920,60 T960,50 T1000,50" fill="none" stroke="rgba(157, 78, 221, 0.2)" stroke-width="2"/><path d="M0,50 Q30,10 60,50 T120,50 T180,20 T240,50 T300,90 T360,50 T420,10 T480,50 T540,80 T600,50 T660,30 T720,50 T780,70 T840,50 T900,10 T960,50 T1000,50" fill="none" stroke="rgba(157, 78, 221, 0.1)" stroke-width="4"/></svg>') repeat-x center;
    background-size: auto 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-japanese-left, .hero-japanese-right {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 0 40px;
    z-index: 1;
    font-family: "Yu Mincho", "MS Mincho", serif;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    writing-mode: vertical-rl;
    text-orientation: upright;
}
.hero-japanese-left { left: 0; }
.hero-japanese-right { right: 0; }

.hero-japanese-left .col1, .hero-japanese-right .col1 { 
    font-size: 6rem; 
    margin-right: 20px; 
    opacity: 0.6;
    letter-spacing: 20px;
}
.hero-japanese-left .col2, .hero-japanese-right .col2 { 
    font-size: 4rem; 
    opacity: 0.4;
    letter-spacing: 15px;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 5px;
    background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* --- UNIFIED LUXURY STUDIO BUTTONS (MINIMALIST OBSIDIAN GLASS) --- */
.btn, .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 34px;
    background: rgba(22, 12, 34, 0.8);
    border: 1px solid rgba(199, 125, 255, 0.32);
    border-radius: 30px;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}

.btn::before, .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn:hover::before, .btn-primary:hover::before {
    left: 100%;
}

.btn:hover, .btn-primary:hover {
    background: rgba(36, 18, 56, 0.92);
    border-color: rgba(199, 125, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), 0 0 14px rgba(157, 78, 221, 0.22);
    transform: translateY(-2px);
    color: #ffffff !important;
    text-shadow: none;
}

.btn:active, .btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #777;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
}


/* --- SERVICES SECTION --- */
.services {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; 
    position: relative;
}

.services-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, #030008 0%, rgba(10,2,25,0.85) 30%, rgba(5,1,10,0.95) 100%),
                url('studio_bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.services-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
}

.services-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.services-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 10px;
    color: #ffffff;
    margin: 0 0 16px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.services-subtitle {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 720px;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    align-items: stretch;
}

/* РћР±СЃРёРґРёР°РЅРѕРІР°СЏ СЃС‚РµРєР»СЏРЅРЅР°СЏ РєР°СЂС‚РѕС‡РєР° СѓСЃР»СѓРіРё СЃ СЌС„С„РµРєС‚РѕРј Spotlight */
.service-card {
    background: rgba(12, 8, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.35s ease,
                background-color 0.35s ease,
                box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Р’СЃРµ СЌР»РµРјРµРЅС‚С‹ РєР°СЂС‚РѕС‡РєРё РЅР°С…РѕРґСЏС‚СЃСЏ РЅР°Рґ Р»СѓС‡РѕРј РїСЂРѕР¶РµРєС‚РѕСЂР° */
.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 3;
}

/* Р”РёРЅР°РјРёС‡РµСЃРєРёР№ СЃРІРµС‚РѕРІРѕР№ Р»СѓС‡ РїСЂРѕР¶РµРєС‚РѕСЂР° (Spotlight), СЃР»РµРґСѓСЋС‰РёР№ Р·Р° РєСѓСЂСЃРѕСЂРѕРј */
.card-spotlight::after,
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        340px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
        rgba(255, 255, 255, 0.16) 0%,
        var(--spotlight-color, rgba(199, 125, 255, 0.22)) 32%,
        rgba(157, 78, 221, 0.06) 60%,
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.card-spotlight:hover::after,
.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 125, 255, 0.42);
    background: rgba(18, 12, 30, 0.82);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(157, 78, 221, 0.18);
}

.service-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(199, 125, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c77dff;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: rgba(157, 78, 221, 0.2);
    border-color: rgba(199, 125, 255, 0.4);
    color: #ffffff;
    transform: scale(1.06);
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.service-card-desc {
    font-size: 0.95rem;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.8;
    margin: 0 0 28px 0;
    flex-grow: 1;
    letter-spacing: 0.2px;
}

.service-card-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(157, 78, 221, 0.14);
    border: 1px solid rgba(199, 125, 255, 0.3);
    border-radius: 30px;
    padding: 9px 22px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card:hover .service-card-price {
    background: rgba(157, 78, 221, 0.25);
    border-color: #c77dff;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.25);
}

/* РћР±СЂР°С‚РЅР°СЏ СЃРѕРІРјРµСЃС‚РёРјРѕСЃС‚СЊ */
.card { display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; }
.card-content { background: rgba(12, 8, 20, 0.65); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 30px 25px; }
.card-price { font-size: 0.95rem; color: #fff; font-weight: 600; padding: 8px 20px; background: rgba(157, 78, 221, 0.14); border-radius: 30px; border: 1px solid rgba(199, 125, 255, 0.3); }

/* --- BOOKING SECTION (UNIFIED LUXURY STUDIO STYLE) --- */
.booking-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(30, 10, 58, 0.4) 0%, #05010a 75%);
    overflow: hidden;
    padding: 60px 20px;
    box-sizing: border-box;
}

.booking-bg-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(157, 78, 221, 0.05) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.booking-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    gap: 60px;
    padding: 0 20px;
    margin: 0 auto;
}

.booking-left {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.booking-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.booking-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 18px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.booking-desc {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 480px;
    margin: 0 0 28px;
}

/* РЎС‚СѓРґРёР№РЅС‹Рµ С„РёС‡Рё СЃР»РµРІР° */
.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 460px;
}

.booking-perk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(14, 8, 24, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.booking-perk-item:hover {
    border-color: rgba(199, 125, 255, 0.3);
    background: rgba(22, 12, 36, 0.75);
    transform: translateX(4px);
}

.booking-perk-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(157, 78, 221, 0.12);
    border: 1px solid rgba(199, 125, 255, 0.25);
    color: #c77dff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-perk-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.perk-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
}

.perk-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    font-weight: 300;
}

/* РџСЂР°РІР°СЏ РєРѕР»РѕРЅРєР° СЃ С„РѕСЂРјРѕР№ */
.booking-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.booking-form-container {
    width: 100%;
    max-width: 460px;
    background: rgba(14, 8, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(157, 78, 221, 0.12);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(20px);
    box-sizing: border-box;
}

.booking-form-header {
    margin-bottom: 22px;
    text-align: left;
}

.booking-form-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.booking-form-subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    margin: 0;
}

.booking-form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
    text-align: left;
}

.booking-form-container .form-group label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c77dff;
    font-weight: 600;
}

.booking-form-container .form-group input,
.booking-form-container .form-group select {
    background: rgba(8, 4, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 300;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
    width: 100%;
}

.booking-form-container .form-group input:focus,
.booking-form-container .form-group select:focus {
    border-color: rgba(199, 125, 255, 0.5);
    background: rgba(16, 8, 28, 0.9);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.booking-form-container .custom-select option {
    background: #0d0618;
    color: #ffffff;
}

.form-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
}


/* --- DAW PROMO SECTION (UNIFIED LUXURY STUDIO STYLE) --- */
.daw-promo-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(30, 10, 58, 0.35) 0%, #05010a 75%);
    overflow: hidden;
    padding: 60px 20px;
    box-sizing: border-box;
}

.daw-bg-glow {
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(157, 78, 221, 0.05) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.daw-promo-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 50px;
    padding: 0 20px;
    margin: 0 auto;
}

.daw-promo-content {
    flex: 0 0 45%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.daw-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.daw-promo-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 18px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.daw-promo-desc {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin: 0 0 24px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.daw-features-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.daw-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: rgba(14, 8, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.daw-chip:hover {
    border-color: rgba(199, 125, 255, 0.35);
    background: rgba(22, 12, 36, 0.85);
    color: #ffffff;
}

.daw-btn {
    padding: 13px 36px;
    font-size: 0.95rem;
}

.daw-promo-image-wrap {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.daw-promo-image-card {
    position: relative;
    width: 100%;
    background: rgba(14, 8, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(157, 78, 221, 0.15);
    transition: all 0.4s ease;
}

.daw-promo-image-card:hover {
    border-color: rgba(199, 125, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(157, 78, 221, 0.25);
}

.daw-promo-image-card img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* --- ABOUT SECTION --- */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #05010a 0%, #0d0218 50%, #05010a 100%);
    position: relative;
}

.about-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q200,150 400,50 T800,50 T1000,50" fill="none" stroke="rgba(157, 78, 221, 0.05)" stroke-width="2"/></svg>') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.8;
    max-width: 700px;
    font-weight: 300;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text strong {
    color: #fff;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #9d4edd;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER SECTION --- */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #030005;
    position: relative;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.footer-logo img {
    width: 140px;
    filter: invert(1);
    opacity: 0.55;
    margin: 0 auto;
    display: block;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.footer-logo img:hover {
    opacity: 0.9;
    filter: invert(1) drop-shadow(0 0 8px rgba(157, 78, 221, 0.8));
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 30px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #9d4edd;
}

.footer-contacts {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.footer-copyright {
    color: #333;
    font-size: 0.8rem;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- MODALS (Р’С…РѕРґ / Р РµРіРёСЃС‚СЂР°С†РёСЏ / РРЅС„Рѕ) --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 1, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-header-bg);
    border: 1px solid rgba(130, 60, 200, 0.5);
    box-shadow: 0 10px 40px rgba(30, 10, 65, 0.8);
    border-radius: 20px;
    padding: 35px 40px;
    width: 90%;
    max-width: 420px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: rgba(25, 12, 45, 0.6);
    border: 1px solid rgba(199, 125, 255, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #ffffff;
    border-color: #c77dff;
    background: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 12px rgba(199, 125, 255, 0.5);
    transform: rotate(90deg);
}

/* Tabs inside Modal */
.modal-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 10px 5px;
    transition: color 0.3s;
    font-weight: 500;
}

.tab-btn.active {
    color: #fff;
    border-bottom: 2px solid #9d4edd;
    margin-bottom: -1px;
}

/* Forms */
.auth-form {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.auth-form.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    color: #ccc;
}

.form-group input {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 15px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    border-color: #9d4edd;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.2);
}

.form-group input.invalid {
    border-color: #c77dff;
}

.error-msg {
    color: #ff4d4d;
    font-size: 0.75rem;
    height: 14px; 
}

.form-btn {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 14px;
}

/* Info Modal text */
.modal-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.5rem;
}

.modal-body {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}
.modal-body .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.modal-body .social-links a {
    color: #9d4edd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.modal-body .social-links a:hover {
    color: #fff;
}


/* --- ANIMATIONS (Scroll Observer) --- */
@keyframes dropIn {
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .card-content {
        min-height: 100px;
        padding: 15px;
    }
    
    .player {
        padding: 15px 20px;
        gap: 15px;
        border-radius: 20px;
    }
    
    .hero-title { font-size: 3.5rem; }
    
    .hero-japanese-left, .hero-japanese-right {
        display: none; 
    }
    
    .mobile-menu-btn { display: block; }
    .nav {
        position: absolute;
        top: 60px; left: 0; right: 0;
        flex-direction: column;
        background-color: var(--color-header-bg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .nav.active { max-height: 500px; }
    
    .nav-link {
        padding: 15px;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .scroll-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    .scroll-container {
        scroll-snap-type: none;
    }
}

/* Custom Select & Date Picker for Booking */
.custom-select {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 15px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.custom-select:focus {
    border-color: #9d4edd;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.2);
}
.custom-select option {
    background: #1c0638;
    color: #fff;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}


/* Р›РёРЅРє РЅР° DAW СЃР»РµРІР° СЃРІРµСЂС…Сѓ */
.hero-daw-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(22, 12, 34, 0.8);
    border: 1px solid rgba(199, 125, 255, 0.32);
    border-radius: 30px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.hero-daw-link::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.hero-daw-link:hover::before {
    left: 100%;
}

.hero-daw-link:hover {
    background: rgba(36, 18, 56, 0.92);
    border-color: rgba(199, 125, 255, 0.6);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), 0 0 12px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.hero-daw-link:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 768px) {
    .hero-daw-link {
        top: 20px;
        left: 20px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}


/* --- ADMIN PANEL --- */
.admin-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-box {
    background: rgba(4, 0, 11, 0.7);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.admin-box h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.admin-input {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(157, 78, 221, 0.4);
    border-radius: 30px;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.admin-input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.admin-list-container {
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(157, 78, 221, 0.15);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    white-space: nowrap;
}

.admin-table th {
    background: rgba(157, 78, 221, 0.08);
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(157, 78, 221, 0.05);
}

.admin-table td button {
    background: transparent;
    border: 1px solid rgba(157, 78, 221, 0.5);
    color: #c77dff;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.8rem;
}
.admin-table td button:hover {
    background: rgba(157, 78, 221, 0.2);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}


/* --- FOOTER GIF BACKGROUND --- */
.footer-section {
    position: relative;
    overflow: hidden; /* Р§С‚РѕР±С‹ РіРёС„РєР° РЅРµ РІС‹Р»РµР·Р°Р»Р° Р·Р° РєСЂР°СЏ С„СѓС‚РµСЂР° */
}

.footer-bg-gif {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    

    background: url('LM4p.gif') center/cover no-repeat;
    
    
    opacity: 0.06; 
    filter: contrast(120%) brightness(80%) grayscale(20%); 
    
    z-index: 0;
    pointer-events: none; 
}

.footer-content {
    position: relative;
    z-index: 1; 
}


/* --- STATIC TOP LEFT LOGO --- */
.top-left-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    /* РЈР±РёСЂР°РµРј Р»СЋР±С‹Рµ Р°РЅРёРјР°С†РёРё Р±СЂР°СѓР·РµСЂР° РїРѕ СѓРјРѕР»С‡Р°РЅРёСЋ */
    transition: none !important;
    animation: none !important;
}

.top-left-logo img {
    height: 35px;
    /* Р”РµР»Р°РµРј Р»РѕРіРѕС‚РёРї РіР°СЂР°РЅС‚РёСЂРѕРІР°РЅРЅРѕ Р±РµР»С‹Рј */
    filter: brightness(0) invert(1);
}

.top-left-logo-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 3px;
}


/* =========================================
   SHOWCASE SECTION & A/B AUDIO PLAYER
   ========================================= */

.showcase-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(35, 10, 65, 0.45) 0%, #05010a 70%);
    overflow: hidden;
    padding: 60px 20px;
}

.showcase-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(157, 78, 221, 0.15) 0%, rgba(200, 100, 255, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.showcase-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
}

.showcase-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.showcase-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    margin: 0 0 16px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.showcase-subtitle {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 720px;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* РљР°СЂС‚РѕС‡РєР° A/B РїР»РµРµСЂР° */
.ab-player-card {
    width: 100%;
    background: rgba(12, 8, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 32px;
    backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 
                0 0 25px rgba(157, 78, 221, 0.05),
                inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.ab-player-card.is-raw {
    border-color: rgba(255, 100, 100, 0.25);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 100, 100, 0.04);
}

.ab-player-card.is-mastered {
    border-color: rgba(157, 78, 221, 0.35);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 25px rgba(157, 78, 221, 0.08);
}

/* Р’РµСЂС…РЅРёР№ СЂСЏРґ РїР»РµРµСЂР° */
.ab-player-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 22px;
}

.ab-track-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ab-disc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle, #1c152a 30%, #0d0816 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: discRotate 6s linear infinite;
    animation-play-state: paused;
}

.ab-disc-icon.playing {
    animation-play-state: running;
}

.ab-disc-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9d4edd;
}

@keyframes discRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ab-track-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.ab-track-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
    letter-spacing: 0.3px;
}

/* РљРЅРѕРїРєР°-С‚СѓРјР±Р»РµСЂ Р”Рћ / РџРћРЎР›Р• */
.ab-mode-switch {
    display: flex;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 3px;
    position: relative;
}

.ab-mode-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ab-mode-btn .ab-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.25s;
}

.ab-mode-btn.active[data-mode="raw"] {
    background: rgba(255, 80, 80, 0.15);
    color: #ff9999;
    border: 1px solid rgba(255, 80, 80, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.ab-mode-btn.active[data-mode="raw"] .ab-dot {
    background: #ff5e5e;
}

.ab-mode-btn.active[data-mode="mastered"] {
    background: rgba(157, 78, 221, 0.2);
    color: #ffffff;
    border: 1px solid rgba(199, 125, 255, 0.35);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.ab-mode-btn.active[data-mode="mastered"] .ab-dot {
    background: #c77dff;
    box-shadow: 0 0 6px rgba(199, 125, 255, 0.5);
}

/* Р’РѕР»РЅРѕРІРѕР№ С…РѕР»СЃС‚ (Waveform Canvas) */
.ab-waveform-container {
    position: relative;
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

#ab-wave-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.ab-progress-bar-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.ab-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7b2cbf, #c77dff);
    box-shadow: 0 0 8px #c77dff;
    transition: width 0.08s linear;
}

.ab-progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px #c77dff;
    pointer-events: none;
}

/* РќРёР¶РЅСЏСЏ РїР°РЅРµР»СЊ РєРѕРЅС‚СЂРѕР»РѕРІ */
.ab-player-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.ab-controls-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ab-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(22, 12, 34, 0.85);
    border: 1px solid rgba(199, 125, 255, 0.32);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.ab-play-btn:hover {
    transform: scale(1.06);
    background: rgba(38, 20, 60, 0.95);
    border-color: rgba(199, 125, 255, 0.6);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6), 0 0 12px rgba(157, 78, 221, 0.22);
}

.ab-play-btn:active {
    transform: scale(0.96);
}

.ab-time-display {
    font-family: monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.ab-state-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

.ab-state-indicator .pulse-ring {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9d4edd;
    animation: statePulse 2s infinite;
}

@keyframes statePulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.2); }
}

.ab-volume-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.ab-volume-range {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
}

.ab-volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* РЎСЂР°РІРЅРёС‚РµР»СЊРЅС‹Рµ СЃРїРµС†РёС„РёРєР°С†РёРё */
.ab-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ab-spec-card {
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.ab-spec-card .spec-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.ab-spec-card .spec-status {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.ab-spec-card.raw-spec.active {
    border-color: rgba(255, 100, 100, 0.3);
    background: rgba(255, 80, 80, 0.04);
}
.ab-spec-card.raw-spec.active .spec-label {
    color: #ff8e8e;
}

.ab-spec-card.master-spec.active {
    border-color: rgba(157, 78, 221, 0.3);
    background: rgba(157, 78, 221, 0.05);
}
.ab-spec-card.master-spec.active .spec-label {
    color: #c77dff;
}

/* РџСЂРёР·С‹РІ Рє РґРµР№СЃС‚РІРёСЋ */
.showcase-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    gap: 10px;
}

/* РђРґР°РїС‚РёРІ РґР»СЏ Showcase */
@media (max-width: 768px) {
    .showcase-title { font-size: 1.8rem; }
    .ab-player-card { padding: 20px; }
    .ab-player-top { flex-direction: column; align-items: flex-start; }
    .ab-mode-switch { width: 100%; justify-content: space-between; }
    .ab-mode-btn { flex: 1; justify-content: center; padding: 8px 10px; font-size: 0.75rem; }
    .ab-specs-grid { grid-template-columns: 1fr; }
    .showcase-cta { flex-direction: column; }
    .showcase-cta a { margin-left: 0 !important; margin-top: 10px; }
}


/* =========================================
   STUDIO GEAR SECTION & 3D COVERFLOW SLIDER
   ========================================= */

.gear-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(40, 10, 75, 0.4) 0%, #05010a 75%);
    overflow: hidden;
    padding: 40px 0;
}

.gear-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(157, 78, 221, 0.06) 0%, rgba(199, 125, 255, 0.02) 50%, transparent 75%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.gear-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gear-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.gear-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.gear-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    margin: 0 0 16px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.gear-subtitle {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 720px;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* РљРѕРЅС‚РµР№РЅРµСЂ СЃР»Р°Р№РґРµСЂР° - РїРѕР·РІРѕР»СЏРµРј РєР°СЂС‚РѕС‡РєР°Рј РІС‹С…РѕРґРёС‚СЊ Р·Р° СЌРєСЂР°РЅ */
.gear-slider-container {
    position: relative;
    width: 100%;
    overflow: visible; /* РљР°СЂС‚РѕС‡РєРё РІС‹С…РѕРґСЏС‚ Р·Р° СЌРєСЂР°РЅ! */
    padding: 30px 0 45px;
}

.gear-swiper {
    width: 100%;
    overflow: visible !important; /* Р”Р°РµС‚ СЌС„С„РµРєС‚ СѓС…РѕРґР° Р·Р° РєСЂР°Р№ РјРѕРЅРёС‚РѕСЂР° */
    padding: 20px 0 40px;
}

.gear-slide {
    width: 380px !important; /* Р‘Р°Р·РѕРІР°СЏ С€РёСЂРёРЅР° РєР°СЂС‚РѕС‡РєРё */
    perspective: 1200px;
    cursor: grab;
}

.gear-slide:active {
    cursor: grabbing;
}

/* РЎР°РјР° РєР°СЂС‚РѕС‡РєР° РѕР±РѕСЂСѓРґРѕРІР°РЅРёСЏ */
.gear-card {
    position: relative;
    background: rgba(18, 7, 34, 0.9);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 20px;
    padding: 0;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75),
                0 0 30px rgba(157, 78, 221, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    height: 470px;
    display: flex;
    flex-direction: column;
}

/* Р¤РѕС‚Рѕ-Р±РѕРєСЃ РїСЂРёР±РѕСЂР° */
.gear-img-box {
    position: relative;
    width: 100%;
    height: 180px;
    background: #090214;
    overflow: hidden;
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.gear-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gear-card:hover .gear-img {
    transform: scale(1.06);
}

.gear-img-box .gear-status-dot {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}

/* РўРµР»Рѕ РєРѕРЅС‚РµРЅС‚Р° РїРѕРґ С„РѕС‚Рѕ */
.gear-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* РЎРІРµС‡РµРЅРёРµ РЅР° С„РѕРЅРµ РєР°СЂС‚РѕС‡РєРё */
.gear-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    transition: all 0.4s ease;
}

/* РђРєС‚РёРІРЅР°СЏ С†РµРЅС‚СЂР°Р»СЊРЅР°СЏ РєР°СЂС‚РѕС‡РєР° */
.swiper-slide-active .gear-card {
    border-color: rgba(199, 125, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(157, 78, 221, 0.12),
                inset 0 1px 2px rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.swiper-slide-active .gear-card-glow {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

/* РҐРѕРІРµСЂ СЌС„С„РµРєС‚ */
.gear-card:hover {
    border-color: rgba(199, 125, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 20px rgba(199, 125, 255, 0.18);
}

.gear-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gear-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c77dff;
    text-transform: uppercase;
}

.gear-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c77dff;
    box-shadow: 0 0 6px rgba(199, 125, 255, 0.7);
    animation: statusPulse 2.5s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 10px rgba(199, 125, 255, 0.9); }
}

/* РРєРѕРЅРєР° РѕР±РѕСЂСѓРґРѕРІР°РЅРёСЏ */
.gear-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.25) 0%, rgba(35, 10, 65, 0.6) 100%);
    border: 1px solid rgba(199, 125, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0aaff;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-slide-active .gear-icon-box {
    color: #ffffff;
    border-color: rgba(199, 125, 255, 0.8);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.6);
}

.gear-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 6px;
}

.gear-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 16px;
}

/* РўРµРіРё С…Р°СЂР°РєС‚РµСЂРёСЃС‚РёРє */
.gear-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.spec-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: #d8b4fe;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.35);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.gear-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    margin-top: auto;
}

/* РќР°РІРёРіР°С†РёРѕРЅРЅС‹Рµ РєРЅРѕРїРєРё СЃС‚СЂРµР»РєРё */
.gear-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(20, 12, 32, 0.85);
    border: 1px solid rgba(199, 125, 255, 0.32);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gear-nav-btn:hover {
    background: rgba(38, 20, 60, 0.95);
    border-color: rgba(199, 125, 255, 0.6);
    color: #ffffff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65), 0 0 12px rgba(157, 78, 221, 0.22);
}

.gear-prev {
    left: 20px;
}

.gear-next {
    right: 20px;
}

/* РџР°РіРёРЅР°С†РёСЏ (РЅРµРѕРЅРѕРІС‹Рµ С‚РѕС‡РєРё) */
.gear-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gear-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    border-radius: 5px;
    transition: all 0.35s ease;
}

.gear-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #c77dff;
    box-shadow: 0 0 12px #c77dff, 0 0 20px rgba(157, 78, 221, 0.8);
}

.gear-bottom-info {
    margin-top: 15px;
    text-align: center;
}

.gear-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
}

/* РђРґР°РїС‚РёРІ РґР»СЏ Gear */
@media (max-width: 992px) {
    .gear-slide { width: 320px !important; }
    .gear-card { height: 440px; }
    .gear-title { font-size: 2rem; }
}

@media (max-width: 600px) {
    .gear-slide { width: 280px !important; }
    .gear-card { height: 420px; }
    .gear-title { font-size: 1.6rem; }
    .gear-prev { left: 5px; }
    .gear-next { right: 5px; }
    .gear-nav-btn { width: 38px; height: 38px; }
}


/* =========================================
   REVIEWS & ARTIST RELEASES SECTION (3D CAROUSEL)
   ========================================= */

.reviews-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(30, 8, 60, 0.45) 0%, #05010a 75%);
    overflow: hidden;
    padding: 50px 0;
}

.reviews-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 550px;
    background: radial-gradient(ellipse, rgba(199, 125, 255, 0.05) 0%, rgba(157, 78, 221, 0.02) 50%, transparent 75%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.reviews-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.reviews-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.reviews-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    margin: 0 0 16px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.reviews-subtitle {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 720px;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* РЎР»Р°Р№РґРµСЂ РѕС‚Р·С‹РІРѕРІ */
.reviews-slider-container {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 25px 0 40px;
}

.reviews-swiper {
    width: 100%;
    overflow: visible !important;
    padding: 20px 0 35px;
}

.review-slide {
    width: 420px !important;
    perspective: 1200px;
    cursor: grab;
}

.review-slide:active {
    cursor: grabbing;
}

/* РљР°СЂС‚РѕС‡РєР° РѕС‚Р·С‹РІР° */
.review-card {
    position: relative;
    background: rgba(16, 6, 30, 0.9);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 20px;
    padding: 30px 28px;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75),
                0 0 30px rgba(157, 78, 221, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.review-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Р¦РµРЅС‚СЂР°Р»СЊРЅР°СЏ Р°РєС‚РёРІРЅР°СЏ РєР°СЂС‚РѕС‡РєР° */
.swiper-slide-active .review-card {
    border-color: rgba(0, 245, 212, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(0, 245, 212, 0.12),
                inset 0 1px 2px rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.swiper-slide-active .review-card-glow {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.review-card:hover {
    border-color: rgba(199, 125, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 20px rgba(157, 78, 221, 0.18);
}

/* Р’РµСЂС…РЅСЏСЏ С‡Р°СЃС‚СЊ РєР°СЂС‚РѕС‡РєРё: РђРІР°С‚Р°СЂ Рё РёРЅС„Рѕ */
.review-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.review-avatar-box {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid #9d4edd;
    padding: 3px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
    flex-shrink: 0;
}

.review-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.review-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(157, 78, 221, 0.5);
    border: 2px solid #10061e;
}

.review-author-meta {
    flex-grow: 1;
}

.review-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.review-role {
    font-size: 0.8rem;
    color: #c77dff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Р—РІРµР·РґС‹ */
.review-stars {
    display: flex;
    gap: 4px;
    color: #ffb703;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

/* РўРµРєСЃС‚ РѕС‚Р·С‹РІР° */
.review-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-style: italic;
}

/* РџР»Р°С€РєР° СЂРµР»РёР·Р° Р°СЂС‚РёСЃС‚Р° */
.review-release-card {
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(199, 125, 255, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
}

.review-release-card:hover {
    border-color: rgba(199, 125, 255, 0.5);
    background: rgba(157, 78, 221, 0.1);
    transform: translateY(-2px);
}

.release-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.release-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c77dff;
    text-transform: uppercase;
}

.release-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.release-listen-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(24, 12, 38, 0.85);
    border: 1px solid rgba(199, 125, 255, 0.32);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-shrink: 0;
}

.release-listen-btn:hover {
    background: rgba(45, 20, 72, 0.95);
    border-color: rgba(199, 125, 255, 0.6);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 12px rgba(157, 78, 221, 0.25);
}

/* Р РµР№С‚РёРЅРі РѕС‚Р·С‹РІР° (Р·РІРµР·РґС‹) */
.review-rating {
    color: #ffb703;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* 1 Р·РІРµР·РґР° (РїР»РѕС…РѕР№ РѕС‚Р·С‹РІ) */
.review-rating-bad .star-active {
    color: #ff3366;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.6);
}

.review-rating-bad .star-dim {
    color: rgba(255, 255, 255, 0.2);
}

/* РЎС‚РёР»Рё РєР°СЂС‚РѕС‡РєРё M1klussshevskiy */
.review-card--m1k {
    border-color: rgba(255, 51, 102, 0.35);
}

.review-card--m1k:hover {
    border-color: rgba(255, 51, 102, 0.65);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 24px rgba(255, 51, 102, 0.25);
}

.swiper-slide-active .review-card--m1k {
    border-color: rgba(255, 51, 102, 0.75);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8),
                0 0 25px rgba(255, 51, 102, 0.25),
                inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.review-avatar-box--m1k {
    border-color: #ff3366 !important;
    box-shadow: 0 0 16px rgba(255, 51, 102, 0.55) !important;
}

.review-bad-badge {
    background: linear-gradient(135deg, #ff3366, #c9184a) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.8) !important;
    border: 2px solid #10061e !important;
}

.review-card-glow--bad {
    background: radial-gradient(circle, rgba(255, 51, 102, 0.28) 0%, transparent 70%) !important;
}

/* РђСѓРґРёРѕ-РїР»Р°С€РєР° СЂРµР»РёР·Р° */
.review-release-audio {
    margin-top: 15px;
    background: rgba(25, 8, 38, 0.65);
    border: 1px solid rgba(199, 125, 255, 0.3);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
}

.review-release-audio:hover {
    border-color: rgba(0, 245, 212, 0.5);
    background: rgba(0, 245, 212, 0.08);
}

/* РљРЅРѕРїРєР° РїСЂРѕСЃР»СѓС€РёРІР°РЅРёСЏ РїРµСЃРЅРё */
.m1k-play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b2cbf, #9d4edd);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.55);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    outline: none;
    padding: 0;
}

.m1k-play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 22px rgba(199, 125, 255, 0.85);
    border-color: #00f5d4;
    color: #00f5d4;
}

.m1k-play-btn.is-playing {
    background: linear-gradient(135deg, #00f5d4, #00bbf9);
    color: #05010d;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.8);
    animation: m1kPulse 1.2s infinite alternate;
}

@keyframes m1kPulse {
    from { transform: scale(1); box-shadow: 0 0 15px rgba(0, 245, 212, 0.6); }
    to { transform: scale(1.08); box-shadow: 0 0 28px rgba(0, 245, 212, 1); }
}

/* Р’СЃРїР»С‹РІР°СЋС‰РµРµ СѓРІРµРґРѕРјР»РµРЅРёРµ Рѕ С„Р°Р№Р»Рµ Р°СѓРґРёРѕ */
.m1k-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(20, 8, 35, 0.96);
    border: 1px solid rgba(255, 51, 102, 0.6);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 24px rgba(255, 51, 102, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.m1k-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.m1k-toast-icon {
    font-size: 1.1rem;
}

/* РќР°РІРёРіР°С†РёСЏ СЃС‚СЂРµР»РєРё */
.reviews-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(20, 12, 32, 0.85);
    border: 1px solid rgba(199, 125, 255, 0.32);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reviews-nav-btn:hover {
    background: rgba(38, 20, 60, 0.95);
    border-color: rgba(199, 125, 255, 0.6);
    color: #ffffff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65), 0 0 12px rgba(157, 78, 221, 0.22);
}

.reviews-prev { left: 20px; }
.reviews-next { right: 20px; }

/* РџР°РіРёРЅР°С†РёСЏ */
.reviews-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    border-radius: 5px;
    transition: all 0.35s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #c77dff;
    box-shadow: 0 0 12px #c77dff, 0 0 20px rgba(157, 78, 221, 0.8);
}

.reviews-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    gap: 10px;
}

/* РђРґР°РїС‚РёРІ РґР»СЏ Reviews */
@media (max-width: 992px) {
    .review-slide { width: 340px !important; }
    .review-card { height: 420px; padding: 24px 20px; }
    .reviews-title { font-size: 2rem; }
}

@media (max-width: 600px) {
    .review-slide { width: 290px !important; }
    .review-card { height: 410px; padding: 20px 16px; }
    .reviews-title { font-size: 1.6rem; }
    .reviews-prev { left: 5px; }
    .reviews-next { right: 5px; }
    .reviews-nav-btn { width: 38px; height: 38px; }
}


/* =========================================
   STUDIO ATMOSPHERE & GALLERY (BENTO GRID & LIGHTBOX)
   ========================================= */

.gallery-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle at center, rgba(35, 10, 68, 0.45) 0%, #05010a 85%);
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.gallery-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.08) 0%, rgba(199, 125, 255, 0.02) 50%, transparent 80%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.gallery-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    pointer-events: none;
    padding: 35px 24px 20px;
    box-sizing: border-box;
}

.gallery-header {
    text-align: center;
    margin-bottom: 0;
    padding: 0 20px;
    pointer-events: auto;
}

.gallery-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.12);
    border: 1px solid rgba(157, 78, 221, 0.45);
    border-radius: 30px;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.25);
    backdrop-filter: blur(8px);
}

.gallery-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 10px;
    color: #ffffff;
    margin: 0 0 10px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(157, 78, 221, 0.4);
}

.gallery-subtitle {
    font-size: clamp(0.88rem, 1.1vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    line-height: 1.6;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* ===================================================
   REACTBITS INFINITE 3D GRID MENU (WEBGL2) FULL SECTION
   =================================================== */
.infinite-menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
    z-index: 5;
    --infinite-menu-background: #090314;
    user-select: none;
}

.infinite-menu-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#ghost-fibers-canvas {
    position: absolute;
    top: -4%;
    left: -4%;
    width: 108%;
    height: 108%;
    display: block;
    outline: none;
    z-index: 0;
    pointer-events: none;
}

#infinite-grid-menu-canvas {
    cursor: grab;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
    display: block;
    z-index: 1;
}

#infinite-grid-menu-canvas:active {
    cursor: grabbing;
}

/* РќР°Р·РІР°РЅРёРµ Р°РєС‚РёРІРЅРѕР№ Р·РѕРЅС‹ СЃР»РµРІР° */
.face-title-box {
    position: absolute;
    top: 50%;
    left: 4vw;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    max-width: 320px;
    text-align: left;
}

.face-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #00f5d4;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 3px 10px;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

.face-title {
    user-select: none;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 25px rgba(199, 125, 255, 0.4);
    letter-spacing: -0.5px;
}

.face-title-box.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.face-title-box.inactive {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(-30px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

/* РћРїРёСЃР°РЅРёРµ Р°РєС‚РёРІРЅРѕР№ Р·РѕРЅС‹ СЃРїСЂР°РІР° */
.face-desc-box {
    position: absolute;
    top: 50%;
    right: clamp(28px, 5vw, 64px);
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    max-width: 290px;
    text-align: right;
}

.face-description {
    user-select: none;
    font-size: clamp(0.85rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.face-desc-box.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.face-desc-box.inactive {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(30px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

/* РљСЂСѓРіР»Р°СЏ РєРЅРѕРїРєР° РґРµР№СЃС‚РІРёСЏ РїРѕ С†РµРЅС‚СЂСѓ СЃРЅРёР·Сѓ */
.action-button {
    position: absolute;
    left: 50%;
    z-index: 15;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    border: 4px solid #090314;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.85), 0 0 20px rgba(157, 78, 221, 0.5);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
}

.action-button:hover {
    background: linear-gradient(135deg, #9d4edd 0%, #00f5d4 100%);
    box-shadow: 0 10px 30px rgba(0, 245, 212, 0.5), 0 0 25px rgba(157, 78, 221, 0.8);
    transform: translateX(-50%) scale(1.08);
}

.action-button-icon {
    user-select: none;
    position: relative;
    color: #ffffff;
    top: 1px;
    font-size: 24px;
    line-height: 1;
    margin: 0;
    font-weight: bold;
}

.action-button.active {
    bottom: 95px;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, bottom 0.5s ease;
}

.action-button.inactive {
    bottom: 20px;
    transform: translateX(-50%) scale(0.3);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.15s ease, opacity 0.15s ease, bottom 0.15s ease;
}

/* РџРѕРґСЃРєР°Р·РєР° СЃРЅРёР·Сѓ */
.infinite-menu-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: rgba(15, 6, 28, 0.7);
    border: 1px solid rgba(199, 125, 255, 0.25);
    border-radius: 20px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(8px);
    z-index: 5;
}

@media (max-width: 900px) {
    .gallery-content-wrapper {
        padding: 24px 16px 16px;
    }

    .gallery-title {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .gallery-subtitle {
        font-size: 0.85rem;
        max-width: 500px;
    }

    .face-title-box {
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
        max-width: 200px;
    }

    .face-desc-box {
        top: 50%;
        right: 16px;
        bottom: auto;
        transform: translateY(-50%);
        max-width: 200px;
        display: block;
    }

    .action-button.active {
        bottom: 76px;
    }

    .infinite-menu-hint {
        bottom: 55px;
        font-size: 0.68rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        overflow: hidden;
    }

    .gallery-content-wrapper {
        padding: 16px 12px 14px;
        justify-content: space-between;
    }

    .gallery-header {
        padding: 0 10px;
        margin-top: 5px;
    }

    .gallery-badge {
        font-size: 0.62rem;
        padding: 4px 12px;
        margin-bottom: 5px;
        letter-spacing: 2px;
    }

    .gallery-title {
        font-size: 1.5rem;
        letter-spacing: 5px;
        margin: 0;
    }

    /* РЎРєСЂС‹РІР°РµРј РґР»РёРЅРЅС‹Р№ РїРѕРґР·Р°РіРѕР»РѕРІРѕРє РЅР° РјРѕР±РёР»СЊРЅС‹С…, С‡С‚РѕР±С‹ РѕСЃРІРѕР±РѕРґРёС‚СЊ РІРµСЂС…РЅСЋСЋ Р·РѕРЅСѓ */
    .gallery-subtitle {
        display: none !important;
    }

    /* РўРµРєСЃС‚ РґР»СЏ РєР°СЂС‚РёРЅРѕРє РїРѕ Р±РѕРєР°Рј (left & right), СЃС‚СЂРѕРіРѕ РїРѕ С†РµРЅС‚СЂСѓ Y */
    .face-title-box {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        left: 8px !important;
        max-width: clamp(105px, 28vw, 130px) !important;
        text-align: left !important;
        padding: 8px 10px;
        background: rgba(10, 4, 18, 0.76);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(199, 125, 255, 0.28);
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
    }

    .face-title-box.active {
        opacity: 1 !important;
        transform: translateY(-50%) translateX(0) !important;
    }

    .face-title-box.inactive {
        opacity: 0 !important;
        transform: translateY(-50%) translateX(-20px) !important;
    }

    .face-badge {
        font-size: 0.52rem !important;
        padding: 2px 6px !important;
        margin-bottom: 4px !important;
        letter-spacing: 0.8px !important;
        border-radius: 8px !important;
        line-height: 1.2 !important;
        word-break: break-word;
    }

    .face-title {
        font-size: clamp(0.95rem, 3.2vw, 1.15rem) !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        letter-spacing: -0.2px !important;
        word-break: break-word;
    }

    .face-desc-box {
        display: block !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        right: 8px !important;
        left: auto !important;
        max-width: clamp(110px, 30vw, 140px) !important;
        text-align: right !important;
        padding: 8px 10px;
        background: rgba(10, 4, 18, 0.76);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(199, 125, 255, 0.28);
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
    }

    .face-desc-box.active {
        opacity: 1 !important;
        transform: translateY(-50%) translateX(0) !important;
    }

    .face-desc-box.inactive {
        opacity: 0 !important;
        transform: translateY(-50%) translateX(20px) !important;
    }

    .face-description {
        font-size: clamp(0.68rem, 2.3vw, 0.78rem) !important;
        line-height: 1.35 !important;
        color: rgba(255, 255, 255, 0.88) !important;
        font-weight: 400 !important;
        word-break: normal;
    }

    /* РљРЅРѕРїРєР° 4K РґРµР№СЃС‚РІРёСЏ РїРѕ С†РµРЅС‚СЂСѓ РЅР°Рґ С‚СѓСЂРѕРј */
    .action-button {
        width: 44px !important;
        height: 44px !important;
    }

    .action-button-icon {
        font-size: 18px !important;
    }

    .action-button.active {
        bottom: 56px !important;
        transform: translateX(-50%) scale(1) !important;
    }

    .action-button.inactive {
        bottom: 10px !important;
        transform: translateX(-50%) scale(0.3) !important;
    }

    /* РџРѕРґСЃРєР°Р·РєР° СЃРЅРёР·Сѓ СЃРєСЂС‹С‚Р° РЅР° РјРѕР±РёР»СЊРЅС‹С…, С‡С‚РѕР±С‹ РЅРµ РїРµСЂРµРєСЂС‹РІР°С‚СЊ РєРЅРѕРїРєСѓ Рё С‚СѓСЂ */
    .infinite-menu-hint {
        display: none !important;
    }

    /* РќРёР¶РЅСЏСЏ Р·РѕРЅР° CTA */
    .gallery-cta {
        margin-top: 0;
        gap: 6px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 4px;
    }

    .gallery-cta-text {
        display: none !important;
    }

    .gallery-tour-btn {
        padding: 7px 18px !important;
        font-size: 0.8rem !important;
        gap: 6px !important;
    }
}

.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    gap: 18px;
    width: 100%;
    pointer-events: auto;
}

.gallery-cta-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.gallery-tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(22, 12, 34, 0.8);
    border: 1px solid rgba(199, 125, 255, 0.32);
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.gallery-tour-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.gallery-tour-btn:hover::before {
    left: 100%;
}

.gallery-tour-btn:hover {
    background: rgba(36, 18, 56, 0.92);
    border-color: rgba(199, 125, 255, 0.6);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), 0 0 12px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.tour-btn-icon {
    display: flex;
    align-items: center;
    color: #c77dff;
    transition: transform 0.35s ease;
}

.gallery-tour-btn:hover .tour-btn-icon {
    transform: rotate(45deg);
    color: #ffffff;
}

.tour-btn-arrow {
    font-size: 1.1rem;
    color: #c77dff;
    transition: transform 0.35s ease;
}

.gallery-tour-btn:hover .tour-btn-arrow {
    transform: translateX(4px);
    color: #ffffff;
}

/* =========================================
   LIGHTBOX MODAL (РџРћР›РќРћР­РљР РђРќРќР«Р™ РџР РћРЎРњРћРўР )
   ========================================= */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 1, 10, 0.94);
    backdrop-filter: blur(15px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    max-width: min(90vw, 1100px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
    max-height: 80vh;
    max-width: 100%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transform: scale(0.97);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 1, 10, 0.95) 100%);
    pointer-events: none;
}

.lightbox-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c77dff;
    text-transform: uppercase;
}

.lightbox-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 4px 0 0;
    letter-spacing: 0.5px;
}

/* РљРЅРѕРїРєР° Р·Р°РєСЂС‹С‚РёСЏ вЂ” РІРІРµСЂС…-СЃРїСЂР°РІР° РѕС‚ РєРѕРЅС‚РµР№РЅРµСЂР° */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(22, 12, 36, 0.85);
    border: 1px solid rgba(199, 125, 255, 0.4);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(38, 20, 60, 0.95);
    border-color: rgba(199, 125, 255, 0.6);
    color: #ffffff;
    transform: scale(1.08) rotate(90deg);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 12px rgba(157, 78, 221, 0.22);
}

/* РЎС‚СЂРµР»РєРё вЂ” С„РёРєСЃРёСЂРѕРІР°РЅРЅС‹Рµ РїРѕ С†РµРЅС‚СЂСѓ СЌРєСЂР°РЅР°, РїРѕ СЃС‚РѕСЂРѕРЅР°Рј */
.lightbox-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(20, 12, 32, 0.85);
    border: 1px solid rgba(199, 125, 255, 0.32);
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-nav-btn:hover {
    background: rgba(38, 20, 60, 0.95);
    border-color: rgba(199, 125, 255, 0.6);
    color: #ffffff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65), 0 0 12px rgba(157, 78, 221, 0.22);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* РђРґР°РїС‚РёРІ РґР»СЏ РіР°Р»РµСЂРµРё */
@media (max-width: 992px) {
    .gallery-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-item.item-tall {
        grid-row: span 1;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-nav-btn { width: 42px; height: 42px; font-size: 1rem; }
}

@media (max-width: 600px) {
    .gallery-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 190px;
        gap: 12px;
    }
    .gallery-item.item-large,
    .gallery-item.item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-title { font-size: 1.8rem; }
    .gallery-cta {
        flex-direction: column;
        gap: 12px;
    }
    .gallery-section {
        padding: 40px 15px;
    }
    .lightbox-close { top: -40px; right: 5px; }
}

/* =========================================
   FAQ SECTION (REFINED OBSIDIAN STUDIO STYLE)
   ========================================= */
.faq-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.05) 0%, #05010a 75%);
    overflow: hidden;
    padding: 70px 20px;
    box-sizing: border-box;
}

.faq-bg-glow {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 450px;
    background: radial-gradient(ellipse, rgba(157, 78, 221, 0.05) 0%, transparent 70%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

.faq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
}

.faq-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.35);
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.faq-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    margin: 0 0 16px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c77dff 0%, #ffffff 50%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(157, 78, 221, 0.35);
}

.faq-subtitle {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 720px;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.faq-item {
    background: rgba(12, 8, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(20px);
}

.faq-item:hover {
    border-color: rgba(199, 125, 255, 0.25);
    background: rgba(16, 11, 26, 0.75);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
    border-color: rgba(157, 78, 221, 0.35);
    background: rgba(18, 12, 32, 0.85);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(157, 78, 221, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.faq-item.active .faq-question {
    color: #e0aaff;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
    background: rgba(199, 125, 255, 0.12);
    color: #ffffff;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: rgba(157, 78, 221, 0.2);
    border-color: rgba(199, 125, 255, 0.3);
    color: #c77dff;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    min-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #d0d0d0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer-content {
    padding: 0 24px 22px;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-title { font-size: 2rem; }
    .faq-question { font-size: 1rem; padding: 18px 20px; }
    .faq-answer-content { padding: 0 20px; }
    .faq-item.active .faq-answer-content { padding: 0 20px 20px; }
}

/* --- GLOBAL MOBILE ADAPTATION --- */
@media (max-width: 1024px) {
    /* Hide DAW button on mobile since it is PC only */
    #header-daw-btn { display: none !important; }
    
    .side-nav { display: none !important; }
    .hero-title { font-size: 2.5rem !important; }
    .hero-subtitle { font-size: 1rem !important; }
    .section-title, .about-title, .services-title, .showcase-title, .gear-title, .reviews-title, .gallery-title, .faq-title, .booking-title, .daw-promo-title { font-size: 1.8rem !important; font-weight: 300 !important; letter-spacing: 5px !important; text-align: center !important; }
    
    .daw-promo-container { flex-direction: column !important; gap: 35px !important; padding: 0 10px !important; }
    .daw-promo-content { flex: 1 1 100% !important; text-align: center !important; align-items: center !important; }
    .daw-promo-desc { text-align: center !important; max-width: 100% !important; }
    .daw-features-chips { justify-content: center !important; }
    .daw-promo-image-wrap { flex: 1 1 100% !important; width: 100% !important; }
    
    .booking-container { flex-direction: column !important; gap: 40px !important; background: transparent !important; box-shadow: none !important; border: none !important; padding: 0 !important; }
    .booking-left { width: 100% !important; text-align: center !important; align-items: center !important; display: flex; flex-direction: column; }
    .booking-desc { max-width: 100% !important; text-align: center !important; }
    .booking-perks { align-items: center !important; }
    .booking-perk-item { width: 100% !important; box-sizing: border-box !important; }
    .booking-right { width: 100% !important; justify-content: center !important; }
    .booking-form-container { max-width: 500px !important; width: 100% !important; padding: 30px 20px !important; margin: 0 auto; }
    
    .footer-content { flex-direction: column !important; align-items: center !important; justify-content: center !important; text-align: center !important; gap: 25px !important; width: 100% !important; margin: 0 auto !important; }
    .footer-links { display: flex !important; justify-content: center !important; align-items: center !important; flex-wrap: wrap !important; gap: 12px 20px !important; width: 100% !important; margin: 0 auto !important; text-align: center !important; }
    .footer-section { padding-top: 60px !important; width: 100% !important; align-items: center !important; justify-content: center !important; }
    
    .scroll-section:not(.gallery-section) { padding: 80px 15px 40px !important; height: auto !important; min-height: 100vh !important; flex-direction: column !important; justify-content: center !important; }
    .gallery-section { padding: 0 !important; height: 100vh !important; min-height: 100vh !important; overflow: hidden !important; }
    .hero { padding: 0 15px !important; justify-content: center !important; }
    
    /* Fix top header */
    .top-left-header { top: 15px !important; left: 15px !important; right: auto !important; width: auto !important; }
    .top-left-logo img { width: 24px !important; height: 24px !important; }
    .top-left-logo-text { font-size: 1rem !important; }
    
    .services-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .gallery-bento-grid { grid-template-columns: 1fr !important; grid-auto-rows: 200px !important; }
    .gear-card, .review-card { padding: 15px !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem !important; }
    .btn { padding: 12px 20px !important; font-size: 0.9rem !important; }
}

/* в”Ђв”Ђв”Ђ WORD-BY-WORD DE-BLUR ANIMATION (SCROLL REVEAL) в”Ђв”Ђв”Ђ */
.sr-text {
    display: block !important;
    transform-origin: 0% 50%;
    transform: rotate(1.2deg);
    transition: transform 0.3s ease;
}

.is-visible .sr-text,
.is-visible.sr-text {
    transform: rotate(0deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-word {
    display: inline-block;
    opacity: 0.12;
    filter: blur(5px);
    transform: translateY(6px);
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
    transition-delay: 0s;
    will-change: opacity, filter, transform;
}

.is-visible .sr-word,
.is-visible.sr-word {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: calc(min(var(--w-idx, 0) * 0.032s, 0.85s) + 0.12s);
}

/* Ensure hero subtitle container appears promptly so word reveal is visible */
.hero-subtitle.animate-on-scroll {
    transition-delay: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
    .sr-text {
        transform: none !important;
        transition: none !important;
    }
    .sr-word {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }
}


/* Gallery Swiper Cards */
.gallery-slider-container {
    width: 100%;
    overflow: visible;
    padding: 30px 0 50px;
    position: relative;
}

.gallery-swiper {
    width: 100%;
    overflow: visible !important;
    padding: 20px 0 45px;
}

/* Individual Slide Width for Swiper Coverflow */
.gallery-slide {
    width: 860px !important;
    max-width: 90vw;
    perspective: 1200px;
    cursor: grab;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-slide:active {
    cursor: grabbing;
}

.gallery-card {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 6, 26, 0.88);
    padding: 28px 32px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(157, 78, 221, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-slide.swiper-slide-active .gallery-card {
    border-color: rgba(199, 125, 255, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(157, 78, 221, 0.22);
}

.gallery-text-side {
    flex: 1;
    min-width: 260px;
    text-align: left;
}

.gallery-badge-text {
    color: #c77dff;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-card-title {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
    line-height: 1.25;
}

.gallery-card-desc {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.6;
}

.gallery-img-box {
    flex: 1.25;
    height: 330px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #06020c;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.gallery-slide:hover .gallery-img {
    transform: scale(1.025);
}

/* Gallery Navigation Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 7, 36, 0.9);
    border: 1px solid rgba(157, 78, 221, 0.45);
    color: #c77dff !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.25s ease;
}

.gallery-nav-btn::after {
    font-size: 18px !important;
    font-weight: 700;
}

.gallery-nav-btn:hover {
    background: rgba(157, 78, 221, 0.35);
    border-color: #c77dff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.5);
    color: #ffffff !important;
}

.gallery-nav-prev {
    left: 15px;
}

.gallery-nav-next {
    right: 15px;
}

/* Gallery Pagination */
.gallery-pagination {
    bottom: 8px !important;
}

.gallery-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.25s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: #c77dff;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(199, 125, 255, 0.8);
}

@media (max-width: 992px) {
    .gallery-slide {
        width: 720px !important;
    }
    .gallery-img-box {
        height: 290px;
    }
    .gallery-card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        width: 92vw !important;
        max-width: 460px;
    }
    .gallery-card {
        flex-direction: column-reverse;
        padding: 20px;
        gap: 18px;
    }
    .gallery-text-side {
        text-align: center;
        min-width: unset;
    }
    .gallery-img-box {
        width: 100%;
        height: 220px;
    }
    .gallery-card-title {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }
    .gallery-card-desc {
        font-size: 0.88rem;
    }
    .gallery-nav-btn {
        width: 38px;
        height: 38px;
    }
    .gallery-nav-btn::after {
        font-size: 14px !important;
    }
    .gallery-nav-prev { left: 4px; }
    .gallery-nav-next { right: 4px; }
}
