        :root {
            --bg1: #25060f; --bg2: #4a0f2a; --accent: #ff5d8f;
            --glow: rgba(255,93,143,0.5); --text: #ffffff; --particle: rgba(255,93,143,0.3);
        }
        body { background: var(--bg1); color: var(--text); }
        .nav { background: transparent; border-bottom: none; }
        .nav-logo { color: #ff5d8f; }
        .nav-links a { color: #ffd1e0; border-color: rgba(255,93,143,0.3); }
        .nav-links a:hover { background: rgba(255,93,143,0.2); color:#fff; border-color: rgba(255,93,143,0.6); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,93,143,0.3); }
        .footer { color: rgba(255,255,255,0.5); border-top: 1px solid rgba(255,93,143,0.15); }
        .footer a { color: #ff5d8f; }
        .src-link { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align:center; margin-top: 18px; }
        .src-link a { color: var(--accent); text-decoration: none; border-bottom: 1px dotted rgba(255,93,143,0.5); }

        /* Карточка «Мы?» — сгенерированная картинка пары над кнопкой «Поделиться» */
        .us-section { text-align: center; padding: 40px 0 0; }
        .us-card {
            display: inline-block; position: relative;
            width: 96vw; max-width: 440px;
            border-radius: 22px; overflow: hidden;
            box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,93,143,0.25);
            cursor: zoom-in;
            transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
        }
        .us-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 24px rgba(255,93,143,0.4); }
        .us-card img { display: block; width: 100%; height: auto; }
        .us-label {
            position: absolute; left: 0; right: 0; bottom: 0;
            padding: 44px 16px 16px;
            font-family: 'Montserrat', sans-serif; font-weight: 900;
            font-size: 1.4rem; color: #fff; text-align: center;
            text-shadow: 0 2px 16px rgba(0,0,0,0.65);
            background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
        }
