@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Fredoka:wght@400;500;600;700&display=swap');

:root {
    --pink-50: #fff5fb;
    --pink-100: #ffe3f4;
    --pink-200: #ffc8e8;
    --pink-300: #ff9fd6;
    --pink-400: #ff72c2;
    --pink-500: #ff4daf;
    --pink-600: #e93498;
    --purple: #a855f7;
    --cream: #fff8e7;
    --yellow: #ffeaa7;
    --text: #5c2a4d;
    --muted: #8b5f7d;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(255, 77, 175, 0.22);
    --radius-xl: 34px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 200, 232, 0.95), transparent 36%),
        radial-gradient(circle at top right, rgba(255, 234, 167, 0.9), transparent 32%),
        linear-gradient(135deg, #fff5fb 0%, #ffe3f4 45%, #fff8e7 100%);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a,
button {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 18px;
    backdrop-filter: blur(18px);
    background: rgba(255, 245, 251, 0.82);
    border-bottom: 1px solid rgba(255, 114, 194, 0.22);
}

.nav {
    width: min(1120px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--pink-600);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.nav-links a,
.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    color: var(--text);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.56);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-button:hover {
    transform: translateY(-2px);
    background: var(--pink-400);
    color: var(--white);
}

.nav-links span {
    line-height: 1;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(255, 77, 175, 0.16);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--pink-600);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.section {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    padding: 76px 0;
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-card {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 42px;
    align-items: center;
    padding: 46px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 227, 244, 0.82)),
        radial-gradient(circle at 20% 20%, rgba(255, 234, 167, 0.8), transparent 32%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.88);
    position: relative;
    overflow: hidden;
}

.hero-card::before,
.hero-card::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 114, 194, 0.18);
    filter: blur(2px);
}

.hero-card::before {
    width: 170px;
    height: 170px;
    top: -70px;
    right: -50px;
}

.hero-card::after {
    width: 120px;
    height: 120px;
    bottom: -38px;
    left: 42%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.mini-title {
    margin: 0 0 8px;
    color: var(--pink-600);
    font-size: 1.25rem;
    font-weight: 800;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 16px;
    font-size: clamp(3.1rem, 8vw, 6.3rem);
    line-height: 0.9;
    color: var(--pink-600);
    letter-spacing: -1.5px;
    text-shadow: 3px 4px 0 rgba(255, 255, 255, 0.9);
}

.hero-text {
    max-width: 650px;
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--muted);
}

.hero-buttons,
.center {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-3px) rotate(-1deg);
}

.btn.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--purple));
    box-shadow: 0 14px 30px rgba(255, 77, 175, 0.28);
}

.btn.secondary {
    color: var(--pink-600);
    background: var(--white);
    box-shadow: 0 14px 28px rgba(255, 77, 175, 0.14);
}

.btn.ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 114, 194, 0.28);
}

.btn.wide {
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
}

.section-title p {
    margin-bottom: 6px;
    color: var(--pink-600);
    font-weight: 800;
    font-size: 1.18rem;
}

.section-title h2,
.section-title h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--text);
    text-shadow: 2px 3px 0 rgba(255, 255, 255, 0.85);
}

.story-card,
.about-badge-card,
.private-welcome,
.security-note {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.86);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    align-items: start;
}

.story-card p {
    font-size: 1.18rem;
    line-height: 1.68;
    color: var(--muted);
    margin-bottom: 16px;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.about-badge-card {
    position: sticky;
    top: 104px;
}

.badge-icon {
    display: inline-grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--pink-100), var(--yellow));
    font-size: 2.4rem;
    box-shadow: 0 12px 26px rgba(255, 77, 175, 0.15);
}

.about-badge-card h3 {
    margin-bottom: 14px;
    color: var(--pink-600);
    font-size: 1.55rem;
}

.about-badge-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-badge-card li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 700;
    border-bottom: 1px dashed rgba(255, 114, 194, 0.32);
}

.about-badge-card li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 10px;
}

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

.info-card,
.social-card,
.secret-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(255, 77, 175, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.social-card:hover,
.secret-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 24px 54px rgba(255, 77, 175, 0.24);
}

.info-card::after,
.social-card::after,
.secret-card::after {
    content: '♡';
    position: absolute;
    right: 18px;
    bottom: -16px;
    font-size: 5.5rem;
    color: rgba(255, 114, 194, 0.13);
}

.icon,
.social-card span,
.secret-card span,
.big-emoji,
.modal-lock-icon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--pink-100), var(--yellow));
    font-size: 2rem;
    box-shadow: 0 12px 26px rgba(255, 77, 175, 0.15);
}

.info-card h3,
.security-note h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
    color: var(--pink-600);
}

.info-card p,
.social-card small,
.secret-card small,
.private-welcome p,
.security-note p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 1.07rem;
}

.social-grid,
.secret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.secret-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 26px 0;
}

.social-card,
.secret-card {
    display: flex;
    flex-direction: column;
    color: var(--text);
    text-align: left;
}

.social-button-card {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.social-card strong,
.secret-card strong {
    font-size: 1.45rem;
    color: var(--pink-600);
    margin-bottom: 6px;
}

.password-form {
    margin-top: 22px;
    text-align: left;
}

.password-form label {
    display: block;
    margin: 0 0 8px 4px;
    color: var(--pink-600);
    font-size: 1.08rem;
    font-weight: 800;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

input[type='password'] {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    border: 2px solid rgba(255, 114, 194, 0.35);
    border-radius: 999px;
    outline: 0;
    font-size: 1.05rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.82);
    transition: border 0.18s ease, box-shadow 0.18s ease;
}

input[type='password']:focus {
    border-color: var(--pink-500);
    box-shadow: 0 0 0 5px rgba(255, 77, 175, 0.13);
}

.message {
    margin: 18px 0;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 800;
}

.message.error {
    color: #8a2346;
    background: #ffe1ec;
    border: 1px solid #ffb4cf;
}

.message.success {
    color: #3f6b2b;
    background: #e9ffd9;
    border: 1px solid #b8ec9a;
}

.private-main {
    min-height: calc(100vh - 160px);
}

.private-welcome {
    text-align: center;
}

.security-note {
    margin: 24px 0;
}

.footer {
    padding: 38px 18px;
    background: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 114, 194, 0.2);
}

.footer-inner {
    width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
}

.footer p {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--muted);
}

.footer-note {
    color: var(--pink-600);
    font-weight: 800;
}

.sparkles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.sparkles span {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 77, 175, 0.35);
    animation: float 8s ease-in-out infinite;
}

.sparkles span:nth-child(1) { left: 8%; top: 18%; animation-delay: 0s; }
.sparkles span:nth-child(2) { left: 82%; top: 22%; animation-delay: 1.2s; }
.sparkles span:nth-child(3) { left: 18%; top: 74%; animation-delay: 2.4s; }
.sparkles span:nth-child(4) { left: 72%; top: 68%; animation-delay: 3.1s; }
.sparkles span:nth-child(5) { left: 48%; top: 12%; animation-delay: 4.3s; }
.sparkles span:nth-child(6) { left: 92%; top: 82%; animation-delay: 5.2s; }

.kawaii-cat {
    position: relative;
    width: min(300px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    animation: bounceCat 3.4s ease-in-out infinite;
    z-index: 2;
}

.cat-face {
    position: absolute;
    inset: 46px 18px 18px;
    border-radius: 48% 48% 44% 44%;
    background: linear-gradient(135deg, #ffffff, #ffe3f4);
    border: 6px solid rgba(255, 114, 194, 0.55);
    box-shadow: 0 24px 48px rgba(255, 77, 175, 0.22);
}

.cat-ear {
    position: absolute;
    top: 34px;
    width: 88px;
    height: 88px;
    background: #ffffff;
    border: 6px solid rgba(255, 114, 194, 0.55);
    transform: rotate(45deg);
    border-radius: 24px 8px 24px 8px;
}

.cat-ear.left { left: 36px; }
.cat-ear.right { right: 36px; }

.bow {
    position: absolute;
    right: 32px;
    top: 12px;
    font-size: 3rem;
    transform: rotate(14deg);
    animation: wiggle 1.8s ease-in-out infinite;
}

.eyes {
    position: absolute;
    left: 58px;
    right: 58px;
    top: 96px;
    display: flex;
    justify-content: space-between;
}

.eyes span {
    width: 22px;
    height: 34px;
    border-radius: 999px;
    background: var(--text);
    box-shadow: inset 6px 7px 0 rgba(255, 255, 255, 0.82);
}

.nose {
    position: absolute;
    left: 50%;
    top: 132px;
    transform: translateX(-50%);
    color: var(--pink-600);
    font-size: 2.2rem;
    font-weight: 800;
}

.whiskers {
    position: absolute;
    top: 132px;
    color: var(--muted);
    font-size: 2.2rem;
}

.whiskers.left { left: 24px; }
.whiskers.right { right: 24px; transform: scaleX(-1); }

.private-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    padding: 22px;
}

.private-modal.is-open {
    display: grid;
    place-items: center;
}

.private-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(92, 42, 77, 0.38);
    backdrop-filter: blur(12px);
}

.private-modal-panel {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    max-height: min(760px, calc(100vh - 44px));
    overflow-y: auto;
    padding: 34px;
    border-radius: 34px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 227, 244, 0.96)),
        radial-gradient(circle at top left, rgba(255, 234, 167, 0.72), transparent 32%);
    box-shadow: 0 34px 90px rgba(92, 42, 77, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.92);
    animation: modalPop 0.22s ease-out;
}

.private-modal-panel h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
}

.modal-description {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.55;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--pink-600);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(255, 77, 175, 0.16);
}

.modal-close:hover {
    background: var(--pink-500);
    color: var(--white);
}

@keyframes modalPop {
    from { transform: translateY(18px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
    50% { transform: translateY(-28px) rotate(14deg); opacity: 0.8; }
}

@keyframes bounceCat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(14deg) scale(1); }
    50% { transform: rotate(-7deg) scale(1.08); }
}

@media (max-width: 980px) {
    .hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 24px;
        gap: 22px;
    }

    .hero-buttons,
    .center {
        justify-content: center;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-badge-card {
        position: static;
    }

    .cards,
    .social-grid,
    .secret-grid {
        grid-template-columns: 1fr 1fr;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .input-row .btn {
        width: 100%;
    }

    .kawaii-cat {
        width: 250px;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 0;
    }

    .site-header {
        padding: 10px 14px;
        overflow: visible;
    }

    .nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo {
        display: inline-flex;
        margin: 0;
        font-size: 1.42rem;
        text-align: left;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        z-index: 130;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
        border-radius: 26px;
        background: rgba(255, 245, 251, 0.96);
        border: 1px solid rgba(255, 114, 194, 0.26);
        box-shadow: 0 22px 54px rgba(92, 42, 77, 0.22);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    body.mobile-menu-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-links a,
    .nav-button {
        width: 100%;
        min-height: 56px;
        padding: 10px 14px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        border-radius: 18px;
        font-size: 1rem;
        line-height: 1.1;
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 8px 22px rgba(255, 77, 175, 0.12);
        text-align: left;
    }

    .nav-links span {
        width: 34px;
        height: 34px;
        display: inline-grid;
        place-items: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--pink-100), var(--yellow));
        font-size: 1.18rem;
        flex: 0 0 auto;
    }

    .nav-links b {
        display: block;
        overflow: visible;
        white-space: normal;
        text-overflow: unset;
    }

    .private-nav-links {
        grid-template-columns: 1fr;
    }

    .section {
        width: min(100% - 24px, 1120px);
        padding: 54px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 24px;
    }

    .hero-card {
        padding: 28px 18px;
        border-radius: 28px;
    }

    h1 {
        font-size: clamp(3.1rem, 16vw, 4.6rem);
    }

    .hero-text {
        font-size: 1.12rem;
    }

    .cards,
    .social-grid,
    .secret-grid {
        grid-template-columns: 1fr;
    }

    .story-card,
    .about-badge-card,
    .private-welcome,
    .security-note {
        padding: 24px;
        border-radius: 28px;
    }

    .story-card p {
        font-size: 1.08rem;
    }

    .info-card,
    .social-card,
    .secret-card {
        min-height: auto;
    }

    .private-modal {
        padding: 14px;
        align-items: end;
    }

    .private-modal.is-open {
        display: grid;
        place-items: end center;
    }

    .private-modal-panel {
        width: 100%;
        max-height: calc(100vh - 28px);
        padding: 28px 20px 24px;
        border-radius: 30px 30px 24px 24px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
    }

    .footer {
        padding-bottom: 38px;
    }
}

@media (max-width: 480px) {
    .kawaii-cat {
        width: 188px;
        transform-origin: center;
    }

    .cat-face {
        inset: 32px 12px 12px;
        border-width: 4px;
    }

    .cat-ear {
        top: 24px;
        width: 58px;
        height: 58px;
        border-width: 4px;
        border-radius: 18px 6px 18px 6px;
    }

    .cat-ear.left { left: 28px; }
    .cat-ear.right { right: 28px; }

    .bow {
        right: 20px;
        top: 8px;
        font-size: 2.1rem;
    }

    .eyes {
        left: 43px;
        right: 43px;
        top: 68px;
    }

    .eyes span {
        width: 16px;
        height: 25px;
        box-shadow: inset 4px 5px 0 rgba(255, 255, 255, 0.82);
    }

    .nose {
        top: 96px;
        font-size: 1.7rem;
    }

    .whiskers {
        top: 96px;
        font-size: 1.65rem;
    }

    .whiskers.left { left: 18px; }
    .whiskers.right { right: 18px; }

    .hero-card {
        gap: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title h2,
    .section-title h1 {
        font-size: 2.25rem;
    }
}

.private-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 18px;
    margin: 26px 0;
}

.private-panel {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(255, 77, 175, 0.15);
}

.private-panel::after {
    content: '♡';
    position: absolute;
    right: 18px;
    bottom: -16px;
    font-size: 5.5rem;
    color: rgba(255, 114, 194, 0.13);
    pointer-events: none;
}

.private-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.private-panel-header > span,
.photo-panel > span {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--pink-100), var(--yellow));
    font-size: 2rem;
    box-shadow: 0 12px 26px rgba(255, 77, 175, 0.15);
    flex: 0 0 auto;
}

.private-panel h3,
.photo-panel strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.45rem;
    color: var(--pink-600);
}

.private-panel p,
.photo-panel small,
.empty-video-list small {
    color: var(--muted);
    line-height: 1.55;
    font-size: 1.02rem;
}

.video-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.video-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    color: var(--text);
    background: rgba(255, 245, 251, 0.82);
    border: 1px solid rgba(255, 114, 194, 0.22);
    box-shadow: 0 8px 22px rgba(255, 77, 175, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-list-item:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 28px rgba(255, 77, 175, 0.16);
}

.video-play {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-300));
    color: #fff;
    font-size: 0.82rem;
    flex: 0 0 auto;
}

.video-title {
    font-weight: 900;
    color: var(--pink-600);
}

.empty-video-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 245, 251, 0.82);
    border: 1px dashed rgba(255, 114, 194, 0.42);
}

.empty-video-list strong {
    color: var(--pink-600);
}

.photo-panel {
    display: flex;
    align-items: center;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-panel .private-panel-header {
    margin-bottom: 0;
}

.photo-panel:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 24px 54px rgba(255, 77, 175, 0.24);
}

@media (max-width: 900px) {
    .private-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .private-panel {
        padding: 22px;
        border-radius: 28px;
    }

    .private-panel-header {
        align-items: flex-start;
    }

    .video-list-item {
        padding: 13px 14px;
    }
}
