:root {
    --bg: #050505;
    --panel: #121212;
    --panel-2: #181818;
    --text: #e4e4e7;
    --muted: #a1a1aa;
    --accent: #f43f5e;
}

.brand-font {
    font-family: "Playfair Display", serif;
}

.hidden {
    display: none !important;
}

body.page-index {
    background: radial-gradient(1200px 600px at 20% -10%, rgba(244,63,94,0.12), transparent 60%), var(--bg);
    color: var(--text);
    font-family: Inter, sans-serif;
    min-height: 100vh;
}

body.page-index .site-header {
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

body.page-index .panel {
    background: linear-gradient(180deg, rgba(24,24,27,0.9), rgba(16,16,18,0.9));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
}

body.page-index .muted {
    color: var(--muted);
}

body.page-index .profile-card {
    min-height: 34rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0b0b0d;
}

body.page-index .profile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(36px);
    opacity: 0.33;
    transform: scale(1.06);
}

body.page-index .profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.94), rgba(0,0,0,0.35));
}

body.page-index .profile-inner {
    position: relative;
    z-index: 2;
}

body.page-index .avatar {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
}

body.page-index .bio {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
    overflow: hidden;
    color: #d4d4d8;
}

body.page-index .toast-wrap {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1080;
}

body.page-index #age-gate-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.84);
    backdrop-filter: blur(6px);
    z-index: 1200;
    padding: 1rem;
}

body.page-index .footer-links a {
    color: #a1a1aa;
    text-decoration: none;
}

body.page-index .footer-links a:hover {
    color: #e4e4e7;
}

body.page-index .skeleton {
    animation: pulse 1.4s ease-in-out infinite;
    min-height: 30rem;
}

@keyframes pulse {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

body.page-admin {
    background: #0a0a0a;
    color: #e4e4e7;
    font-family: Inter, sans-serif;
}

body.page-admin .admin-card {
    background: #16181b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
}

body.page-admin .table-dark {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255,255,255,0.02);
    --bs-table-hover-bg: rgba(255,255,255,0.04);
    --bs-table-color: #e4e4e7;
    --bs-table-border-color: rgba(255,255,255,0.08);
}

body.page-admin .table-head {
    background: rgba(0,0,0,0.3);
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

body.page-admin .muted {
    color: #9ca3af;
}

body.page-about,
body.page-privacy {
    background: #0a0a0a;
    color: #e4e4e7;
    font-family: Inter, sans-serif;
}

body.page-about .brand,
body.page-privacy .brand {
    font-family: "Playfair Display", serif;
}

body.page-about .panel,
body.page-privacy .panel {
    background: #161616;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1rem;
}

body.page-about a,
body.page-privacy a {
    color: #fda4af;
}

body.page-about a:hover,
body.page-privacy a:hover {
    color: #fecdd3;
}
