        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            color: #fff;
            background:
                radial-gradient(circle at 10% 10%, rgba(255, 101, 208, 0.25), transparent 24%),
                radial-gradient(circle at 90% 12%, rgba(122, 92, 255, 0.23), transparent 24%),
                radial-gradient(circle at 40% 80%, rgba(0, 214, 255, 0.16), transparent 24%),
                linear-gradient(180deg, #12071f 0%, #180d2d 38%, #12081f 100%);
        }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; }

        .container {
            width: min(1180px, calc(100% - 28px));
            margin: 0 auto;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(15, 7, 28, 0.72);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            padding: 14px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: .4px;
        }

        .logo .pink { color: #ff70db; }
        .logo .blue { color: #86c6ff; }
        .pink { color: #ff70db; font-weight: bold;}
        .blue { color: #86c6ff; font-weight: bold;}
        .nav-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
section {
    scroll-margin-top: 65px;
}
        .nav-links a.nav-link {
            padding: 10px 14px;
            border-radius: 12px;
            color: rgba(255,255,255,0.9);
            font-weight: 700;
        }

        .nav-links a.nav-link:hover {
            background: rgba(255,255,255,0.07);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            cursor: pointer;
            padding: 14px 20px;
            border-radius: 16px;
            font-weight: 800;
            transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
        }

        .btn:hover { transform: translateY(-2px); }

        .btn-primary {
            background: linear-gradient(90deg, #ff62d7, #9c6cff);
            color: #fff;
            box-shadow: 0 12px 32px rgba(255, 98, 215, 0.22);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.11);
            color: #fff;
        }

        .yt-avatar {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            object-fit: cover;
            background: rgba(255,255,255,0.12);
            flex: 0 0 26px;
        }

        .section { padding: 42px 0; }

        .hero {
            padding: 68px 0 34px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.06fr 0.94fr;
            gap: 24px;
            align-items: center;
        }

        .pill {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        h1 {
            margin: 0 0 14px;
            font-size: clamp(34px, 5vw, 64px);
            line-height: 1.02;
        }

        .lead {
            margin: 0 0 22px;
            color: rgba(255,255,255,0.84);
            font-size: 18px;
            line-height: 1.68;
            max-width: 760px;
        }

        .action-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 22px;
        }

        .glass {
            background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            box-shadow: 0 18px 60px rgba(0,0,0,0.22);
        }

        .hero-card {
            padding: 26px;
            overflow: hidden;
            position: relative;
        }

        .hero-card::before {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            left: -70px;
            top: -70px;
            border-radius: 50%;
            background: rgba(255, 98, 215, 0.18);
            filter: blur(32px);
        }

        .hero-card::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            right: -70px;
            bottom: -70px;
            border-radius: 50%;
            background: rgba(80, 174, 255, 0.14);
            filter: blur(32px);
        }

        .hero-card > * { position: relative; z-index: 1; }

        .hero-card h3 {
            margin: 0 0 10px;
            font-size: 26px;
        }

        .hero-card p {
            margin: 0;
            color: rgba(255,255,255,0.82);
            line-height: 1.7;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .stat-box {
            padding: 18px;
            border-radius: 20px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.09);
        }

        .stat-num {
            font-size: 30px;
            font-weight: 900;
        }

        .stat-label {
            margin-top: 6px;
            color: rgba(255,255,255,0.72);
            font-size: 14px;
        }

        .section-title {
            margin: 0 0 10px;
            font-size: 34px;
        }

        .section-subtitle {
            margin: 0 0 24px;
            color: rgba(255,255,255,0.72);
            line-height: 1.7;
        }

        .content-card {
            padding: 26px;
        }

        .content-card p {
            margin: 0 0 14px;
            color: rgba(255,255,255,0.84);
            line-height: 1.8;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 20px;
            align-items: stretch;
        }

        .video-box {
            overflow: hidden;
            border-radius: 24px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .video-box iframe {
            width: 100%;
            aspect-ratio: 16/9;
            display: block;
            border: 0;
        }

        .video-caption {
            padding: 18px;
            color: rgba(255,255,255,0.86);
            line-height: 1.7;
        }

        .mini-card {
            padding: 22px;
        }

        .mini-card h3 {
            margin: 0 0 8px;
            font-size: 24px;
        }

        .mini-card p {
            margin: 0 0 14px;
            color: rgba(255,255,255,0.8);
            line-height: 1.75;
        }

.gallery-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px;
    width: 100%;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 calc(25% - 11px);
    min-width: calc(25% - 11px);
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .22s ease;
}

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

.gallery-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    flex: 0 0 46px;
}

.gallery-arrow:hover {
    background: rgba(255,255,255,0.14);
}

@media (max-width: 980px) {
    .gallery-slide {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
    }
}

@media (max-width: 680px) {
    .gallery-slide {
        flex: 0 0 calc(80% - 10px);
        min-width: calc(80% - 10px);
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
        flex: 0 0 40px;
    }
}

        .empty-gallery {
            padding: 24px;
            border-radius: 22px;
            background: rgba(255,255,255,0.05);
            border: 1px dashed rgba(255,255,255,0.18);
            color: rgba(255,255,255,0.72);
        }

        .form-card {
            padding: 26px;
        }

        form {
            display: grid;
            gap: 18px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .field label {
            display: block;
            margin-bottom: 8px;
            font-weight: 800;
            color: rgba(255,255,255,0.94);
        }

        .field input,
        .field select,
        .field textarea {
            width: 100%;
            background: rgba(255,255,255,0.08);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.11);
            border-radius: 16px;
            padding: 14px 16px;
            outline: none;
            font-size: 15px;
        }
.field select option {
    color: #111;
    background: #fff;
}
        .field textarea {
            resize: vertical;
            min-height: 120px;
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: rgba(255,255,255,0.45);
        }

        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .radio-card {
            position: relative;
        }

        .radio-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .radio-card label {
            display: block;
            min-width: 130px;
            text-align: center;
            padding: 14px 18px;
            border-radius: 16px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.11);
            cursor: pointer;
            font-weight: 800;
        }

        .radio-card input:checked + label {
            background: linear-gradient(90deg, rgba(255,98,215,0.28), rgba(156,108,255,0.28));
            border-color: rgba(255,98,215,0.46);
            box-shadow: 0 0 0 1px rgba(255,98,215,0.2) inset;
        }

        .hp-field {
            display: none !important;
        }

        .form-note {
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            line-height: 1.65;
        }

        .form-message {
            display: none;
            padding: 14px 16px;
            border-radius: 16px;
            font-weight: 800;
        }

        .form-message.success {
            display: block;
            background: rgba(64, 223, 157, 0.14);
            color: #c9ffe3;
            border: 1px solid rgba(64, 223, 157, 0.34);
        }

        .form-message.error {
            display: block;
            background: rgba(255, 92, 138, 0.14);
            color: #ffd5df;
            border: 1px solid rgba(255, 92, 138, 0.34);
        }

        footer {
            padding: 28px 0 44px;
            text-align: center;
            color: rgba(255,255,255,0.62);
        }

        @media (max-width: 980px) {
            .hero-grid,
            .featured-grid,
            .grid-2 {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 680px) {
            .nav {
                flex-direction: column;
                align-items: flex-start;
            }

            .stats,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                padding-top: 50px;
            }

            h1 {
                font-size: 38px;
            }
        }.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(8, 5, 18, 0.9);
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: background .18s ease, transform .18s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255,255,255,0.16);
    transform: scale(1.04);
}

.lightbox-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 680px) {
    .lightbox {
        padding: 14px;
    }

    .lightbox-nav {
        width: 46px;
        height: 46px;
        font-size: 28px;
    }

    .lightbox-close {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
}
		ul { list-style-type: none; padding: 0; }
        li { margin-bottom: 10px; padding-left: 25px; position: relative; }
        li::before { content: '✨'; position: absolute; left: 0; }