/* WEB PANEL PROXY public CSS */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: #0b0f1c;
            color: #eef2ff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* космический фон с анимированными звёздами */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse at 20% 50%, #141b33 0%, #070b15 100%);
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite alternate;
        }

        @keyframes twinkle {
            0% { opacity: 0.2; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1.2); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* header */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0 12px;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(120deg, #f9e05d, #ff9a56);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .logo i {
            color: #fbbf24;
            margin-right: 8px;
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            color: #fbbf24;
        }
        .btn-outline {
            border: 1.5px solid #fbbf24;
            padding: 8px 20px;
            border-radius: 40px;
            color: #fbbf24 !important;
            transition: 0.2s;
        }
        .btn-outline:hover {
            background: #fbbf24;
            color: #0b0f1c !important;
        }

        /* hero */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 50px 0 60px;
            gap: 40px;
        }

        .hero-content {
            flex: 1 1 400px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(251, 191, 36, 0.12);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #fbbf24;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.2rem;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f9e05d, #f97316);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero p {
            color: #94a3b8;
            font-size: 1.15rem;
            max-width: 500px;
            margin: 1.5rem 0 2rem;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin: 2rem 0 0;
        }
        .stat h4 {
            font-size: 2rem;
            color: #fbbf24;
            font-weight: 700;
        }
        .stat span {
            color: #94a3b8;
            font-size: 0.85rem;
        }

        .hero-image {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .hero-image .cat-astronaut {
            background: radial-gradient(circle at 30% 30%, #1e293b, #0f172a);
            border-radius: 60px 60px 40px 40px;
            padding: 20px 20px 10px;
            border: 1px solid #fbbf2433;
            box-shadow: 0 30px 50px -20px #fbbf2440;
            text-align: center;
            width: 100%;
            max-width: 380px;
            transform: rotate(-2deg);
            transition: 0.3s;
        }
        .hero-image .cat-astronaut:hover {
            transform: rotate(0deg) scale(1.01);
        }
        .cat-astronaut i {
            font-size: 7rem;
            color: #facc15;
            filter: drop-shadow(0 0 20px #fbbf2460);
        }
        .cat-astronaut .helmet {
            background: #1e293b;
            border-radius: 60px;
            padding: 8px 16px;
            display: inline-block;
            margin-top: 6px;
            border: 1px solid #facc1540;
        }
        .cat-astronaut .helmet i {
            font-size: 2.2rem;
            color: #a5b4fc;
            filter: none;
        }
        .cat-astronaut .tag {
            background: #facc1530;
            padding: 6px 14px;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.8rem;
            margin-top: 12px;
            color: #fde68a;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn-primary {
            background: linear-gradient(145deg, #fbbf24, #f59e0b);
            color: #0b0f1c;
            box-shadow: 0 10px 25px -8px #fbbf2460;
        }
        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 35px -10px #fbbf2480;
        }
        .btn-secondary {
            background: transparent;
            border: 1.5px solid #475569;
            color: #e2e8f0;
            margin-left: 12px;
        }
        .btn-secondary:hover {
            border-color: #fbbf24;
            color: #fbbf24;
        }

        /* секция · коты в скафандрах */
        .cats-section {
            padding: 70px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .section-title span {
            background: rgba(251, 191, 36, 0.1);
            padding: 0.2rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #fbbf24;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .section-title h2 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            margin-top: 0.8rem;
        }
        .section-title h2 i {
            color: #fbbf24;
            margin: 0 6px;
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.2rem;
        }

        .cat-card {
            background: #131c31;
            border-radius: 40px;
            padding: 1.8rem 1.5rem 2rem;
            text-align: center;
            border: 1px solid #2d3a52;
            transition: all 0.25s ease;
            backdrop-filter: blur(4px);
            box-shadow: 0 10px 25px -10px rgba(0,0,0,0.6);
        }
        .cat-card:hover {
            transform: translateY(-10px);
            border-color: #fbbf2480;
            box-shadow: 0 25px 40px -15px #fbbf2430;
        }

        .cat-card .cat-icon {
            font-size: 4.5rem;
            color: #facc15;
            margin-bottom: 0.8rem;
            display: block;
            filter: drop-shadow(0 0 12px #fbbf2440);
        }
        .cat-card .helmet-icon {
            font-size: 2.2rem;
            color: #93c5fd;
            margin: 0 6px;
        }
        .cat-card h3 {
            font-size: 1.5rem;
            margin: 0.5rem 0 0.3rem;
        }
        .cat-card .mission {
            color: #94a3b8;
            font-size: 0.9rem;
            margin: 0.5rem 0 1rem;
        }
        .cat-card .planet-tag {
            background: #1e2a44;
            border-radius: 30px;
            padding: 0.2rem 1.2rem;
            display: inline-block;
            font-size: 0.75rem;
            color: #a5b4fc;
        }

        /* галерея / миссии */
        .missions {
            padding: 40px 0 70px;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
        }
        .mission-item {
            background: #101a2b;
            border-radius: 28px;
            padding: 1.8rem 1.2rem;
            border: 1px solid #29344b;
            transition: 0.2s;
            text-align: center;
        }
        .mission-item:hover {
            border-color: #fbbf2470;
            background: #141f36;
        }
        .mission-item i {
            font-size: 3rem;
            color: #facc15;
            margin-bottom: 0.8rem;
        }
        .mission-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .mission-item p {
            color: #8896b5;
            font-size: 0.9rem;
        }

        /* CTA финальная */
        .cta {
            background: linear-gradient(145deg, #0f172a, #1a253f);
            border-radius: 60px;
            padding: 60px 30px;
            margin: 40px 0 60px;
            text-align: center;
            border: 1px solid #fbbf2420;
        }
        .cta h2 {
            font-size: 2.2rem;
        }
        .cta h2 i {
            color: #fbbf24;
        }
        .cta p {
            color: #94a3b8;
            max-width: 500px;
            margin: 0.8rem auto 2rem;
        }

        /* footer */
        footer {
            border-top: 1px solid #1f2a41;
            padding: 40px 0 28px;
            margin-top: 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .footer-brand .logo {
            font-size: 1.6rem;
        }
        .footer-social a {
            color: #94a3b8;
            font-size: 1.3rem;
            margin-left: 1.2rem;
            transition: 0.2s;
        }
        .footer-social a:hover {
            color: #fbbf24;
        }
        .copy {
            text-align: center;
            color: #475569;
            font-size: 0.85rem;
            margin-top: 20px;
        }

        /* адаптив */
        @media (max-width: 700px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .hero {
                flex-direction: column;
                text-align: center;
            }
            .hero p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-stats {
                justify-content: center;
            }
            .btn-secondary {
                margin-left: 0;
                margin-top: 8px;
            }
            .hero-image .cat-astronaut {
                max-width: 280px;
            }
        }

[data-wpp-style="wpp-0"]{color:#facc15;}
[data-wpp-style="wpp-1"]{font-size:1.8rem; margin-left:4px;}
[data-wpp-style="wpp-2"]{margin-top: 6px; font-size: 0.7rem; color:#94a3b8;}
[data-wpp-style="wpp-3"]{color:#facc15;}
[data-wpp-style="wpp-4"]{color:#f472b6;}
[data-wpp-style="wpp-5"]{color:#c084fc;}
[data-wpp-style="wpp-6"]{color:#60a5fa;}
[data-wpp-style="wpp-7"]{color:#93c5fd;}
[data-wpp-style="wpp-8"]{color:#fbbf24;}
[data-wpp-style="wpp-9"]{color:#facc15;}
[data-wpp-style="wpp-10"]{padding: 20px 0 10px;}
[data-wpp-style="wpp-11"]{display: flex; flex-wrap: wrap; gap: 30px; align-items: center; background: #111c31; border-radius: 48px; padding: 30px 30px; border:1px solid #2d3a52;}
[data-wpp-style="wpp-12"]{flex:1; min-width: 220px;}
[data-wpp-style="wpp-13"]{background: #fbbf2420; padding: 0.2rem 1.2rem; border-radius: 40px; font-size:0.8rem; color:#fbbf24;}
[data-wpp-style="wpp-14"]{margin-top: 0.8rem;}
[data-wpp-style="wpp-15"]{color:#facc15;}
[data-wpp-style="wpp-16"]{color:#94a3b8; margin: 1rem 0;}
[data-wpp-style="wpp-17"]{margin-top: 0.5rem;}
[data-wpp-style="wpp-18"]{flex:1; text-align: center;}
[data-wpp-style="wpp-19"]{font-size: 5rem; color: #facc15; opacity: 0.8;}
[data-wpp-style="wpp-20"]{font-size: 3rem; color: #93c5fd; margin-left: 8px;}
[data-wpp-style="wpp-21"]{display: flex; gap: 20px; justify-content: center; margin-top: 20px;}
[data-wpp-style="wpp-22"]{color:#fbbf24;}
[data-wpp-style="wpp-23"]{color:#a5b4fc;}
[data-wpp-style="wpp-24"]{color:#fbbf24;}
[data-wpp-style="wpp-25"]{color:#a5b4fc;}
[data-wpp-style="wpp-26"]{color:#facc15;}
[data-wpp-style="wpp-27"]{font-size: 0.85rem; color:#5b6d93;}
[data-wpp-style="wpp-28"]{display: none; position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(2, 6, 23, 0.85); backdrop-filter: blur(6px); align-items: center; justify-content: center; z-index: 999;}
[data-wpp-style="wpp-29"]{background: #131f38; max-width: 440px; width: 92%; border-radius: 40px; padding: 2rem 1.8rem; border: 1px solid #fbbf2440; box-shadow: 0 40px 60px -20px #000000cc;}
[data-wpp-style="wpp-30"]{float:right; background:none; border:none; font-size:2rem; color:#94a3b8; cursor:pointer;}
[data-wpp-style="wpp-31"]{font-size: 1.8rem; margin-bottom: 0.3rem;}
[data-wpp-style="wpp-32"]{color:#facc15;}
[data-wpp-style="wpp-33"]{color:#94a3b8; margin-bottom: 1.5rem;}
[data-wpp-style="wpp-34"]{width:100%; padding: 14px 18px; margin-bottom: 1rem; background: #0b1424; border: 1px solid #2d3a52; border-radius: 60px; color:white; font-family:inherit;}
[data-wpp-style="wpp-35"]{width:100%; padding: 14px 18px; margin-bottom: 1rem; background: #0b1424; border: 1px solid #2d3a52; border-radius: 60px; color:white; font-family:inherit;}
[data-wpp-style="wpp-36"]{width:100%; padding: 14px 18px; border-radius: 30px; background: #0b1424; border: 1px solid #2d3a52; color:white; font-family:inherit; margin-bottom: 1.2rem;}
[data-wpp-style="wpp-37"]{width:100%; justify-content:center;}
[data-wpp-style="wpp-38"]{font-size:0.7rem; color:#5b6d93; margin-top: 1rem; text-align:center;}