:root {
    --bg: #0b1020;
    --bg-soft: #121933;
    --card: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.14);
    --text: #f4f7ff;
    --muted: #b8c0d9;
    --primary: #6d7cff;
    --primary-hover: #5969f0;
    --secondary: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(109, 124, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #090e1c 0%, #0d1326 100%);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}

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

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(9, 14, 28, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 80px;
}

.logo {
    flex-shrink: 0;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
}

.logo span {
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(109, 124, 255, 0.35);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-danger {
    background: rgba(255, 80, 80, 0.14);
    color: #ffd4d4;
    border: 1px solid rgba(255, 80, 80, 0.25);
}

.btn-danger:hover {
    background: rgba(255, 80, 80, 0.22);
}

/* General content */

.hero {
    padding: 90px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #97a6ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-description {
    max-width: 620px;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-buttons,
.hero-actions,
.form-action-row,
.manage-channel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card,
.info-card,
.cta-box {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card {
    padding: 28px;
}

.card h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.card p {
    color: var(--muted);
}

.section {
    padding: 70px 0;
}

.section-tight {
    padding-top: 0;
}

.alt-section {
    background: rgba(255, 255, 255, 0.03);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtext {
    margin-top: 12px;
    color: var(--muted);
    font-size: 1.02rem;
}

.steps-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.info-card {
    padding: 28px;
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.info-card p {
    margin: 0;
    color: var(--muted);
}

.step-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(109, 124, 255, 0.18);
    color: #d7dcff;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section {
    padding-bottom: 90px;
}

.cta-box {
    text-align: center;
    padding: 50px 24px;
}

.cta-box h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-box p {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 24px;
}

.centered-buttons {
    justify-content: center;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.15);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    margin-bottom: 6px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--white);
}

/* Standard search form */

.search-form {
    display: flex;
    gap: 12px;
    margin: 22px 0 24px;
    flex-wrap: wrap;
}

.search-form input {
    flex: 1;
    min-width: 220px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 14, 28, 0.7);
    color: var(--white);
    outline: none;
    font-size: 1rem;
}

.search-form input::placeholder {
    color: #8f99b8;
}

/* Mini cards / homepage extras */

.mini-profile {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.profile-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(109, 124, 255, 0.18);
    color: #cdd4ff;
    font-size: 0.85rem;
    font-weight: 700;
}

.mini-profile h3 {
    margin: 0 0 8px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 26px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
}

.search-card h2 {
    margin-top: 0;
}

.mini-result-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.mini-warning {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 200, 80, 0.1);
    border: 1px solid rgba(255, 200, 80, 0.22);
}

.mini-warning strong {
    display: block;
    margin-bottom: 6px;
}

.mini-warning p {
    margin: 0;
    color: #ffe8ae;
}

.trust-strip {
    padding: 0 0 24px;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-item {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.trust-item span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-grid,
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.safety-card {
    padding: 28px;
}

.safety-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.safety-card p {
    margin: 0;
    color: var(--muted);
}

/* Modern homepage */

.hero-modern {
    padding-top: 88px;
    padding-bottom: 56px;
}

.hero-modern-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 30px;
    align-items: center;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 760px;
}

.hero-copy h1 span {
    color: #9cabff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8fa1ff;
    box-shadow: 0 0 0 6px rgba(143, 161, 255, 0.12);
}

.hero-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 26px 0 14px;
}

.hero-search-input-wrap {
    position: relative;
}

.hero-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: #8f99b8;
    display: inline-flex;
}

.hero-search-icon svg {
    width: 100%;
    height: 100%;
}

.hero-search-form input {
    width: 100%;
    min-height: 58px;
    padding: 0 18px 0 46px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 14, 28, 0.78);
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.hero-search-form input:focus {
    border-color: rgba(109, 124, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(109, 124, 255, 0.15);
}

.hero-quick-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-quick-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.hero-panel {
    position: relative;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 30px -20px -20px 50px;
    border-radius: 34px;
    background: radial-gradient(circle at center, rgba(109, 124, 255, 0.22), transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.hero-panel-card {
    position: relative;
    z-index: 1;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-panel-top {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.hero-panel-top p {
    margin: 4px 0 0;
    color: var(--muted);
}

.hero-panel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 124, 255, 0.18);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
}

.hero-panel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-platform-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-platform-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.platform-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #9cabff;
}

.hero-warning-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 200, 80, 0.1);
    border: 1px solid rgba(255, 200, 80, 0.22);
}

.hero-warning-box strong {
    display: block;
    margin-bottom: 6px;
}

.hero-warning-box p {
    margin: 0;
    color: #ffe8ae;
}

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

.home-stat-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}

.home-stat-card span {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.feature-grid-modern,
.safety-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card-modern {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 18px;
    background: rgba(109, 124, 255, 0.14);
    color: #d5dcff;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card-modern h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.feature-card-modern p {
    margin: 0;
    color: var(--muted);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.timeline-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-number {
    display: inline-block;
    margin-bottom: 14px;
    color: #9cabff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.timeline-card h3 {
    margin: 0 0 10px;
}

.timeline-card p {
    margin: 0;
    color: var(--muted);
}

.safety-card-modern {
    padding: 28px;
}

.safety-card-modern h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.safety-card-modern p {
    margin: 0;
    color: var(--muted);
}

.cta-box-modern {
    max-width: 980px;
}

/* Forms */

.form-container {
    max-width: 900px;
}

.form-card {
    padding: 32px;
}

.form-card-small {
    max-width: 620px;
    margin: 0 auto;
}

.form-intro {
    color: var(--muted);
    margin-bottom: 24px;
}

.form-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.two-cols {
    grid-template-columns: 1fr 1fr;
}

.narrow-right {
    grid-template-columns: 2fr 1fr;
}

.narrow-left {
    grid-template-columns: 1fr 2fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: var(--white);
}

.form-group input,
.form-group select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 14, 28, 0.75);
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.staff-action-form input[type="text"]:focus,
.search-form-large input:focus,
.search-form input:focus,
.hero-search-form input:focus {
    border-color: rgba(109, 124, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(109, 124, 255, 0.15);
}

.form-group textarea {
    width: 100%;
    min-height: 130px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 14, 28, 0.75);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    resize: vertical;
    font-family: Arial, Helvetica, sans-serif;
}

.input-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-footer-text {
    margin-top: 18px;
    color: var(--muted);
}

.form-footer-text a {
    color: var(--white);
    font-weight: 700;
}

.checkbox-group {
    display: flex;
    align-items: end;
}

.toggle-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.toggle-row input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.15);
}

.toggle-row span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toggle-row small {
    color: var(--muted);
    line-height: 1.5;
}

.alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.alert p {
    margin: 0 0 8px;
}

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

.alert-error {
    background: rgba(255, 80, 80, 0.12);
    border-color: rgba(255, 80, 80, 0.28);
    color: #ffd4d4;
}

.alert-success {
    background: rgba(61, 201, 126, 0.12);
    border-color: rgba(61, 201, 126, 0.28);
    color: #d7ffe5;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Dashboard / shared */

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
}

.settings-note-box {
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.settings-note-box p {
    margin: 8px 0 0;
    color: var(--muted);
}

/* Public profile */

.public-profile-wrap {
    max-width: 960px;
}

.public-profile-hero {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: center;
    padding: 32px;
    margin-bottom: 24px;
}

.public-profile-avatar img,
.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 124, 255, 0.18);
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 800;
}

.public-profile-main h1 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.public-handle {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

.public-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.public-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.public-bio {
    margin-top: 16px;
    color: var(--muted);
    max-width: 680px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.status-badge.verified {
    background: rgba(61, 201, 126, 0.16);
    color: #d7ffe5;
    border: 1px solid rgba(61, 201, 126, 0.3);
}

.status-badge.pending {
    background: rgba(255, 200, 80, 0.14);
    color: #ffe8ae;
    border: 1px solid rgba(255, 200, 80, 0.25);
}

.status-badge.neutral {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.public-profile-section {
    padding: 28px;
    margin-bottom: 24px;
}

.warning-section {
    background: rgba(255, 200, 80, 0.08);
    border: 1px solid rgba(255, 200, 80, 0.22);
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.channel-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.2s ease;
}

.channel-card:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}

.channel-left h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.channel-left p {
    margin: 0;
    color: var(--muted);
}

.channel-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px 0 8px;
    border-radius: 999px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.channel-platform-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.18);
}

.channel-nickname {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
}

.empty-state {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.no-link {
    cursor: default;
}

/* Settings */

.settings-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.settings-card {
    padding: 32px;
}

.settings-sidebar {
    position: sticky;
    top: 110px;
}

.settings-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.settings-section h2 {
    margin: 0 0 6px;
    font-size: 1.2rem;
}

/* Profiles */

.profiles-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.profiles-card {
    padding: 32px;
}

.profiles-sidebar {
    position: sticky;
    top: 110px;
}

.profiles-list-card {
    margin-top: 0;
}

.manage-channel-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.manage-channel-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.manage-channel-main {
    flex: 1;
    min-width: 0;
}

.manage-channel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.manage-channel-top h3 {
    margin: 0;
    font-size: 1.15rem;
}

.manage-channel-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.manage-channel-nickname {
    margin: 10px 0 6px;
    font-weight: 700;
    color: var(--white);
}

.manage-channel-link {
    margin: 0 0 10px;
    word-break: break-word;
}

.manage-channel-link a {
    color: var(--muted);
}

.manage-channel-link a:hover {
    color: var(--white);
}

.manage-channel-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.92rem;
}

.manage-channel-actions {
    align-items: center;
}

.manage-channel-actions form {
    margin: 0;
}

/* Search page */

.search-wrap {
    max-width: 1020px;
}

.search-hero-card {
    padding: 32px;
    margin-bottom: 24px;
}

.search-form-large {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.search-form-large input {
    flex: 1;
    min-width: 240px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 14, 28, 0.75);
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.danger-card {
    padding: 28px;
    margin-bottom: 24px;
    background: rgba(255, 200, 80, 0.1);
    border: 1px solid rgba(255, 200, 80, 0.22);
}

.danger-card h2 {
    margin: 0 0 12px;
}

.danger-card p {
    margin: 0 0 10px;
    color: #ffe8ae;
}

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

.search-result-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-result-card {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-result-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.search-result-top h3 {
    margin: 0 0 4px;
    font-size: 1.3rem;
}

.search-result-bio {
    margin: 14px 0 0;
    color: var(--muted);
}

.search-match-note {
    margin: 12px 0 0;
    color: var(--muted);
}

.search-channel-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.search-channel-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.92rem;
}

.search-channel-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Staff */

.staff-wrap {
    max-width: 1180px;
}

.staff-section-card {
    margin-top: 24px;
}

.staff-actions {
    width: 320px;
    max-width: 100%;
}

.staff-action-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.staff-action-form input[type="text"] {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 14, 28, 0.75);
    color: var(--white);
    outline: none;
}

.staff-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.staff-stat-card {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.staff-stat-card strong {
    color: var(--muted);
    font-size: 0.95rem;
}

.staff-stat-card span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

/* Legal pages */

.legal-wrap {
    max-width: 980px;
}

.legal-card {
    padding: 34px;
}

.legal-content {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.3rem;
}

.legal-content p {
    margin: 0 0 14px;
}

.legal-content ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--white);
    word-break: break-word;
}

/* Platform pseudo-badges */

.platform-instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.18), rgba(253, 29, 29, 0.16), rgba(252, 176, 69, 0.18));
    color: #ffe2f0;
    border-color: rgba(255, 255, 255, 0.08);
}

.platform-instagram .channel-platform-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.platform-tiktok {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.12));
    color: #e8ffff;
    border-color: rgba(37, 244, 238, 0.14);
}

.platform-tiktok .channel-platform-icon {
    background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

.platform-youtube {
    background: rgba(255, 0, 0, 0.12);
    color: #ffd9d9;
    border-color: rgba(255, 0, 0, 0.18);
}

.platform-youtube .channel-platform-icon {
    background: linear-gradient(135deg, #ff2d2d, #cc0000);
}

.platform-twitch {
    background: rgba(145, 70, 255, 0.14);
    color: #eadfff;
    border-color: rgba(145, 70, 255, 0.2);
}

.platform-twitch .channel-platform-icon {
    background: linear-gradient(135deg, #9146ff, #6f2cff);
}

.platform-x {
    background: rgba(255, 255, 255, 0.06);
    color: #f5f7ff;
    border-color: rgba(255, 255, 255, 0.12);
}

.platform-x .channel-platform-icon {
    background: linear-gradient(135deg, #2b2b2b, #000000);
}

.platform-discord {
    background: rgba(88, 101, 242, 0.14);
    color: #dfe3ff;
    border-color: rgba(88, 101, 242, 0.2);
}

.platform-discord .channel-platform-icon {
    background: linear-gradient(135deg, #5865f2, #404eed);
}

.platform-snapchat {
    background: rgba(255, 252, 0, 0.12);
    color: #fff4a8;
    border-color: rgba(255, 252, 0, 0.16);
}

.platform-snapchat .channel-platform-icon {
    background: linear-gradient(135deg, #ffe600, #fffc00);
    color: #111;
}

.platform-bereal {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.platform-bereal .channel-platform-icon {
    background: linear-gradient(135deg, #ffffff, #bfbfbf);
    color: #111;
}

.platform-facebook {
    background: rgba(24, 119, 242, 0.14);
    color: #dceaff;
    border-color: rgba(24, 119, 242, 0.2);
}

.platform-facebook .channel-platform-icon {
    background: linear-gradient(135deg, #1877f2, #0d5fd3);
}

.platform-telegram {
    background: rgba(0, 136, 204, 0.14);
    color: #dcf5ff;
    border-color: rgba(0, 136, 204, 0.2);
}

.platform-telegram .channel-platform-icon {
    background: linear-gradient(135deg, #2aabee, #0088cc);
}

.platform-website {
    background: rgba(61, 201, 126, 0.14);
    color: #d9ffe8;
    border-color: rgba(61, 201, 126, 0.2);
}

.platform-website .channel-platform-icon {
    background: linear-gradient(135deg, #3dc97e, #1f9e5b);
}

.platform-default {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.1);
}

.platform-default .channel-platform-icon {
    background: linear-gradient(135deg, #8f99b8, #67708d);
}

/* Responsive */

@media (max-width: 980px) {
    .hero-grid,
    .steps-grid,
    .benefits-grid,
    .trust-strip-inner,
    .four-cols,
    .feature-grid,
    .safety-grid,
    .hero-modern-grid,
    .home-stats-grid,
    .feature-grid-modern,
    .timeline-grid,
    .safety-grid-modern,
    .settings-layout,
    .profiles-layout {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-wrap: wrap;
        min-height: auto;
        padding: 14px 0;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        width: 100%;
        justify-content: stretch;
    }

    .header-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
    }

    .hero-search-form {
        grid-template-columns: 1fr;
    }

    .profiles-sidebar,
    .settings-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .staff-actions,
    .staff-stats-grid {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .two-cols,
    .narrow-right,
    .narrow-left {
        grid-template-columns: 1fr;
    }

    .form-card,
    .settings-card,
    .profiles-card {
        padding: 24px;
    }
}

@media (max-width: 700px) {
    .public-profile-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .public-profile-avatar {
        display: flex;
        justify-content: center;
    }

    .public-badges,
    .public-meta {
        justify-content: center;
    }

    .channel-card,
    .manage-channel-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .manage-channel-actions {
        justify-content: flex-start;
    }

    .search-form-large {
        flex-direction: column;
    }

    .search-form-large .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-header {
        background: rgba(9, 14, 28, 0.9);
    }

    .header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 0;
    }

    .header-inner > .logo {
        text-align: center;
        font-size: 1.28rem;
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .header-actions .btn,
    .hero-buttons .btn,
    .hero-actions .btn,
    .search-form .btn,
    .hero-search-form .btn {
        width: 100%;
    }

    .btn {
        min-height: 46px;
        border-radius: 14px;
    }

    .hero {
        padding-top: 60px;
    }

    .card,
    .info-card,
    .cta-box {
        border-radius: 18px;
    }

    .search-form,
    .hero-buttons,
    .hero-actions {
        flex-direction: column;
    }

    .hero-panel-top {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hero-platform-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
.header-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    position: absolute;
    left: 14px;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.24s ease, opacity 0.2s ease, top 0.24s ease;
}

.menu-toggle span:nth-child(1) {
    top: 17px;
}

.menu-toggle span:nth-child(2) {
    top: 24px;
}

.menu-toggle span:nth-child(3) {
    top: 31px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
    top: 24px;
    transform: rotate(45deg);
}

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

.site-header.menu-open .menu-toggle span:nth-child(3) {
    top: 24px;
    transform: rotate(-45deg);
}

.mobile-menu-panel {
    display: none;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 0 18px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-weight: 700;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-actions .btn {
    width: 100%;
}

body.menu-locked {
    overflow: hidden;
}

@media (max-width: 980px) {
    .header-desktop {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-panel {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition:
            max-height 0.28s ease,
            opacity 0.22s ease,
            transform 0.22s ease;
    }

    .site-header.menu-open .mobile-menu-panel {
        max-height: 520px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}