/* ==========================================================================
           1. ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ (Pixar Dark Theme)
           ========================================================================== */
        :root {
            --bg-deep: #121829;            /* Глубокий космический синий */
            --bg-card: rgba(24, 24, 37, 0.75); /* Полупрозрачные объемные плашки */
            --bg-card-hover: rgba(38, 38, 58, 0.9);
            --accent-purple: #7C3AED;      /* Магический фиолетовый */
            --accent-purple-glow: rgba(124, 58, 237, 0.4);
            --accent-turquoise: #06B6D4;   /* Светящийся бирюзовый */
            --accent-turquoise-glow: rgba(6, 182, 212, 0.4);
            
            --text-white: #FFFFFF;
            --text-gray: #E2E8F0;
            --text-muted: #94A3B8;

            --font-friendly: 'Rubik', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            
            --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-smooth: all 0.3s ease;
        }

        /* Кастомный скроллбар */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-deep);
        }
        ::-webkit-scrollbar-thumb {
            background: #2A2A3C;
            border-radius: 10px;
            border: 2px solid var(--bg-deep);
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-purple);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: var(--font-friendly);
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-gray);
            overflow-x: hidden;
            line-height: 1.6;
            font-size: 16px;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
            background-attachment: fixed;
        }

        section {
            padding: 100px 24px;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        h1, h2, h3, h4 {
            color: var(--text-white);
            font-weight: 700;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        h2::after {
            content: '';
            display: block;
            width: 60%;
            height: 6px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-turquoise));
            border-radius: 10px;
            margin: 12px auto 0 auto;
            box-shadow: 0 3px 10px rgba(6, 182, 212, 0.3);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ==========================================================================
           2. КОМПОНЕНТЫ И КНОПКИ (Bouncy & 3D Click)
           ========================================================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-bounce);
            border: none;
            outline: none;
            position: relative;
            gap: 10px;
            text-align: center;
            box-sizing: border-box;
        }

        .btn-purple {
            background: linear-gradient(135deg, #8B5CF6 0%, var(--accent-purple) 100%);
            color: var(--text-white);
            box-shadow: 
                0 4px 0px #5B21B6, 
                0 10px 25px rgba(124, 58, 237, 0.4);
            transform: translateY(-2px);
        }
        .btn-purple:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 
                0 6px 0px #5B21B6, 
                0 15px 30px rgba(124, 58, 237, 0.5);
        }
        .btn-purple:active {
            transform: translateY(2px) scale(0.98);
            box-shadow: 
                0 0px 0px #5B21B6, 
                0 4px 10px rgba(124, 58, 237, 0.3);
        }

        .btn-turquoise {
            background: linear-gradient(135deg, #0EA5E9 0%, var(--accent-turquoise) 100%);
            color: var(--bg-deep);
            font-weight: 700;
            box-shadow: 
                0 4px 0px #0369A1, 
                0 10px 25px rgba(6, 182, 212, 0.3);
            transform: translateY(-2px);
        }
        .btn-turquoise:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 
                0 6px 0px #0369A1, 
                0 15px 30px rgba(6, 182, 212, 0.4);
        }
        .btn-turquoise:active {
            transform: translateY(2px) scale(0.98);
            box-shadow: 
                0 0px 0px #0369A1, 
                0 4px 10px rgba(6, 182, 212, 0.2);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-white);
            border: 2px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-turquoise);
            box-shadow: 0 0 15px var(--accent-turquoise-glow);
            transform: translateY(-2px);
        }
        .btn-outline:active {
            transform: translateY(1px);
        }

        .card-glass {
            background: var(--bg-card);
            border: 1.5px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            padding: 30px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: var(--transition-bounce);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        .card-glass:hover {
            transform: translateY(-8px) scale(1.01);
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(124, 58, 237, 0.1);
            background: var(--bg-card-hover);
        }

        .sticker-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition-bounce);
        }
        .card-glass:hover .sticker-icon {
            transform: rotate(-10deg) scale(1.15);
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-turquoise));
        }
        .sticker-icon span {
            transition: var(--transition-bounce);
        }
        .card-glass:hover .sticker-icon span {
            transform: scale(1.2);
        }

        .chips-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 40px;
        }
        .chip {
            padding: 10px 22px;
            border-radius: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.08);
            color: var(--text-gray);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-bounce);
        }
        .chip:hover {
            transform: scale(1.05) translateY(-2px);
            border-color: var(--accent-purple);
            background: rgba(124, 58, 237, 0.1);
        }
        .chip.active {
            background: var(--accent-purple);
            color: var(--text-white);
            border-color: var(--accent-purple);
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
        }

        .demo-badge {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(124, 58, 237, 0.2));
            border: 1px solid var(--accent-turquoise);
            border-radius: 50px;
            padding: 8px 16px;
            font-size: 0.85rem;
            color: var(--accent-turquoise);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            animation: pulse-border 2s infinite ease-in-out;
        }

        @keyframes pulse-border {
            0%, 100% { border-color: rgba(6, 182, 212, 0.4); box-shadow: 0 0 5px rgba(6, 182, 212, 0.1); }
            50% { border-color: var(--accent-turquoise); box-shadow: 0 0 15px rgba(6, 182, 212, 0.3); }
        }

        /* ==========================================================================
           3. ШАПКА САЙТА (Header & Glass-Menu)
           ========================================================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 24px;
            transition: var(--transition-smooth);
        }

        header.scrolled {
            background: rgba(18, 24, 41, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            padding: 12px 24px;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--text-white);
            cursor: pointer;
            transition: var(--transition-bounce);
        }
        .logo:hover {
            transform: scale(1.03);
        }
        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--accent-turquoise) 0%, var(--accent-purple) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
            border: 2px solid rgba(255,255,255,0.1);
        }
        .logo-text span {
            color: var(--accent-turquoise);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 6px 0;
            color: var(--text-gray);
            transition: var(--transition-smooth);
        }
        .nav-links a:hover {
            color: var(--accent-turquoise);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent-turquoise);
            border-radius: 10px;
            transition: var(--transition-bounce);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            width: 30px;
            z-index: 1001;
        }
        .burger span {
            width: 100%;
            height: 3px;
            background-color: var(--text-white);
            border-radius: 10px;
            transition: var(--transition-smooth);
        }
        .burger.open span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .burger.open span:nth-child(2) {
            opacity: 0;
        }
        .burger.open span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* ==========================================================================
           4. ПЕРВЫЙ ЭКРАН (Hero Section - Interactive Character Showcase)
           ========================================================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            position: relative;
        }

        #hero-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none !important;
            touch-action: none;
            z-index: 0;
            opacity: 0.85;
        }

        .hero-container {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            pointer-events: auto;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #FFFFFF 50%, #C084FC 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Стенд с персонажами Pixar */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: auto;
            position: relative;
            width: 100%;
        }

        .character-showcase {
            background: rgba(24, 24, 37, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.08);
            border-radius: 32px;
            padding: 24px;
            width: 100%;
            max-width: 460px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.4),
                inset 0 0 20px rgba(255,255,255,0.05);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(1deg); }
        }

        .mascot-glow {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, rgba(124, 58, 237, 0.05) 60%, transparent 100%);
            border-radius: 50%;
            filter: blur(25px);
            z-index: 1;
            transition: var(--transition-smooth);
        }

        .showcase-main {
            width: 100%;
            height: 320px;
            border-radius: 20px;
            overflow: hidden;
            background: #0e111d;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .showcase-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-bounce);
        }

        .showcase-img.switching {
            transform: scale(0.8) rotate(-5deg);
            opacity: 0;
        }

        .showcase-placeholder {
            font-size: 5rem;
        }

        .showcase-info {
            text-align: center;
            padding: 0 10px;
            z-index: 2;
        }

        .showcase-info h4 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: var(--text-white);
            transition: var(--transition-smooth);
        }

        .showcase-info p {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin-bottom: 0;
            min-height: 48px;
            transition: var(--transition-smooth);
        }

        .showcase-selector {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            z-index: 2;
        }

        .selector-thumb {
            aspect-ratio: 1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: white;
            cursor: pointer;
            border: 3px solid transparent;
            transition: var(--transition-bounce);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        }

        .selector-thumb:hover {
            transform: scale(1.2) translateY(-4px);
        }

        .selector-thumb.active {
            border-color: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
            transform: scale(1.11);
        }

        /* ==========================================================================
           5. БЛОГ / ПОЛЕЗНОЕ
           ========================================================================== */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            min-height: 400px;
        }

        .blog-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-card-img {
            height: 200px;
            background: linear-gradient(135deg, #1E1B4B, #0F172A);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-card-img::before {
            content: '📖';
            font-size: 3.5rem;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
            animation: float-blog 4s ease-in-out infinite alternate;
        }

        @keyframes float-blog {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-10px) rotate(5deg); }
        }

        .blog-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .blog-tag {
            font-size: 0.75rem;
            padding: 4px 10px;
            background: rgba(6, 182, 212, 0.15);
            color: var(--accent-turquoise);
            border-radius: 20px;
            font-weight: 600;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }

        .blog-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .blog-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--text-white);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .read-more {
            color: var(--accent-turquoise);
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition-smooth);
        }
        .read-more:hover {
            color: var(--accent-purple);
            transform: translateX(4px);
        }

        /* ==========================================================================
           6. О ЦЕНТРЕ И УСЛУГИ
           ========================================================================== */
        .about-wrapper {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent-turquoise);
        }

        .about-text p {
            margin-bottom: 16px;
            font-size: 1.1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            border-top: 4px solid var(--accent-purple);
        }
        .service-card:nth-child(even) {
            border-top-color: var(--accent-turquoise);
        }

        .service-card h3 {
            margin-bottom: 12px;
            font-size: 1.4rem;
        }

        /* ==========================================================================
           7. КОМАНДА СПЕЦИАЛИСТОВ
           ========================================================================== */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .doctor-card {
            text-align: center;
            padding-top: 40px;
        }

        .doctor-avatar-wrapper {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin: 0 auto 20px auto;
            border: 4px solid rgba(255, 255, 255, 0.05);
            box-shadow: 
                0 8px 20px rgba(0,0,0,0.3),
                0 0 0 4px var(--accent-purple);
            overflow: hidden;
            transition: var(--transition-bounce);
            background: #1e1b4b;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .doctor-avatar-wrapper span {
            width: 80px;
            height: 80px;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .doctor-card:hover .doctor-avatar-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 
                0 15px 30px rgba(0,0,0,0.5),
                0 0 0 6px var(--accent-turquoise);
        }

        .doctor-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .doctor-name {
            font-size: 1.3rem;
            margin-bottom: 6px;
        }

        .doctor-spec {
            color: var(--accent-turquoise);
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .doctor-exp {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        /* ==========================================================================
           8. ЖИЗНЬ ЦЕНТРА & МЕРОПРИЯТИЯ
           ========================================================================== */
        .events-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .events-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .event-item {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .event-date-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-purple) 0%, #4c1d95 100%);
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .event-date-box span {
            font-size: 1.6rem;
            line-height: 1;
        }

        .event-date-box small {
            font-size: 0.75rem;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .event-item-info {
            flex-grow: 1;
        }

        .event-item-info h4 {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .event-meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            gap: 15px;
        }

        /* Галерея */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .gallery-img-wrapper {
            border-radius: 18px;
            overflow: hidden;
            height: 160px;
            position: relative;
            border: 2px solid rgba(255,255,255,0.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transition: var(--transition-bounce);
            cursor: pointer;
            background: #1e1b4b;
        }
        
        .gallery-img-wrapper::before {
            content: '✨';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
            z-index: 1;
            opacity: 0.3;
            transition: var(--transition-smooth);
        }

        .gallery-img-wrapper:hover {
            transform: scale(1.05) rotate(2deg);
            border-color: var(--accent-turquoise);
        }
        .gallery-img-wrapper:hover::before {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.3) rotate(15deg);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: var(--transition-smooth);
        }
        .gallery-img-wrapper:hover .gallery-img {
            opacity: 1;
        }

        /* ==========================================================================
           9. ОСОБАЯ ЗАБОТА (Деликатный блок с бирюзовой подсветкой)
           ========================================================================== */
        .special-care {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
            border: 2px solid rgba(6, 182, 212, 0.2);
            box-shadow: 
                0 0 40px rgba(6, 182, 212, 0.08),
                inset 0 0 20px rgba(124, 58, 237, 0.05);
            border-radius: 30px;
            padding: 50px;
            text-align: center;
            max-width: 1000px;
            margin: 60px auto;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
        }

        .special-care::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .care-content {
            position: relative;
            z-index: 1;
        }

        .care-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            animation: pulse-icon 2.5s infinite ease-in-out;
        }

        @keyframes pulse-icon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 0 15px var(--accent-turquoise)); }
        }

        .special-care h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #FFFFFF, var(--accent-turquoise));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .special-care p {
            font-size: 1.15rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 30px auto;
        }

        /* ==========================================================================
           10. КОНТАКТЫ & ФОРМА СВЯЗИ
           ========================================================================== */
        .contacts-wrapper {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: stretch;
        }

        .feedback-form {
            background: var(--bg-card);
            border: 2px solid rgba(255, 255, 255, 0.05);
            border-radius: 28px;
            padding: 40px;
            box-shadow: 0 20px 45px rgba(0,0,0,0.4);
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-white);
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            background: rgba(18, 24, 41, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 14px 18px;
            color: var(--text-white);
            font-size: 1rem;
            outline: none;
            transition: var(--transition-bounce);
        }

        .form-input:focus {
            border-color: var(--accent-purple);
            box-shadow: 0 0 15px rgba(124, 58, 237, 0.25);
            background: rgba(18, 24, 41, 0.9);
        }

        select.form-input {
            appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E2E8F0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 18px;
            padding-right: 45px;
        }

        .contact-info-block {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-card {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .info-card-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: rgba(6, 182, 212, 0.1);
            border: 1.5px solid rgba(6, 182, 212, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .info-card-details h5 {
            font-size: 1rem;
            color: var(--text-white);
            margin-bottom: 2px;
        }

        .info-card-details p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .messengers {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .messenger-btn {
            flex: 1;
            padding: 12px;
            border-radius: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.95rem;
            transition: var(--transition-bounce);
            text-align: center;
            box-shadow: 0 4px 0px rgba(0,0,0,0.15);
        }

        .telegram-btn {
            background: #0EA5E9;
            color: white;
            box-shadow: 0 4px 0px #0369A1;
        }
        .telegram-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 0px #0369A1;
        }
        .telegram-btn:active {
            transform: translateY(2px);
            box-shadow: 0 0px 0px #0369A1;
        }

        .whatsapp-btn {
            background: #22C55E;
            color: white;
            box-shadow: 0 4px 0px #15803D;
        }
        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 0px #15803D;
        }
        .whatsapp-btn:active {
            transform: translateY(2px);
            box-shadow: 0 0px 0px #15803D;
        }

        .map-mock {
            height: 220px;
            background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 100%);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            border: 2px solid rgba(255,255,255,0.05);
            box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .map-mock::before {
            content: '🗺️';
            font-size: 3rem;
            display: block;
            margin-bottom: 10px;
            animation: float 4s ease-in-out infinite;
        }

        /* ==========================================================================
           11. ПОДВАЛ (Footer)
           ========================================================================== */
        footer {
            background: #0C0F19;
            padding: 50px 24px;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--text-white);
        }

        .footer-nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            list-style: none;
        }

        .footer-nav a:hover {
            color: var(--accent-turquoise);
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.05);
            width: 100%;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
            line-height: 1.8;
        }

        .legal-links {
            display: flex;
            gap: 20px;
        }
        .legal-links a:hover {
            color: var(--text-white);
        }

        .disclaimer {
            font-size: 0.8rem;
            color: #475569;
            margin-top: 10px;
        }

        /* ==========================================================================
           12. МОДАЛЬНЫЕ ОКНА И ДИАЛОГИ (Glassmorphic Forms)
           ========================================================================== */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 24, 41, 0.88);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition-smooth);
            padding: 16px;
            box-sizing: border-box;
        }

        .modal.open {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            background: var(--bg-card);
            border: 2px solid rgba(124, 58, 237, 0.25);
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.5),
                0 0 30px rgba(124, 58, 237, 0.15);
            border-radius: 24px;
            width: 100%;
            max-width: 480px;
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 36px 28px;
            position: relative;
            transform: scale(0.85) rotate(-2deg);
            transition: var(--transition-bounce);
            box-sizing: border-box;
        }

        .modal.open .modal-content {
            transform: scale(1) rotate(0deg);
        }

        .close-modal {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255,255,255,0.08);
            border: none;
            color: var(--text-white);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-bounce);
            z-index: 10;
        }

        .close-modal:hover {
            background: var(--accent-purple);
            transform: rotate(90deg);
        }

        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            text-align: center;
        }

        /* ==========================================================================
           13. SKELETON LOADERS
           ========================================================================== */
        .skeleton {
            background: linear-gradient(90deg, #1E1B4B 25%, #2D2766 50%, #1E1B4B 75%);
            background-size: 200% 100%;
            animation: loading-shimmer 1.5s infinite;
            border-radius: 12px;
        }

        @keyframes loading-shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .skeleton-text {
            height: 16px;
            margin-bottom: 12px;
        }

        .skeleton-title {
            height: 24px;
            width: 70%;
            margin-bottom: 16px;
        }

        .skeleton-img {
            height: 180px;
            width: 100%;
            margin-bottom: 16px;
            border-radius: 16px;
        }

        /* ==========================================================================
           14. АДАПТИВНОСТЬ (Mobile-First)
           ========================================================================== */
        @media (max-width: 1024px) {
            .burger {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                max-width: 85vw;
                height: 100vh;
                background: rgba(18, 24, 41, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-left: 2px solid rgba(255,255,255,0.08);
                box-shadow: -15px 0 35px rgba(0,0,0,0.5);
                flex-direction: column;
                justify-content: flex-start;
                padding: 90px 30px 40px 30px;
                gap: 30px;
                transition: var(--transition-bounce);
                z-index: 999;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            .nav-links {
                flex-direction: column;
                gap: 20px;
                width: 100%;
            }

            .nav-links a {
                font-size: 1.15rem;
                display: block;
                padding: 6px 0;
            }

            .auth-actions {
                flex-direction: column;
                width: 100%;
                gap: 14px;
            }

            .auth-actions .btn {
                width: 100%;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero p {
                margin: 0 auto 30px auto;
            }

            .hero-btns {
                justify-content: center;
                flex-wrap: wrap;
                gap: 14px;
            }

            .hero-visual {
                order: -1;
            }

            .character-showcase {
                max-width: 100%;
            }

            .about-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .events-layout {
                grid-template-columns: 1fr;
            }

            .contacts-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 12px 16px;
            }

            .logo-text {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 1.7rem;
                margin-bottom: 35px;
            }

            .hero h1 {
                font-size: 1.85rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero-btns .btn {
                width: 100%;
            }

            section {
                padding: 50px 14px;
            }

            .showcase-selector {
                gap: 6px;
            }

            .selector-thumb {
                min-width: 42px;
                min-height: 42px;
                font-size: 1.05rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .modal {
                padding: 12px;
            }

            .modal-content {
                padding: 24px 16px;
                border-radius: 20px;
                max-height: 92vh;
            }

            .close-modal {
                top: 12px;
                right: 12px;
                width: 34px;
                height: 34px;
                font-size: 1.1rem;
            }

            .feedback-form {
                padding: 20px 16px;
                border-radius: 20px;
            }

            .special-care {
                padding: 25px 14px;
                border-radius: 20px;
            }

            .special-care h3 {
                font-size: 1.45rem;
            }

            .form-input, .form-select, select.form-input, textarea.form-input {
                font-size: 16px !important;
                padding: 12px 14px;
            }

            .admin-tabs {
                gap: 8px;
            }

            .admin-tab {
                padding: 8px 12px;
                font-size: 0.85rem;
            }
        }