/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght@100..700&display=swap');

:root {
    /* Colors from Tailwind Config */
    --primary: #4FD1C5;
    --success: #4fd156;
    --accent: #FF7E67;
    --lavender: #B794F4;
    --background-dark: #0B0E14;
    --surface-dark: #161B26;
    --surface-border: #2D3748;

    /* Slate Palette (Tailwind approximation) */
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --white: #ffffff;
    --white-5: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);

    /* Border Radius */
    --rounded-xl: 1rem;
    --rounded-2xl: 1.5rem;
    --rounded-3xl: 2rem;
    --rounded-full: 9999px;

    /* Spacing/Sizing */
    --header-height: 80px;
}

/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background-dark);
    color: var(--slate-100);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utility Components from inline styles */
.glass-panel {
    background: rgba(22, 27, 38, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-mesh {
    background-color: var(--background-dark);
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 0.3) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 0.2) 0, transparent 50%),
        radial-gradient(at 0% 100%, hsla(174, 47%, 30%, 0.2) 0, transparent 50%);
}

/* Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 50;
    border-bottom: 1px solid var(--white-5);
}

.header-container {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    /* 7xl */
    margin: 0 auto;
}

@media (min-width: 1280px) {
    .header-container {
        padding: 1rem 2.5rem;
    }
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--rounded-3xl);
    background: linear-gradient(to bottom right, var(--primary), var(--lavender), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(79, 209, 197, 0.2);
}

.logo-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1280px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    color: var(--slate-300);
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.15s;
}

.nav-link:hover {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header-login {
    display: none;
    height: 2.75rem;
    padding: 0 1.75rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-3xl);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.15s;
}

.btn-header-login:hover {
    background-color: var(--white-10);
}

@media (min-width: 640px) {
    .btn-header-login {
        display: flex;
    }
}

.btn-mobile-menu {
    color: var(--white);
    display: block;
}

@media (min-width: 640px) {
    .btn-mobile-menu {
        display: none;
    }
}

/* Mobile Menu Active State */
.main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    padding: 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--white-5);
    z-index: 49;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
    /* pt-20 */
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    min-height: 90vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob-1 {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 400px;
    height: 400px;
    background-color: rgba(79, 209, 197, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.blob-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 126, 103, 0.1);
    border-radius: 50%;
    filter: blur(150px);
}

.blob-3 {
    position: absolute;
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    background-color: rgba(183, 148, 244, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 64rem;
    /* 5xl */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--rounded-full);
    border: 1px solid var(--white-10);
    background-color: var(--white-5);
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(12px);
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px #4FD1C5;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    color: var(--white);
    font-size: 3.75rem;
    /* 6xl */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6rem;
        /* 8xl */
    }
}

.gradient-text {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, var(--primary), var(--lavender), var(--accent));
}

.hero-description {
    color: var(--slate-400);
    font-size: 1.125rem;
    /* lg */
    font-weight: 500;
    line-height: 1.625;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1280px) {
    .hero-description {
        font-size: 1.5rem;
        /* 2xl */
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.btn-primary {
    display: flex;
    min-width: 240px;
    height: 4rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: var(--rounded-3xl);
    background-color: var(--primary);
    color: var(--background-dark);
    padding: 0 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 20px 25px -5px rgba(79, 209, 197, 0.2);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-glass {
    display: flex;
    min-width: 240px;
    height: 4rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: var(--rounded-3xl);
    /* glass-panel styles included via class, but base props here */
    color: var(--white);
    padding: 0 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-glass:hover {
    background-color: var(--white-10);
}

/* Feature Section */
.feature-section {
    position: relative;
    padding: 8rem 0;
    /* py-32 */
    background-color: var(--background-dark);
    border-top: 1px solid var(--white-5);
}

.feature-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1280px) {
    .feature-container {
        padding: 0 2.5rem;
    }
}

.feature-header {
    text-align: center;
    margin-bottom: 5rem;
}

.feature-title {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

@media (min-width: 1280px) {
    .feature-title {
        font-size: 3rem;
    }
}

.feature-subtitle {
    color: var(--slate-400);
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1280px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: var(--rounded-3xl);
    background-color: rgba(22, 27, 38, 0.4);
    /* surface-dark/40 */
    border: 1px solid var(--white-5);
    padding: 2.5rem;
    transition: all 0.5s;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
}

.feature-card.primary:hover {
    border-color: rgba(79, 209, 197, 0.3);
}

.feature-card.success:hover {
    border-color: rgba(79, 209, 107, 0.3);
}

.feature-card.lavender:hover {
    border-color: rgba(183, 148, 244, 0.3);
}

.feature-card.accent:hover {
    border-color: rgba(255, 126, 103, 0.3);
}

.feature-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: var(--rounded-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box.primary {
    background-color: rgba(79, 209, 197, 0.1);
    color: var(--primary);
}

.feature-icon-box.success {
    background-color: rgba(79, 209, 107, 0.1);
    color: var(--success);
}

.feature-icon-box.lavender {
    background-color: rgba(183, 148, 244, 0.1);
    color: var(--lavender);
}

.feature-icon-box.accent {
    background-color: rgba(255, 126, 103, 0.1);
    color: var(--accent);
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-card-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card-text {
    color: var(--slate-400);
    line-height: 1.625;
}

/* Footer */
.app-footer {
    border-top: 1px solid var(--white-5);
    background-color: var(--background-dark);
    padding: 2.5rem 0;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1280px) {
    .footer-container {
        padding: 0 2.5rem;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1280px) {
    .footer-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1280px) {
    .footer-brand {
        align-items: flex-start;
        text-align: left;
    }
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to bottom right, var(--primary), var(--lavender), var(--accent));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    color: var(--slate-600);
    font-size: 0.75rem;
    text-align: center;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1280px) {
    .footer-links-group {
        flex-direction: row;
    }
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--slate-500);
    font-size: 0.875rem;
    transition: color 0.15s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--slate-500);
    transition: color 0.15s;
}

.social-link:hover {
    color: var(--white);
}

/* Authentication Pages */

/* Auth Layout */
.auth-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 1rem 5rem;
    /* pt-32 pb-20 px-4 */
}

/* Back Link */
.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.15s;
}

.back-link:hover {
    color: var(--primary);
}

.back-link:hover .back-link-icon {
    transform: translateX(-0.25rem);
}

.back-link-icon {
    font-size: 1.25rem;
    transition: transform 0.15s;
}

/* Auth Card */
.auth-card {
    /* glass-panel base assumed via class */
    padding: 2rem;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 28rem;
    /* max-w-md */
    border: 1px solid var(--white-10);
}

@media (min-width: 1280px) {
    .auth-card {
        padding: 3rem;
    }
}

.auth-logo {
    width: 4rem;
    /* size-16 */
    height: 4rem;
    border-radius: var(--rounded-3xl);
    background: linear-gradient(to bottom right, var(--primary), var(--lavender), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(79, 209, 197, 0.3);
    margin-bottom: 2rem;
}

.auth-title {
    color: var(--white);
    font-size: 1.875rem;
    /* 3xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Forms */
.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* tracking-widest */
    color: var(--slate-500);
    margin-left: 0.25rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-500);
    transition: color 0.15s;
    pointer-events: none;
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary);
}

.form-input {
    width: 100%;
    height: 3.5rem;
    /* h-14 */
    background-color: var(--white-5);
    border: 1px solid var(--white-10);
    border-radius: var(--rounded-2xl);
    padding-left: 3rem;
    /* pl-12 */
    padding-right: 1rem;
    color: var(--white);
    outline: none;
    transition: all 0.15s;
}

.form-input::placeholder {
    color: var(--slate-600);
}

.form-input:focus {
    border-color: rgba(79, 209, 197, 0.5);
    /* primary/50 */
    background-color: var(--white-10);
}

.form-input.has-toggle {
    padding-right: 3rem;
    /* pr-12 */
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-500);
    transition: color 0.15s;
}

.password-toggle:hover {
    color: var(--white);
}

.btn-submit {
    width: 100%;
    height: 3.5rem;
    border-radius: var(--rounded-2xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--background-dark);
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1rem;
    box-shadow: 0 20px 25px -5px rgba(255, 126, 103, 0.2);
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.btn-submit:active {
    transform: scale(0.95);
}

.auth-footer {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.link-highlight {
    color: var(--primary);
    font-weight: 600;
    margin-left: 0.25rem;
    text-decoration: underline;
    text-decoration-color: rgba(79, 209, 197, 0.3);
    text-underline-offset: 4px;
    transition: color 0.15s;
}

.link-highlight:hover {
    color: var(--accent);
}

.link-secondary {
    color: var(--slate-500);
    transition: color 0.15s;
}

.link-secondary:hover {
    color: var(--slate-300);
}

.link-secondary span {
    color: var(--slate-400);
    font-weight: 500;
}

/* Step Indicators */
.step-indicators {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.step-dot {
    height: 0.375rem;
    /* 1.5 */
    width: 0.375rem;
    border-radius: 9999px;
    background-color: var(--slate-700);
}

.step-dot.active {
    width: 3rem;
    /* w-12 */
    background-color: rgba(79, 209, 197, 0.2);
}

/* Recovery Phrase Specific Styles */

/* Hint Box */
.hint-box {
    background-color: rgba(79, 209, 197, 0.03);
    /* primary/3 */
    border: 1px solid rgba(79, 209, 197, 0.1);
    border-radius: var(--rounded-2xl);
    padding: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

.hint-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hint-icon {
    color: var(--primary);
    font-size: 1.25rem;
    /* text-xl */
    margin-top: 0.125rem;
}

.hint-text {
    font-size: 0.75rem;
    /* text-xs */
    line-height: 1.625;
    /* leading-relaxed */
    color: var(--slate-300);
}

.hint-label {
    display: block;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Word Grid */
.word-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 1280px) {
    .word-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.word-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--rounded-xl);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.word-number {
    font-size: 0.625rem;
    /* 10px */
    font-weight: 700;
    color: var(--slate-500);
    width: 1rem;
}

.word-text {
    color: var(--slate-200);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    /* tracking-wide */
}

/* Confirmation Checkbox Area */
.confirmation-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.custom-checkbox {
    margin-top: 0.125rem;
    width: 1.25rem;
    /* size-5 */
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--white-5);
    color: var(--primary);
    cursor: pointer;
    appearance: none;
    /* Reset default appearance */
    display: grid;
    place-content: center;
}

.custom-checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--primary);
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.custom-checkbox:checked::before {
    transform: scale(1);
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--slate-400);
    cursor: pointer;
    user-select: none;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.15s;
    background: none;
    border: none;
    padding: 0;
}

.btn-download:hover {
    color: var(--white);
}

.btn-download-icon {
    font-size: 1.25rem;
    transition: transform 0.15s;
}

.btn-download:hover .btn-download-icon {
    transform: translateY(2px);
}

/* Recovery Input Grid */
.recovery-grid-container {
    width: 100%;
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 640px) {
    .recovery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* white/8 */
    border-radius: var(--rounded-xl);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.input-box:focus-within {
    border-color: rgba(79, 209, 197, 0.5);
    /* primary/50 */
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.1);
}

.input-box-large {
    padding: 1rem;
    /* p-4 */
}

.word-input-number {
    font-size: 0.625rem;
    /* 10px */
    font-weight: 700;
    color: var(--slate-600);
    width: 1rem;
    flex-shrink: 0;
}

.word-input {
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--slate-200);
    font-weight: 500;
    font-size: 0.875rem;
    /* text-sm */
    letter-spacing: 0.025em;
    /* tracking-wide */
    padding: 0;
    width: 100%;
}

.word-input:focus {
    box-shadow: none;
}

.word-input::placeholder {
    color: var(--slate-600);
}

.progress-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-bar-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.step-bar-active {
    height: 0.375rem;
    /* 1.5 */
    width: 3rem;
    /* w-12 */
    border-radius: 9999px;
    background-color: rgba(79, 209, 197, 0.8);
    /* primary/80 */
    box-shadow: 0 0 10px rgba(79, 209, 197, 0.3);
}

.step-bar-inactive {
    height: 0.375rem;
    width: 0.375rem;
    border-radius: 9999px;
    background-color: var(--slate-700);
}

/* Recovery Step 2 Specifics */

.glass-panel-light {
    background: rgba(22, 27, 38, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-gradient {
    background: radial-gradient(circle at 30% 30%, var(--slate-200) 0%, var(--lavender) 40%, var(--accent) 100%);
}

.tracking-ultra-wide {
    letter-spacing: 0.2em;
}

.step-bar-long {
    width: 8rem;
    /* w-32 */
}

.auth-card-lg {
    border-radius: 3rem;
    /* rounded-[3rem] */
}

@media (min-width: 1280px) {
    .auth-card-lg {
        padding: 3.5rem;
        /* p-14 */
    }
}

/* =========================================
   31b. Help Article Views – Base + Components
   ========================================= */

/* --- Utilities & Global Effects --- */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: block;
}

.icon-filled {
    font-variation-settings: 'FILL' 1;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    outline: none;
    transition: all 0.3s;
}

.glass-input:focus {
    border-color: rgba(79, 209, 197, 0.5);
    box-shadow: 0 0 0 1px rgba(79, 209, 197, 0.5);
}

.text-primary {
    color: var(--primary);
}

/* --- Glass Card --- */

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(79, 209, 197, 0.3);
    transform: translateY(-2px);
}

/* --- Home Feed Column (used by some help layouts) --- */

.home-feed-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 5rem;
}

/* --- Glow Blobs --- */

.glow-blob {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

.glow-blob.teal {
    background: radial-gradient(circle, rgba(79, 209, 197, 0.08) 0%, transparent 70%);
}

.glow-blob.purple {
    background: radial-gradient(circle, rgba(183, 148, 244, 0.08) 0%, transparent 70%);
}

.glow-blob.mob-top {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
}

.glow-blob.mob-bottom {
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
}

.glow-blob.desk-top {
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.05) 0%, transparent 70%);
}

.glow-blob.desk-bottom {
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 148, 244, 0.05) 0%, transparent 70%);
}

/* --- Mobile Sticky Nav --- */

.mobile-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-back-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.breadcrumbs-mobile {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text-slate-500);
}

.breadcrumbs-mobile span.active {
    color: var(--text-slate-400);
}

/* --- Article Content Base --- */

.article-container {
    padding: 2rem 1.5rem;
}

.article-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-lead {
    font-size: 1.125rem;
    color: var(--text-slate-200);
    font-weight: 500;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.article-h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-p {
    color: var(--text-slate-300);
    line-height: 1.625;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* --- Pro Tip Card --- */

.pro-tip-card {
    margin: 2rem 0;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(79, 209, 197, 0.3);
    background: rgba(79, 209, 197, 0.05);
}

.pro-tip-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pro-tip-text h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.pro-tip-text p {
    font-size: 0.875rem;
    color: var(--text-slate-300);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* --- Feedback Section & Vote Buttons --- */

.feedback-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.feedback-label {
    color: var(--text-slate-400);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.feedback-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.btn-vote {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-vote:active {
    transform: scale(0.95);
}

.btn-vote.up:hover {
    background: rgba(79, 209, 197, 0.2);
    color: var(--primary);
}

.btn-vote.down:hover {
    background: rgba(255, 126, 103, 0.2);
    color: var(--accent);
}

/* --- Bottom Sheet (Mobile Chapters) --- */

.sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    max-height: 80vh;
    overflow-y: auto;
    margin: 0 auto;
    max-width: 412px;
}

#chapters-toggle {
    display: none;
}

#chapters-toggle:checked~.sheet-overlay {
    opacity: 1;
    pointer-events: auto;
}

#chapters-toggle:checked~.bottom-sheet {
    transform: translateY(0);
}

.sheet-handle {
    width: 3rem;
    height: 0.375rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    margin: 1rem auto;
}

.sheet-content {
    padding: 0 1.5rem 2.5rem 1.5rem;
}

.sheet-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.chapter-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chapter-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: background 0.2s;
}

.chapter-item.active {
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.2);
    color: var(--primary);
}

.chapter-item:not(.active) {
    color: var(--text-slate-400);
}

.btn-close-sheet {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: var(--text-slate-400);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    margin-top: 2rem;
    cursor: pointer;
}

/* --- FAB Chapters Toggle --- */

.fab-chapters {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--primary), var(--lavender));
    color: #0F111A;
    padding: 0.875rem 1.25rem;
    border-radius: 99px;
    font-weight: 800;
    box-shadow: 0 20px 25px -5px rgba(79, 209, 197, 0.2);
    transition: transform 0.2s;
    cursor: pointer;
}

.fab-chapters:active {
    transform: scale(0.95);
}

/* --- Desktop Article Layout --- */

.desktop-layout-container {
    padding-top: 5rem;
    display: flex;
    min-height: 100vh;
}

.support-sidebar {
    width: 25%;
    position: sticky;
    top: 5rem;
    height: calc(100vh - 5rem);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-content {
    padding: 2rem;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
    cursor: pointer;
}

.sidebar-nav-item.active {
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.2);
    color: var(--primary);
}

.sidebar-nav-item:not(.active) {
    color: var(--text-slate-400);
}

.sidebar-nav-item:not(.active):hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.breadcrumbs-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-slate-500);
    margin-bottom: 2rem;
}

.bread-link:hover {
    color: var(--primary);
}

.article-max-width {
    max-width: 56rem;
}

/* Typography Desktop Overrides */
@media (min-width: 1280px) {
    .mobile-support-wrapper {
        display: none;
    }

    .desktop-support-wrapper {
        display: block;
    }

    .article-title {
        font-size: 3rem;
        letter-spacing: -0.025em;
        margin-bottom: 2rem;
    }

    .article-lead {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .article-h2 {
        font-size: 1.5rem;
    }

    .article-p {
        color: var(--text-slate-400);
    }

    .pro-tip-card {
        padding: 1.5rem;
    }

    .feedback-section {
        margin-top: 4rem;
        padding-top: 2.5rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        text-align: left;
    }

    .feedback-label {
        margin-bottom: 0;
        color: var(--text-slate-300);
    }

    .btn-vote {
        width: auto;
        height: auto;
        padding: 0.5rem;
        border-radius: 0.5rem;
    }
}

@media (min-width: 1280px) {
    .support-main-content {
        width: 75%;
    }

    .home-feed-column {
        grid-column: span 6;
        gap: 1.5rem;
        padding-bottom: 5rem;
    }
}

/* =========================================
   32. Support Dashboard View
   ========================================= */

/* --- Mobile Specific Layout --- */
.mobile-support-view {
    display: block;
    /* md:hidden logic handled via media query usually, or inline styles/classes */
    width: 100%;
    padding-bottom: 3rem;
    position: relative;
    background-color: var(--indigo-deep);
}

.mob-support-main {
    padding: 3rem 1.25rem;
    /* pt-12 px-5 */
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* space-y-12 */
}

/* --- Desktop Specific Layout --- */
.desktop-support-view {
    display: none;
    /* Hidden on mobile */
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-color: var(--indigo-deep);
}

.desk-support-main {
    padding-top: 8rem;
    /* pt-32 */
    padding-bottom: 5rem;
    /* pb-20 */
}

.desk-content-max {
    max-width: 72rem;
    /* max-w-6xl */
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    /* space-y-20 */
}

/* --- Hero & Search Section (Shared/Adaptive) --- */
.support-hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.desk-content-max .support-hero-section {
    gap: 2rem;
}

.support-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 800;
    color: white;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.support-subtitle {
    color: var(--text-slate-400);
    font-size: 0.875rem;
    /* text-sm */
    padding: 0 1rem;
}

.support-search-wrapper {
    position: relative;
    width: 100%;
}

.desk-search-container {
    max-width: 48rem;
    /* max-w-3xl */
    margin: 0 auto;
}

.input-icon-left {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-slate-400);
    pointer-events: none;
    font-size: 1.25rem;
}

.icon-lg {
    font-size: 1.5rem;
    left: 1.5rem;
}

.support-search-input {
    width: 100%;
    height: 3.5rem;
    /* h-14 */
    padding-left: 3rem;
    padding-right: 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.support-search-input-lg {
    height: 4rem;
    /* h-16 */
    padding-left: 4rem;
    padding-right: 1.5rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    /* text-xl */
}

/* --- Quick Links Grid --- */
.support-grid-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    /* p-5 */
    border-radius: 1rem;
    cursor: pointer;
}

/* Desktop Grid Variation */
.desk-grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.support-card-center {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    /* p-8 */
    border-radius: 1.5rem;
    /* rounded-3xl */
    transition: transform 0.2s;
}

.support-card-center:hover .icon-box-lg {
    transform: scale(1.1);
}

.icon-box-md {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box-lg {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

/* Colors for icons */
.bg-primary-soft {
    background: rgba(79, 209, 197, 0.1);
    color: var(--primary);
}

.bg-accent-soft {
    background: rgba(255, 126, 103, 0.1);
    color: var(--accent);
}

.bg-lavender-soft {
    background: rgba(183, 148, 244, 0.1);
    color: var(--lavender);
}

.bg-emerald-soft {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-400);
}

.card-text-group h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.card-text-group h3.lg {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-text-group p {
    font-size: 0.75rem;
    color: var(--text-slate-400);
}

.card-text-group p.lg {
    font-size: 0.875rem;
}


/* --- FAQ & Contact Split Section --- */
.split-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* FAQ Accordion */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 */
}

.section-header-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header-row h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.section-header-row h2.lg {
    font-size: 1.875rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 1rem;
    overflow: hidden;
    transition: background-color 0.2s;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-summary {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    /* Removes default triangle */
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.desk-pad-lg {
    padding: 1.5rem;
}

.faq-question {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-slate-200);
}

.faq-question.lg {
    font-size: 1.125rem;
}

.chevron-icon {
    color: var(--text-slate-500);
    transition: transform 0.3s;
}

/* Rotation logic */
.faq-item[open] .chevron-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.75rem;
    color: var(--text-slate-400);
    line-height: 1.6;
}

.faq-answer.lg {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1rem;
}

/* Contact Form */
.contact-card {
    padding: 1.5rem;
    /* p-6 */
    border-radius: 1.5rem;
    /* rounded-3xl */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card.lg {
    padding: 2.5rem;
    gap: 2rem;
}

.form-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.form-header h2.lg {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.75rem;
    color: var(--text-slate-400);
}

.form-header p.lg {
    font-size: 1rem;
}

.contact-form-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* space-y-5 */
}

.contact-form-stack.lg {
    gap: 1.5rem;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.label-mini {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.label-mini.lg {
    font-size: 0.875rem;
}

.select-wrapper {
    position: relative;
}

.form-select {
    width: 100%;
    height: 2.75rem;
    padding: 0 1rem;
    border-radius: 0.75rem;
    appearance: none;
    color: var(--text-slate-200);
    background-color: rgba(22, 27, 38, 0.4);
    font-size: 0.75rem;
}

.form-select.lg {
    height: 3rem;
    font-size: 1rem;
}

.select-chevron {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-slate-500);
}

.form-input-std {
    width: 100%;
    height: 2.75rem;
    padding: 0 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
}

.form-input-std.lg {
    height: 3rem;
    font-size: 1rem;
}

.form-textarea-std {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    resize: none;
}

.form-textarea-std.lg {
    font-size: 1rem;
}

.btn-submit-gradient {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(79, 209, 197, 0.1);
    transition: transform 0.2s;
}

.btn-submit-gradient:active {
    transform: scale(0.95);
}

.btn-submit-gradient.lg {
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

/* --- Footer --- */
.support-footer-mob {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    text-align: center;
}

.brand-footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.brand-box-xs {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(to bottom right, var(--primary), var(--lavender), var(--accent));
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy {
    font-size: 10px;
    color: var(--text-slate-600);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.support-footer-desk {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-inner-desk {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-slate-500);
    font-size: 0.875rem;
}

.footer-links-row {
    display: flex;
    gap: 2rem;
}

.f-link {
    transition: color 0.2s;
}

.f-link:hover {
    color: var(--primary);
}

/* --- Media Query for View Switching --- */
@media (min-width: 1280px) {
    .mobile-support-view {
        display: none;
    }

    .desktop-support-view {
        display: block;
    }

    /* Grid Layouts adjustments for desktop */
    .desk-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .support-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1280px) {
    .desk-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .split-layout-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        align-items: start;
    }
}

/* ─── News Page ─── */
.news-section {
    padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
    min-height: 100vh;
}

.news-container {
    max-width: 80%;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--rounded-full);
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.15), rgba(183, 148, 244, 0.15));
    margin-bottom: 1rem;
}

.news-header-icon .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--primary);
}

.news-title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.news-subtitle {
    color: var(--slate-400);
    font-size: 1.05rem;
}

.news-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    text-align: center;
    border-radius: var(--rounded-2xl);
    color: var(--slate-400);
}

.news-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Card */
.news-card {
    position: relative;
    border-radius: var(--rounded-2xl);
    padding: 1.5rem;
    padding-right: 4rem;
    border: 1px solid var(--surface-border);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    border-color: rgba(79, 209, 197, 0.3);
    box-shadow: 0 0 24px rgba(79, 209, 197, 0.06);
}

.news-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.news-card-icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--rounded-xl);
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.12), rgba(183, 148, 244, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    /* Position icon in top-right corner */
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.news-card-icon-box .material-symbols-outlined {
    font-size: 1.15rem;
    color: var(--primary);
}

.news-card-meta {
    flex: 1;
    min-width: 0;
}

.news-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--slate-500);
}

/* Markdown body */
.news-card-body.markdown-body {
    color: var(--slate-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4 {
    color: var(--slate-100);
    margin: 1.25rem 0 0.5rem;
    font-weight: 600;
}

.markdown-body h1 { font-size: 1.4rem; }
.markdown-body h2 { font-size: 1.2rem; }
.markdown-body h3 { font-size: 1.05rem; }
.markdown-body h4 { font-size: 0.95rem; }

.markdown-body p {
    margin-bottom: 0.75rem;
}

.markdown-body strong {
    color: var(--slate-100);
    font-weight: 600;
}

.markdown-body em {
    font-style: italic;
    color: var(--slate-300);
}

.markdown-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.markdown-body a:hover {
    color: var(--lavender);
}

.markdown-body code {
    background: var(--white-5);
    border: 1px solid var(--surface-border);
    border-radius: 4px;
    padding: 0.15em 0.4em;
    font-size: 0.88em;
    font-family: 'Courier New', monospace;
    color: var(--primary);
}

.markdown-body pre {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--surface-border);
    border-radius: var(--rounded-xl);
    padding: 1rem 1.25rem;
    overflow-x: auto;
    margin: 0.75rem 0;
}

.markdown-body pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--slate-300);
    font-size: 0.85rem;
}

.markdown-body blockquote {
    border-left: 3px solid var(--primary);
    padding: 0.5rem 1rem;
    margin: 0.75rem 0;
    color: var(--slate-400);
    background: var(--white-5);
    border-radius: 0 var(--rounded-xl) var(--rounded-xl) 0;
}

.markdown-body ul,
.markdown-body ol {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.markdown-body li {
    margin-bottom: 0.35rem;
}

.markdown-body hr {
    border: none;
    border-top: 1px solid var(--surface-border);
    margin: 1.25rem 0;
}

.markdown-body img.md-img {
    max-width: 100%;
    border-radius: var(--rounded-xl);
    margin: 0.75rem 0;
}

/* Responsive: hide timeline on small screens */
@media (max-width: 640px) {
    .news-section {
        padding: calc(var(--header-height) + 1rem) 1rem 3rem;
    }

    .news-title {
        font-size: 1.75rem;
    }

    .news-timeline::before {
        display: none;
    }

    .news-card {
        padding-right: 3.5rem;
    }
}

/* ── Extracted inline utilities ── */
.icon-lg {
    font-size: 2.25rem;
}

.icon-sm {
    font-size: 14px;
}

.icon-empty {
    font-size: 3rem;
    color: var(--slate-500);
}

.text-slate-400 {
    color: var(--slate-400);
}

.spacer-nav {
    margin-top: 86px;
}

/* ── Tooltip (login) ── */
.custom-tooltip {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.2s ease;
    z-index: 10;
    margin-bottom: 4px;
}

.custom-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 10px;
    border-width: 4px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* ── Public views – extracted inline styles ── */

/* Layout helpers */
.grid-span-9 {
    grid-column: span 9 !important;
}

.grid-span-12 {
    grid-column: span 12 !important;
}

.layout-no-pad {
    padding: 0px !important;
}

.d-contents {
    display: contents;
}

.cursor-pointer {
    cursor: pointer;
}

.w-full-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fw-500 {
    font-weight: 500;
}

/* Icon size utilities */
.icon-10 {
    font-size: 10px;
}

.icon-20 {
    font-size: 20px;
}

.icon-24 {
    font-size: 24px;
}

.icon-28 {
    font-size: 28px;
}

.icon-32 {
    font-size: 32px;
}

.icon-36 {
    font-size: 36px;
}

/* ── Help article pages ── */
.help-article-main {
    padding-top: 80px;
}

.help-article-main-alt {
    padding-top: 90px;
}

.fab-chapters-spaced {
    margin-bottom: 40px;
}

.desktop-layout-no-pad {
    padding-top: 0px;
}

.article-desk-content {
    max-width: 100%;
    padding: 60px;
}

/* Help article shared rules (moved from embedded <style> blocks) */
html {
    scroll-behavior: smooth;
}

[id^="mob-"] {
    scroll-margin-top: 0px;
}

[id^="desk-"] {
    scroll-margin-top: 80px;
}

.mobile-support-wrapper .article-container {
    margin-bottom: 80px;
}

.chapter-item,
.sidebar-nav-item {
    cursor: pointer;
}

/* ── Help dashboard ── */
.glow-help-mob-top {
    top: -50px;
    width: 300px;
    height: 300px;
}

.glow-help-mob-right {
    top: 40%;
    right: -150px;
    width: 300px;
    height: 300px;
}

.glow-help-mob-bottom {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 103, 0.08) 0%, transparent 70%);
}

.glow-desk-bottom-offset {
    bottom: 100px;
}

.support-title-desk {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-subtitle-desk {
    font-size: 1.125rem;
}

/* ── Public profile header ── */
.app-header-public {
    display: block !important;
    position: relative;
}

/* ── Modals (report / share) ── */
.modal-backdrop-report {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop-share {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-container-box {
    width: 100%;
    max-width: 400px;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-content-flex {
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.modal-close-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-slate-400);
    transition: background 0.2s;
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
}

/* Share modal specifics */
.share-link-group {
    margin-bottom: 1.5rem;
}

.share-link-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-slate-400);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-link-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.share-link-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 3rem 0.75rem 1rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
}

.share-copy-btn {
    position: absolute;
    right: 0.5rem;
    padding: 0.5rem;
    color: var(--primary);
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.share-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-slate-300);
    text-decoration: none;
}

.share-social-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, background 0.2s;
}

.share-social-label {
    font-size: 0.75rem;
}

.icon-social {
    font-size: 1.5rem;
}

.icon-close {
    font-size: 1.25rem;
}

/* Report modal phase styles */
.report-body-scroll {
    padding: 1.5rem;
    overflow-y: auto;
}

.report-body-text {
    color: var(--text-slate-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.report-reason-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    margin-bottom: 0.5rem;
}

.report-reason-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.report-reason-text {
    font-weight: 500;
}

.report-reason-chevron {
    font-size: 0.75rem;
    color: var(--text-slate-500);
}

.report-selected-group {
    margin-bottom: 1rem;
}

.report-selected-label {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.report-selected-value {
    color: white;
    font-weight: 600;
}

.report-comment-group {
    margin-bottom: 1.5rem;
}

.report-comment-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-slate-300);
    margin-bottom: 0.5rem;
}

.report-optional {
    color: var(--primary);
    font-size: 0.75rem;
}

.report-textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    resize: vertical;
}

.report-btn-row {
    display: flex;
    gap: 1rem;
}

.report-btn-back {
    flex: 1;
    padding: 0.75rem;
    border-radius: 99px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.report-btn-submit {
    flex: 2;
    padding: 0.75rem;
    border-radius: 99px;
    background: #ef4444;
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.report-success-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.report-success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.report-success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.report-success-text {
    color: var(--text-slate-400);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.report-success-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.report-btn-done {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: white;
    color: black;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.report-btn-block {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ── Channel dashboard ── */
.channel-banner-height {
    height: 300px;
}

.channel-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.online-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #10b981;
    border: 4px solid var(--surface-dark);
    border-radius: 50%;
}

.profile-display-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.icon-verified-sm {
    font-size: 1.25rem;
}

.stat-dot {
    width: 4px;
    height: 4px;
    background: #475569;
    border-radius: 50%;
}

.stat-dot-3 {
    width: 3px;
    height: 3px;
    background: var(--text-slate-500);
    border-radius: 50%;
}

.fw-700-white {
    font-weight: 700;
    color: var(--text-slate-200);
}

.btn-report-channel {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-report-channel:hover {
    background: rgba(255, 255, 255, 0.2);
}

.content-wrapper-pad {
    padding: 2rem;
}

.load-more-center {
    text-align: center;
    margin-top: 2rem;
}

/* Channel renderCard */
.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link-block {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.thumbnail-position {
    position: relative;
}

.thumbnail-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-info-pad {
    padding-top: 10px;
}

.post-card-clickable {
    padding-bottom: 10px;
    cursor: pointer;
}

.post-title-card {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.post-text-clamp {
    color: var(--text-slate-200);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    position: relative;
    min-height: 80px;
}

.post-meta-time {
    font-size: 0.75rem;
    color: var(--text-slate-500);
}

.p2p-loader-inline {
    background: transparent;
    align-items: flex-start;
    justify-content: flex-start;
}

.p2p-spinner-sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

.p2p-text-muted {
    color: var(--text-slate-400);
}

.audio-card-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.audio-thumb-box {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.audio-wave-bar {
    height: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2px;
    opacity: 0.5;
}

/* Channel <style> block (moved from inline) */
.btn-load-more {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-load-more:hover {
    background: rgba(255, 255, 255, 0.2);
}

.p2p-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
    z-index: 10;
    border-radius: inherit;
}

.p2p-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 8px;
}

.p2p-text {
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Audio content page ── */

/* Audio <style> block (moved from inline) */
.track-info-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .track-info-grid {
        grid-template-columns: 1fr;
    }

    .related-column {
        order: -1;
        margin-bottom: 2rem;
    }
}

.related-track-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.related-track-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.related-track-card:hover h4 {
    color: var(--primary) !important;
}

.related-track-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.35rem;
    object-fit: cover;
}

.related-track-info {
    flex: 1;
    overflow: hidden;
}

.related-track-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.related-track-artist {
    font-size: 0.75rem;
    color: var(--text-slate-400);
    margin: 2px 0 0 0;
}

.related-track-play {
    font-size: 1.25rem;
    color: var(--text-slate-500);
}

.play-skip-btn:hover {
    color: white !important;
    transform: scale(1.1);
}

.play-skip-btn {
    transition: all 0.2s ease;
}

.related-track-card img {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.audio-main {
    padding-bottom: 5rem;
    grid-column: span 12 !important;
    display: flex !important;
    width: 100%;
}

.audio-creator-name {
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
    cursor: pointer;
}

.audio-creator-handle {
    font-size: 0.875rem;
    color: var(--text-slate-400);
}

.audio-date-badge {
    font-size: 0.875rem;
    color: var(--text-slate-400);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-flex-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.album-art-desktop {
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.album-art-mobile {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.hero-controls-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.btn-skip {
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: none;
    cursor: pointer;
}

.btn-skip-disabled {
    color: rgba(255, 255, 255, 0.1);
    background: none;
    border: none;
    cursor: default;
}

.icon-skip {
    font-size: 2.5rem;
}

.icon-play-hero {
    font-size: 2.25rem;
}

.track-title-offset {
    margin-left: 1rem;
}

.waveform-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audio-loader-box {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.audio-loader-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-loader-spinner {
    font-size: 1.5rem;
    color: var(--primary);
}

.audio-loader-text {
    color: var(--text-slate-400);
    font-size: 0.875rem;
}

.waveform-height {
    height: 60px;
    cursor: pointer;
}

.mobile-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.btn-skip-mobile {
    color: rgba(255, 255, 255, 0.4);
}

.icon-skip-mobile {
    font-size: 2rem;
}

.btn-play-mobile {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.4);
}

.btn-skip-mobile-disabled {
    color: rgba(255, 255, 255, 0.1);
    cursor: default;
}

.audio-desktop-stats {
    align-items: center;
    gap: 2rem;
    padding-top: 0.5rem;
}

.stat-row-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-slate-400);
}

.stat-row-clickable {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
}

.audio-info-section {
    padding: 1.5rem 1rem 3rem 1rem;
}

.audio-info-container {
    padding: 0;
}

.audio-mobile-title-block {
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.audio-mobile-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.audio-mobile-btns {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.btn-secondary-pill {
    border-radius: 99px;
    padding: 0.5rem 1rem;
}

.btn-secondary-pill-disabled {
    border-radius: 99px;
    padding: 0.5rem 1rem;
    cursor: not-allowed;
}

.icon-stat-sm {
    font-size: 1.25rem;
}

.audio-desk-divider {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.audio-category-badge {
    padding: 0.375rem 1rem;
    border-radius: 99px;
    background: rgba(183, 148, 244, 0.1);
    color: var(--lavender);
    border: 1px solid rgba(183, 148, 244, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.audio-date-text {
    font-size: 0.875rem;
    color: var(--text-slate-500);
    font-weight: 500;
}

.audio-desc-wrapper {
    max-width: 100%;
}

.comments-section-spaced {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.comments-section-compact {
    margin-top: 1rem;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.related-title-row {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-container-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sticky-footer-safe {
    padding-bottom: calc(env(safe-area-inset-bottom) + 1rem);
}

.footer-overflow-hidden {
    overflow: hidden;
}

.footer-track-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-track-author {
    font-size: 0.725rem;
    color: var(--text-slate-400);
}

.footer-controls-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-footer-skip {
    color: var(--text-slate-500);
}

.btn-footer-skip:hover {
    color: white;
}

.icon-footer-skip {
    font-size: 1.75rem;
}

.btn-footer-fwd {
    color: var(--text-slate-400);
}

.icon-footer-fwd {
    font-size: 1.5rem;
}

.btn-play-footer {
    width: 2.75rem;
    height: 2.75rem;
    background: white;
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-footer-next-disabled {
    color: var(--text-slate-800);
    cursor: default;
}

.footer-time {
    font-size: 0.625rem;
    color: var(--text-slate-500);
    font-weight: 700;
}

.volume-controls-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.volume-icon {
    color: var(--text-slate-400);
}

.volume-slider {
    width: 6rem;
    height: 1rem;
    display: flex;
    align-items: center;
}

.volume-track {
    width: 100%;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    position: relative;
}

.volume-level {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--text-slate-400);
    border-radius: 99px;
}

/* ── Image content page ── */
.image-main {
    grid-column: span 12 !important;
}

.nav-btn-hidden {
    display: none;
}

.icon-nav {
    font-size: 1.875rem;
}

.image-stage-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stage-image-fit {
    max-height: 100vh;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}

.image-counter-badge {
    bottom: 20px;
    padding: 10px;
    padding-top: 10px;
    text-align: center;
    min-width: 60px !important;
    border-radius: 3px;
}

.user-meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu-box {
    display: none;
    position: absolute;
    right: 0;
    top: 3.5rem;
    width: 12rem;
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    z-index: 999;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dropdown-item {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    color: var(--text-slate-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item-danger {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon-sm {
    font-size: 1.125rem;
}

.stat-value-white {
    color: white;
    font-weight: 700;
}

.date-text-sm {
    font-size: 0.75rem;
    color: var(--text-slate-500);
    font-weight: 500;
}

/* ── Post content page ── */
.post-main {
    grid-column: span 12 !important;
    display: flex !important;
    width: 100%;
    overflow: hidden;
    padding-bottom: 0 !important;
    padding-top: 20px;
}

.post-container-wide {
    min-width: 80%;
}

.post-article-margin {
    margin: 20px;
}

.post-text-paragraph {
    white-space: pre-wrap;
}

.author-meta-flex {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-action-no-gap {
    gap: 0px;
}

.btn-action-ml-auto {
    margin-left: auto;
}

.btn-action-ml-10 {
    margin-left: 10px;
}

/* ── Video content page ── */
.video-main {
    grid-column: span 12 !important;
    padding: 15px;
    padding-bottom: 80px !important;
    width: 100% !important;
    min-width: 100% !important;
}

.video-stage-box {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.video-loader-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    background: black;
}

.video-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.video-loader-spinner {
    font-size: 2rem;
    color: var(--primary);
}

.video-loader-text {
    color: var(--text-slate-400);
    font-size: 0.875rem;
}

.video-source-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-title-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.video-meta-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.video-author-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.video-avatar-sm {
    width: 2.75rem;
    height: 2.75rem;
}

.video-author-name {
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
}

.video-author-handle {
    font-size: 0.75rem;
    color: var(--text-slate-400);
}

.video-toolbar {
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.action-pill-separator {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.25rem;
}

.video-desc-card {
    margin-top: 1rem;
}

.video-desc-date {
    color: var(--text-slate-400);
}

.video-desc-text {
    font-size: 0.875rem;
    color: var(--text-slate-300);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.video-comments-section {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.related-thumb-pointer {
    cursor: pointer;
    position: relative;
}

.icon-library {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ─── Channel/Dashboard + Card utilities ────────────────────── */

.icon-play-overlay {
    font-size: 3rem;
    color: white;
}

.flex-1 {
    flex: 1;
}

.p2p-loader-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wave-bar-item {
    flex: 1;
    background: var(--primary);
    border-radius: 99px;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.icon-16 {
    font-size: 1rem;
}

/* ─── Utility classes for JS class-toggling (CSP-safe) ─────── */

.d-none {
    display: none !important;
}

/* Image dropdown/menu container */
.image-dropdown-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.position-relative {
    position: relative;
}

/* Flex utility rows */
.flex-gap-1 {
    display: flex;
    gap: 1rem;
}

.flex-gap-15 {
    display: flex;
    gap: 1.5rem;
}

/* Video related-date row */
.related-date-row {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.125rem;
}

/* Main container padding-flush override */
.main-container-flush {
    padding: 0;
}

/* Aspect ratio square */
.aspect-square {
    aspect-ratio: 1 / 1;
}

/* Default avatar background placeholder */
.bg-default-avatar {
    background-image: url('/private/img/default_avatar.png');
}

/* Z-index utility */
.z-5 {
    z-index: 5;
}

/* Margin reset */
.m-0 {
    margin: 0;
}

/* Inline error text */
.error-inline {
    color: red;
    font-size: 0.75rem;
}

/* Icon size 2rem */
.icon-2rem {
    font-size: 2rem;
}

/* Image zoom state (toggle via JS) */
.img-zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

/* Image dropdown menu visible state */
.dropdown-menu-open {
    display: block !important;
}

/* Waveform container ready state (applied by JS after generation) */
.waveform-ready {
    display: flex;
    align-items: center;
    gap: 3px;
    overflow: hidden;
}

/* JS-generated waveform bar (base + active) */
.waveform-bar {
    width: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    transition: all 0.2s;
    flex-shrink: 0;
    opacity: 0.3;
}

.wave-bar-active {
    background-color: var(--primary) !important;
    opacity: 1 !important;
}

/* Next-track button active states (applied by JS) */
.btn-next-active {
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.btn-next-footer-active {
    color: var(--text-slate-500);
    cursor: pointer;
}

/* ============================================================
   ADMIN PANEL — shared classes
   ============================================================ */

/* --- Tables (dashboard list tables) --- */
.content-table { width: 100%; border-collapse: collapse; }
.content-table th { text-align: left; padding: 1rem; color: var(--text-slate-400); font-weight: 700; font-size: 0.875rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.content-table td { padding: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: white; }

/* --- Monospace utility --- */
.mono { font-family: monospace; word-break: break-all; }
.mono-light { font-family: monospace; opacity: 0.9; }

/* --- Status dots --- */
.dot-status { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-status.green { background-color: var(--emerald-400); }
.dot-status.yellow { background-color: #fbbf24; }
.dot-status.grey { background-color: #6b7280; }
.status-text.green { color: var(--emerald-400); }
.status-text.yellow { color: #fbbf24; }

/* --- Icon button (square) --- */
.btn-icon-sq { width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); border-radius: 0.5rem; color: white; cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none; }
.btn-icon-sq:hover { background: rgba(255, 255, 255, 0.1); }
.btn-icon-sq[disabled], .btn-icon-sq.disabled { opacity: 0.5; pointer-events: none; }

/* --- Action button (text) --- */
.btn-action { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); color: white; border-radius: 8px; padding: 0.45rem 0.85rem; font-size: 0.85rem; text-decoration: none; cursor: pointer; }
.btn-action:hover { background: rgba(255,255,255,0.1); }
.btn-action:disabled { opacity: .5; cursor: not-allowed; }

/* --- Admin section (card) --- */
.admin-section { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; backdrop-filter: blur(10px); }
.admin-section h3 { color: white; margin-top: 0; margin-bottom: 1rem; font-size: 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 0.5rem; }
.admin-section-danger { border-color: #EF4444; }
.admin-section-danger h3 { color: #EF4444; }

/* --- Admin detail table --- */
.admin-table { width: 100%; border-collapse: collapse; color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; }
.admin-table th, .admin-table td { text-align: left; padding: 0.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); vertical-align: top; }
.admin-table th { color: rgba(255, 255, 255, 0.55); font-weight: 600; width: 220px; }

/* --- Status badges --- */
.status-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 9999px; font-size: 0.8rem; font-weight: 500; }
.status-badge.success { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.status-badge.danger { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.status-badge.warning { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.status-badge.info { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.status-badge.secondary { background: rgba(107, 114, 128, 0.15); color: #9CA3AF; }

/* --- Tag chip --- */
.tag-chip { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 9999px; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.7); font-size: 0.75rem; margin: 0.1rem; }
.chip { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 9999px; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.9); margin: 0.15rem; font-size: 0.8rem; }
.chip.green { background: rgba(16,185,129,0.2); color: #10B981; }
.chip.yellow { background: rgba(245,158,11,0.2); color: #F59E0B; }

/* --- Back link --- */
.back-link { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.25rem; margin-bottom: 1rem; transition: color 0.2s; }
.back-link:hover { color: white; }

/* --- Scrollable section --- */
.scrollable-section { max-height: 300px; overflow-y: auto; }

/* --- Admin links --- */
.admin-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.admin-link:hover { opacity: 0.9; }
.admin-link-plain { color: inherit; text-decoration: none; }
.admin-link-plain:hover { opacity: 0.9; }

/* --- Empty / italic placeholder --- */
.empty { color: rgba(255, 255, 255, 0.5); font-style: italic; }

/* --- Content block (sub-card) --- */
.content-block { border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1rem; margin-bottom: 1rem; background: rgba(255,255,255,0.02); }

/* --- Grid layouts --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.admin-grid-5 { grid-template-columns: repeat(5, 1fr) !important; }
.admin-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 2rem; }
.admin-grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }

/* --- Admin form --- */
.admin-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row label { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.form-row input, .form-row textarea, .form-row select { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: white; padding: 0.65rem 0.75rem; }
.form-row textarea { min-height: 180px; resize: vertical; }
.form-row-short textarea { min-height: 120px; }
.actions { margin-top: 1rem; display: flex; gap: 0.5rem; }

/* --- Task table (missions) --- */
.task-wrap { margin-top: 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.5rem; }
.task-table { width: 100%; border-collapse: collapse; }
.task-table th, .task-table td { text-align: left; padding: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: white; vertical-align: top; }
.task-table th { color: rgba(255,255,255,0.6); font-size: .85rem; }
.task-actions { display: flex; gap: .45rem; justify-content: flex-end; }

/* --- Modal --- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 1rem; }
.modal-backdrop.show { display: flex; }
.modal-card { width: min(860px, 100%); max-height: 90vh; overflow: auto; background: rgba(17,20,30,.97); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 1.1rem; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.modal-title { color: white; margin: 0; }
.xbtn { background: transparent; border: none; color: white; font-size: 1.2rem; cursor: pointer; }
.muted { color: rgba(255,255,255,.55); font-size: .9rem; }

/* ============================================================
   ADMIN PANEL — hero/container width overrides
   ============================================================ */
.admin-hero-90 { max-width: 90% !important; }
.admin-hero-92 { max-width: 92% !important; }
.admin-hero-95 { max-width: 95% !important; }
.admin-container-full { max-width: 100% !important; }

/* ============================================================
   ADMIN PANEL — icon size utilities
   ============================================================ */
.icon-1-1 { font-size: 1.1rem; }
.icon-1-15 { font-size: 1.15rem; }
.icon-1-25 { font-size: 1.25rem; }
.icon-2-25 { font-size: 2.25rem; }

/* ============================================================
   ADMIN PANEL — text/alignment utilities
   ============================================================ */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted-55 { color: rgba(255,255,255,0.55); }

/* --- Empty table cell state --- */
.td-empty-state { text-align: center; padding: 40px; color: var(--text-slate-400); }

/* --- Action cell (right-aligned flex) --- */
.td-actions-row { text-align: right; display: flex; gap: 0.5rem; justify-content: flex-end; }

/* --- Toolbar / button row --- */
.admin-toolbar { display: flex; gap: 0.5rem; }
.admin-btn-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.admin-toolbar-between { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-bottom: .8rem; }

/* --- Pagination footer --- */
.admin-pagination { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.admin-pagination-info { font-size: 0.875rem; color: var(--text-slate-400); }
.admin-pagination-btns { display: flex; gap: 0.5rem; }

/* --- Section heading (no top margin, white) --- */
.admin-heading { margin-top: 0; color: white; }
.admin-heading-inline { margin: 0; color: white; }
.admin-heading-inline-mb { margin: 0 0 .5rem; color: white; }

/* --- Footer overrides --- */
.admin-footer { padding: 2.5rem 0; }

/* --- Spacing utilities --- */
.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.overflow-auto { overflow: auto; }

/* ============================================================
   ADMIN PANEL — users/user.php specific classes
   ============================================================ */

/* Profile header layout */
.admin-profile-header { display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 2rem; }
.admin-avatar { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; border: 3px solid rgba(255,255,255,0.1); }
.admin-user-name { color: white; margin: 0; font-size: 2rem; }
.admin-user-handle { font-size: 1.25rem; color: rgba(255,255,255,0.6); }
.admin-user-id { color: rgba(255,255,255,0.7); font-family: monospace; }
.admin-badges-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.admin-bio { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }
.admin-balance-box { margin-left: auto; text-align: right; }
.admin-balance-amount { color: #10B981; font-size: 2.5rem; font-weight: 700; }
.admin-balance-label { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.admin-wallet-addr { font-family: monospace; font-size: 0.75rem; color: rgba(255,255,255,0.4); word-break: break-all; max-width: 220px; }
.admin-dates { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 0.25rem; }
.admin-expire-date { color: #F59E0B; font-size: 0.8rem; }

/* Stat cards */
.admin-stat-value { font-size: 2rem; }

/* Table empty state */
.admin-td-empty { text-align: center; opacity: 0.5; }

/* Transaction amount colours */
.text-credit { color: #10B981; }
.text-debit { color: #EF4444; }
.text-fee { color: rgba(255,255,255,0.4); }

/* Mission sub-text */
.admin-sub-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.admin-sub-value { color: rgba(255,255,255,0.8); }

/* Promotion schedule sub-text */
.admin-schedule-text { font-size: 0.8rem; }

/* Report card */
.admin-report-card { background: rgba(239,68,68,0.1); padding: 0.5rem; border-radius: 4px; margin-bottom: 0.5rem; }
.admin-report-title { color: #EF4444; font-weight: 600; }
.admin-report-text { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.admin-report-date { color: rgba(255,255,255,0.35); font-size: 0.75rem; }

/* Follow request row */
.admin-list-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.admin-badge-sm { font-size: 0.7rem; }
.admin-empty-text { color: rgba(255,255,255,0.45); font-style: italic; }

/* Subscription sections */
.admin-sub-header { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin: 1rem 0 0.5rem; }
.admin-sub-expiry { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.admin-target-text { color: rgba(255,255,255,0.6); }

/* Notification cards */
.notif-unread { border-left: 3px solid #3B82F6; }
.notif-read { border-left: 3px solid #6B7280; }
.admin-notif-card { background: rgba(255,255,255,0.03); padding: 0.75rem; border-radius: 8px; margin-bottom: 0.5rem; }
.admin-notif-row { display: flex; justify-content: space-between; align-items: flex-start; }
.admin-notif-tag { font-size: 0.7rem; }
.admin-notif-time { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.admin-notif-msg { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.25rem; }

/* Session token rows */
.admin-token-row { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.admin-token-hash { font-family: monospace; font-size: 0.8rem; color: rgba(255,255,255,0.8); word-break: break-all; }
.admin-token-time { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* Taxonomy */
.admin-label-text { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 0.25rem; }
.admin-tag-wrap { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 0.75rem; }

