/*
Theme Name: No Filter
Theme URI: https://unboxedgems.com
Description: Premium creator subscription platform — dark luxury aesthetic
Author: KDB Dev
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: nofilter
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --nf-black: #0A0A0A;
    --nf-dark: #0f0f0f;
    --nf-charcoal: #1A1A1A;
    --nf-charcoal-light: #242424;
    --nf-gray-900: #171717;
    --nf-gray-800: #262626;
    --nf-gray-700: #333333;
    --nf-gray-600: #525252;
    --nf-gray-500: #737373;
    --nf-gray-400: #a3a3a3;
    --nf-gray-300: #d4d4d4;
    --nf-cream: #F5F0EB;
    --nf-white: #FFFFFF;
    --nf-gold: #C9A96E;
    --nf-gold-light: #d4b97e;
    --nf-gold-dark: #a8894e;
    --nf-blush: #D4A5A5;
    --nf-burgundy: #6B2D3E;
    --nf-burgundy-light: #8B3D4E;
    --nf-red: #ef4444;
    --nf-green: #22c55e;

    --nf-font-serif: 'Playfair Display', Georgia, serif;
    --nf-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --nf-font-accent: 'Bebas Neue', Impact, sans-serif;

    --nf-container: 1280px;
    --nf-container-narrow: 960px;
    --nf-gap: 24px;
    --nf-radius: 12px;
    --nf-radius-sm: 8px;
    --nf-radius-lg: 16px;

    --nf-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nf-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --nf-shadow: 0 4px 24px rgba(0,0,0,0.4);
    --nf-shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
    --nf-glow-gold: 0 0 20px rgba(201,169,110,0.3);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--nf-font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--nf-cream);
    background: var(--nf-black);
    overflow-x: hidden;
}

a { color: var(--nf-gold); text-decoration: none; transition: color var(--nf-transition); }
a:hover { color: var(--nf-gold-light); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--nf-font-serif); color: var(--nf-white); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { margin-bottom: 1rem; color: var(--nf-gray-300); }
::selection { background: var(--nf-gold); color: var(--nf-black); }

/* CONTAINER */
.nf-container { width: 100%; max-width: var(--nf-container); margin: 0 auto; padding: 0 var(--nf-gap); }
.nf-container-narrow { max-width: var(--nf-container-narrow); margin: 0 auto; padding: 0 var(--nf-gap); }

/* BUTTONS */
.nf-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; font-family: var(--nf-font-sans); font-size: 15px; font-weight: 600;
    border-radius: var(--nf-radius-sm); border: none; cursor: pointer;
    transition: all var(--nf-transition); letter-spacing: 0.3px; line-height: 1; white-space: nowrap;
}
.nf-btn-gold {
    background: linear-gradient(135deg, var(--nf-gold), var(--nf-gold-dark));
    color: var(--nf-black); box-shadow: var(--nf-glow-gold);
}
.nf-btn-gold:hover {
    background: linear-gradient(135deg, var(--nf-gold-light), var(--nf-gold));
    color: var(--nf-black); box-shadow: 0 0 30px rgba(201,169,110,0.5); transform: translateY(-1px);
}
.nf-btn-outline { background: transparent; color: var(--nf-cream); border: 1.5px solid var(--nf-gray-600); }
.nf-btn-outline:hover { border-color: var(--nf-gold); color: var(--nf-gold); background: rgba(201,169,110,0.05); }
.nf-btn-burgundy { background: var(--nf-burgundy); color: var(--nf-white); }
.nf-btn-burgundy:hover { background: var(--nf-burgundy-light); color: var(--nf-white); }
.nf-btn-sm { padding: 10px 20px; font-size: 13px; }
.nf-btn-lg { padding: 18px 40px; font-size: 17px; }
.nf-btn-block { width: 100%; }

/* BADGES */
.nf-badge {
    display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
    font-weight: 700; text-transform: uppercase; border-radius: 20px;
    font-family: var(--nf-font-accent); letter-spacing: 1px; font-size: 12px;
}
.nf-badge-gold { background: linear-gradient(135deg, var(--nf-gold), var(--nf-gold-dark)); color: var(--nf-black); }
.nf-badge-live { background: var(--nf-red); color: var(--nf-white); animation: nf-pulse 2s infinite; }
.nf-badge-trending { background: rgba(239,68,68,0.15); color: #ff6b6b; border: 1px solid rgba(239,68,68,0.3); }
.nf-badge-new { background: rgba(34,197,94,0.15); color: var(--nf-green); border: 1px solid rgba(34,197,94,0.3); }
.nf-badge-verified { background: rgba(201,169,110,0.15); color: var(--nf-gold); }

@keyframes nf-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* ============================================================
   HEADER
   ============================================================ */
.nf-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nf-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; max-width: var(--nf-container); margin: 0 auto; padding: 0 var(--nf-gap);
}
.nf-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nf-logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--nf-gold), var(--nf-gold-dark));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-family: var(--nf-font-serif); font-weight: 700; font-size: 18px; color: var(--nf-black);
}
.nf-logo-text { font-family: var(--nf-font-serif); font-size: 20px; font-weight: 700; color: var(--nf-white); line-height: 1.1; }
.nf-logo-text span { color: var(--nf-gold); }

.nf-nav { display: flex; align-items: center; gap: 32px; }
.nf-nav a { color: var(--nf-gray-400); font-size: 14px; font-weight: 500; position: relative; }
.nf-nav a:hover, .nf-nav a.active { color: var(--nf-white); }
.nf-nav a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--nf-gold); border-radius: 1px;
}

.nf-header-actions { display: flex; align-items: center; gap: 12px; }
.nf-header-search {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--nf-gray-700);
    background: transparent; color: var(--nf-gray-400); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all var(--nf-transition);
}
.nf-header-search:hover { border-color: var(--nf-gold); color: var(--nf-gold); }

.nf-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nf-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--nf-cream); border-radius: 2px; transition: all var(--nf-transition); }

/* ============================================================
   HERO
   ============================================================ */
.nf-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 72px; }
.nf-hero-bg { position: absolute; inset: 0; z-index: 0; }
.nf-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.8); animation: nf-kenburns 20s ease-in-out infinite alternate; }
@keyframes nf-kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }

.nf-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.8) 80%, var(--nf-black) 100%);
    z-index: 1;
}
.nf-hero-content { position: relative; z-index: 2; text-align: center; max-width: 720px; padding: 0 var(--nf-gap); }
.nf-hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 20px; line-height: 1.1; }
.nf-hero-content h1 em { font-style: italic; color: var(--nf-gold); }

.nf-hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--nf-gray-400); margin-bottom: 36px; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
.nf-hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.nf-hero-proof { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--nf-gray-500); }
.nf-hero-proof .nf-live-dot { width: 8px; height: 8px; background: var(--nf-green); border-radius: 50%; animation: nf-pulse 2s infinite; }

.nf-hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; animation: nf-bounce 2s infinite; color: var(--nf-gray-600); }
@keyframes nf-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.nf-section { padding: 96px 0; }
.nf-section-header { text-align: center; margin-bottom: 48px; }
.nf-section-header h2 { margin-bottom: 12px; }
.nf-section-header p { color: var(--nf-gray-500); max-width: 560px; margin: 0 auto; }
.nf-section-label { font-family: var(--nf-font-accent); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--nf-gold); margin-bottom: 8px; display: block; }

/* ============================================================
   CREATOR CARDS
   ============================================================ */
.nf-creators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--nf-gap); }

.nf-creator-card {
    position: relative; border-radius: var(--nf-radius); overflow: hidden;
    background: var(--nf-charcoal); border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--nf-transition); cursor: pointer;
}
.nf-creator-card:hover { transform: translateY(-4px); box-shadow: var(--nf-shadow-lg); border-color: rgba(201,169,110,0.2); }

.nf-creator-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.nf-creator-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--nf-transition-slow); }
.nf-creator-card:hover .nf-creator-card-img img { transform: scale(1.05); }
.nf-creator-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%); }

.nf-creator-card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.nf-creator-card-new-posts {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    background: var(--nf-red); color: var(--nf-white); font-size: 11px; font-weight: 700;
    padding: 4px 8px; border-radius: 12px; display: flex; align-items: center; gap: 4px;
}
.nf-creator-card-new-posts::before { content: ''; width: 6px; height: 6px; background: var(--nf-white); border-radius: 50%; }

.nf-creator-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 16px; z-index: 2; }
.nf-creator-card-name { font-family: var(--nf-font-serif); font-size: 18px; font-weight: 700; color: var(--nf-white); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.nf-verified-icon { width: 16px; height: 16px; color: var(--nf-gold); flex-shrink: 0; }
.nf-creator-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--nf-gray-400); margin-bottom: 12px; }
.nf-creator-card-price { background: rgba(201,169,110,0.15); color: var(--nf-gold); padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }

.nf-creator-card-cta {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
    background: linear-gradient(180deg, transparent, rgba(10,10,10,0.95));
    transform: translateY(100%); transition: transform var(--nf-transition); z-index: 3;
}
.nf-creator-card:hover .nf-creator-card-cta { transform: translateY(0); }
.nf-creator-card-cta .nf-btn { width: 100%; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.nf-trust-bar { background: var(--nf-charcoal); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); padding: 16px 0; overflow: hidden; }
.nf-trust-ticker { display: flex; align-items: center; gap: 48px; animation: nf-ticker 30s linear infinite; white-space: nowrap; }
.nf-trust-ticker-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--nf-gray-500); flex-shrink: 0; }
.nf-trust-ticker-item svg { color: var(--nf-gold); width: 16px; height: 16px; }
@keyframes nf-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   FOMO / LOCKED CONTENT
   ============================================================ */
.nf-fomo { background: linear-gradient(180deg, var(--nf-black), var(--nf-gray-900), var(--nf-black)); }
.nf-fomo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--nf-gap); }

.nf-locked-card { position: relative; border-radius: var(--nf-radius); overflow: hidden; aspect-ratio: 4/5; cursor: pointer; }
.nf-locked-card img { width: 100%; height: 100%; object-fit: cover; filter: blur(20px) brightness(0.6); transform: scale(1.1); }
.nf-locked-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(10,10,10,0.5); }

.nf-lock-icon {
    width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
}
.nf-lock-icon svg { width: 22px; height: 22px; color: var(--nf-gold); }

.nf-locked-card-text { font-size: 13px; color: var(--nf-gray-400); text-align: center; }
.nf-locked-card-text strong { display: block; color: var(--nf-white); font-size: 14px; margin-bottom: 2px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.nf-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.nf-step { position: relative; }
.nf-step-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.nf-step-icon svg { width: 28px; height: 28px; color: var(--nf-gold); }
.nf-step-num { font-family: var(--nf-font-accent); font-size: 48px; color: rgba(201,169,110,0.1); position: absolute; top: -10px; left: 50%; transform: translateX(-50%); }
.nf-step h3 { font-size: 18px; margin-bottom: 8px; }
.nf-step p { font-size: 14px; color: var(--nf-gray-500); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.nf-cta-section {
    background: linear-gradient(135deg, var(--nf-charcoal), var(--nf-gray-900));
    border-top: 1px solid rgba(201,169,110,0.1); border-bottom: 1px solid rgba(201,169,110,0.1);
    text-align: center; padding: 80px var(--nf-gap);
}
.nf-cta-section h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 16px; }
.nf-cta-section p { color: var(--nf-gray-400); margin-bottom: 32px; }
.nf-cta-micro { font-size: 12px; color: var(--nf-gray-600); margin-top: 12px; }

/* ============================================================
   CREATOR PROFILE
   ============================================================ */
.nf-profile-banner { position: relative; height: 320px; overflow: hidden; margin-top: 72px; }
.nf-profile-banner img { width: 100%; height: 100%; object-fit: cover; }
.nf-profile-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, var(--nf-black) 100%); }

.nf-profile-header {
    position: relative; z-index: 2; margin-top: -80px; padding: 0 var(--nf-gap);
    max-width: var(--nf-container); margin-left: auto; margin-right: auto;
    display: flex; align-items: flex-end; gap: 24px;
}
.nf-profile-avatar { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--nf-gold); overflow: hidden; flex-shrink: 0; box-shadow: var(--nf-shadow); }
.nf-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nf-profile-info h1 { font-size: 28px; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.nf-profile-handle { color: var(--nf-gray-500); font-size: 14px; margin-bottom: 8px; }
.nf-profile-bio { color: var(--nf-gray-400); font-size: 14px; max-width: 560px; margin-bottom: 16px; }

.nf-profile-stats { display: flex; gap: 24px; margin-bottom: 20px; }
.nf-profile-stat { text-align: center; }
.nf-profile-stat-num { font-family: var(--nf-font-accent); font-size: 24px; color: var(--nf-white); display: block; }
.nf-profile-stat-label { font-size: 11px; color: var(--nf-gray-500); text-transform: uppercase; letter-spacing: 0.5px; }

/* Subscribe card */
.nf-subscribe-card {
    background: var(--nf-charcoal); border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--nf-radius); padding: 24px; text-align: center; position: sticky; top: 96px;
}
.nf-subscribe-card h3 { font-size: 16px; margin-bottom: 4px; }
.nf-subscribe-price { font-family: var(--nf-font-accent); font-size: 36px; color: var(--nf-gold); margin-bottom: 4px; }
.nf-subscribe-price small { font-size: 14px; color: var(--nf-gray-500); font-family: var(--nf-font-sans); }

.nf-subscribe-perks { list-style: none; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); margin: 16px 0; text-align: left; }
.nf-subscribe-perks li { font-size: 13px; color: var(--nf-gray-300); padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.nf-subscribe-perks li::before { content: '\2713'; color: var(--nf-gold); font-weight: 700; }
.nf-subscribe-card .nf-btn { width: 100%; margin-bottom: 8px; }
.nf-subscribe-micro { font-size: 11px; color: var(--nf-gray-600); }

/* Tiers */
.nf-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.nf-tier { background: var(--nf-charcoal); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--nf-radius); padding: 20px; text-align: center; transition: all var(--nf-transition); }
.nf-tier.nf-tier-popular { border-color: var(--nf-gold); box-shadow: var(--nf-glow-gold); transform: scale(1.05); position: relative; }
.nf-tier-popular-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--nf-gold); color: var(--nf-black); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 12px; border-radius: 10px; }
.nf-tier-name { font-family: var(--nf-font-accent); font-size: 16px; letter-spacing: 1px; color: var(--nf-gray-400); margin-bottom: 8px; }
.nf-tier-price { font-family: var(--nf-font-accent); font-size: 32px; color: var(--nf-white); margin-bottom: 4px; }
.nf-tier-price small { font-size: 13px; color: var(--nf-gray-500); font-family: var(--nf-font-sans); }
.nf-tier-features { list-style: none; padding: 12px 0; font-size: 13px; color: var(--nf-gray-400); text-align: left; }
.nf-tier-features li { padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.nf-tier-features li::before { content: '\2713'; color: var(--nf-gold); font-weight: 700; font-size: 12px; }

/* Content feed / posts */
.nf-content-feed { display: flex; flex-direction: column; gap: 24px; }
.nf-post { background: var(--nf-charcoal); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--nf-radius); overflow: hidden; }
.nf-post-header { display: flex; align-items: center; gap: 12px; padding: 16px; }
.nf-post-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; }
.nf-post-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nf-post-author { font-weight: 600; color: var(--nf-white); font-size: 14px; }
.nf-post-time { font-size: 12px; color: var(--nf-gray-500); }
.nf-post-text { padding: 0 16px 16px; font-size: 14px; color: var(--nf-gray-300); }
.nf-post-media { position: relative; }
.nf-post-media img { width: 100%; }
.nf-post-locked { position: relative; }
.nf-post-locked img { filter: blur(24px) brightness(0.5); transform: scale(1.05); }
.nf-post-locked-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(10,10,10,0.4); }

.nf-post-actions { display: flex; align-items: center; gap: 20px; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.04); }
.nf-post-action { display: flex; align-items: center; gap: 6px; color: var(--nf-gray-500); font-size: 13px; background: none; border: none; cursor: pointer; transition: color var(--nf-transition); }
.nf-post-action:hover { color: var(--nf-gold); }
.nf-post-action svg { width: 18px; height: 18px; }

/* ============================================================
   BECOME A CREATOR
   ============================================================ */
.nf-creator-hero { padding: 140px 0 80px; text-align: center; background: linear-gradient(180deg, var(--nf-charcoal), var(--nf-black)); }
.nf-creator-hero h1 em { color: var(--nf-gold); font-style: italic; }

.nf-earnings-calc { background: var(--nf-charcoal); border: 1px solid rgba(201,169,110,0.15); border-radius: var(--nf-radius-lg); padding: 40px; max-width: 560px; margin: 0 auto; }
.nf-calc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.nf-calc-row label { font-size: 14px; color: var(--nf-gray-400); }
.nf-calc-input { width: 120px; padding: 10px 14px; background: var(--nf-gray-900); border: 1px solid var(--nf-gray-700); border-radius: var(--nf-radius-sm); color: var(--nf-white); font-size: 16px; font-family: var(--nf-font-sans); text-align: right; }
.nf-calc-input:focus { outline: none; border-color: var(--nf-gold); }
.nf-calc-result { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.nf-calc-result-label { font-size: 13px; color: var(--nf-gray-500); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.nf-calc-result-amount { font-family: var(--nf-font-accent); font-size: 48px; color: var(--nf-gold); }

/* ============================================================
   AGE GATE
   ============================================================ */
.nf-age-gate { position: fixed; inset: 0; z-index: 9999; background: var(--nf-black); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; text-align: center; padding: var(--nf-gap); }
.nf-age-gate h2 { font-size: 28px; }
.nf-age-gate p { color: var(--nf-gray-500); max-width: 400px; }
.nf-age-gate-actions { display: flex; gap: 16px; }

/* ============================================================
   FORMS
   ============================================================ */
.nf-form-group { margin-bottom: 20px; }
.nf-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--nf-gray-300); margin-bottom: 6px; }
.nf-input {
    width: 100%; padding: 12px 16px; background: var(--nf-gray-900);
    border: 1px solid var(--nf-gray-700); border-radius: var(--nf-radius-sm);
    color: var(--nf-white); font-size: 15px; font-family: var(--nf-font-sans);
    transition: border-color var(--nf-transition);
}
.nf-input:focus { outline: none; border-color: var(--nf-gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1); }
.nf-input::placeholder { color: var(--nf-gray-600); }
textarea.nf-input { min-height: 120px; resize: vertical; }
select.nf-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* Auth pages */
.nf-auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 72px var(--nf-gap); }
.nf-auth-card { background: var(--nf-charcoal); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--nf-radius-lg); padding: 48px 40px; width: 100%; max-width: 440px; text-align: center; }
.nf-auth-card h1 { font-size: 28px; margin-bottom: 8px; }
.nf-auth-card .nf-auth-sub { color: var(--nf-gray-500); font-size: 14px; margin-bottom: 32px; }
.nf-social-auth { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.nf-social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; border-radius: var(--nf-radius-sm); border: 1px solid var(--nf-gray-700); background: transparent; color: var(--nf-white); font-size: 14px; font-weight: 500; cursor: pointer; transition: all var(--nf-transition); font-family: var(--nf-font-sans); }
.nf-social-btn:hover { border-color: var(--nf-gold); background: rgba(201,169,110,0.05); }
.nf-auth-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; color: var(--nf-gray-600); font-size: 12px; }
.nf-auth-divider::before, .nf-auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--nf-gray-700); }

/* ============================================================
   TOAST
   ============================================================ */
.nf-toast {
    position: fixed; bottom: 24px; left: 24px; z-index: 9000;
    background: var(--nf-charcoal); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--nf-radius-sm); padding: 12px 20px; font-size: 13px;
    color: var(--nf-gray-300); box-shadow: var(--nf-shadow);
    display: flex; align-items: center; gap: 10px;
    animation: nf-toast-in 0.4s ease, nf-toast-out 0.4s ease 5s forwards; max-width: 320px;
}
.nf-toast-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--nf-gray-700); flex-shrink: 0; overflow: hidden; }
.nf-toast-avatar img { width: 100%; height: 100%; object-fit: cover; }
@keyframes nf-toast-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes nf-toast-out { from { opacity: 1; } to { opacity: 0; transform: translateY(10px); } }

/* ============================================================
   FOOTER
   ============================================================ */
.nf-footer { background: var(--nf-charcoal); border-top: 1px solid rgba(255,255,255,0.04); padding: 64px 0 32px; }
.nf-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.nf-footer-about p { font-size: 14px; color: var(--nf-gray-500); margin-top: 12px; max-width: 320px; }
.nf-footer-heading { font-family: var(--nf-font-accent); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--nf-white); margin-bottom: 16px; }
.nf-footer-links { list-style: none; }
.nf-footer-links li { margin-bottom: 10px; }
.nf-footer-links a { color: var(--nf-gray-500); font-size: 14px; transition: color var(--nf-transition); }
.nf-footer-links a:hover { color: var(--nf-gold); }
.nf-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); font-size: 13px; color: var(--nf-gray-600); }
.nf-footer-bottom a { color: var(--nf-gray-600); margin-left: 20px; }
.nf-footer-bottom a:hover { color: var(--nf-gold); }

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.nf-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.06); padding: 8px 0 calc(8px + env(safe-area-inset-bottom)); }
.nf-bottom-nav-inner { display: flex; align-items: center; justify-content: space-around; }
.nf-bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--nf-gray-600); font-size: 10px; text-decoration: none; transition: color var(--nf-transition); padding: 4px 12px; }
.nf-bottom-nav-item.active, .nf-bottom-nav-item:hover { color: var(--nf-gold); }
.nf-bottom-nav-item svg { width: 22px; height: 22px; }

/* Sticky mobile subscribe */
.nf-mobile-subscribe-bar { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .nf-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nf-tiers { grid-template-columns: 1fr; }
    .nf-tier.nf-tier-popular { transform: none; }
}

@media (max-width: 768px) {
    .nf-nav { display: none; }
    .nf-mobile-toggle { display: flex; }
    .nf-bottom-nav { display: block; }
    .nf-hero-content h1 { font-size: 2.2rem; }
    .nf-creators-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nf-fomo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nf-steps { grid-template-columns: 1fr; gap: 32px; }
    .nf-section { padding: 64px 0; }
    .nf-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .nf-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .nf-profile-header { flex-direction: column; align-items: center; text-align: center; }
    .nf-profile-avatar { width: 96px; height: 96px; }
    .nf-profile-stats { justify-content: center; }
    .nf-mobile-subscribe-bar {
        display: flex; position: fixed; bottom: 60px; left: 0; right: 0; z-index: 998;
        background: rgba(26,26,26,0.95); backdrop-filter: blur(20px);
        padding: 12px var(--nf-gap); align-items: center; justify-content: space-between;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nf-auth-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .nf-creators-grid { grid-template-columns: 1fr; }
    .nf-fomo-grid { grid-template-columns: 1fr 1fr; }
    .nf-hero-ctas { flex-direction: column; }
    .nf-hero-ctas .nf-btn { width: 100%; }
}

/* Mobile nav open */
body.nf-nav-open .nf-nav {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); z-index: 9998;
    justify-content: center; align-items: center; gap: 24px;
}
body.nf-nav-open .nf-nav a { font-size: 24px; font-family: var(--nf-font-serif); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--nf-black); }
::-webkit-scrollbar-thumb { background: var(--nf-gray-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--nf-gray-600); }

/* Utilities */
.nf-text-gold { color: var(--nf-gold); }
.nf-text-center { text-align: center; }
.nf-hidden { display: none !important; }

/* Profile layout */
.nf-profile-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; max-width: var(--nf-container); margin: 40px auto; padding: 0 var(--nf-gap); }
@media (max-width: 1024px) { .nf-profile-layout { grid-template-columns: 1fr; } }

/* Category filters */
.nf-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.nf-filter-btn {
    padding: 8px 18px; border-radius: 20px; border: 1px solid var(--nf-gray-700);
    background: transparent; color: var(--nf-gray-400); font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all var(--nf-transition); font-family: var(--nf-font-sans);
}
.nf-filter-btn:hover, .nf-filter-btn.active { border-color: var(--nf-gold); color: var(--nf-gold); background: rgba(201,169,110,0.08); }

/* Engagement proof sidebar */
.nf-recent-subs { margin-top: 20px; }
.nf-recent-subs h4 { font-size: 13px; color: var(--nf-gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; font-family: var(--nf-font-sans); }
.nf-recent-sub { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; color: var(--nf-gray-400); }
.nf-recent-sub-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--nf-green); flex-shrink: 0; }
.nf-recent-sub-time { margin-left: auto; font-size: 11px; color: var(--nf-gray-600); }

/* Viewing now */
.nf-viewing-now { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--nf-gray-500); margin-top: 12px; justify-content: center; }
.nf-viewing-now .nf-live-dot { width: 6px; height: 6px; background: var(--nf-green); border-radius: 50%; animation: nf-pulse 2s infinite; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.nf-faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nf-faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 0; background: none; border: none; cursor: pointer;
    font-family: var(--nf-font-sans); font-size: 15px; font-weight: 600; color: var(--nf-white); text-align: left;
}
.nf-faq-question:hover { color: var(--nf-gold); }
.nf-faq-question svg { flex-shrink: 0; color: var(--nf-gray-500); transition: transform var(--nf-transition); }
.nf-faq-item.open .nf-faq-question svg { transform: rotate(180deg); }
.nf-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.nf-faq-item.open .nf-faq-answer { max-height: 500px; }
.nf-faq-answer p { font-size: 14px; color: var(--nf-gray-400); padding-bottom: 20px; line-height: 1.7; }
.nf-faq-answer ul { padding: 0 0 20px 20px; }
.nf-faq-answer li { font-size: 14px; color: var(--nf-gray-400); padding: 3px 0; }

/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.nf-legal-content h2 { font-size: 20px; margin-top: 40px; margin-bottom: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.nf-legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.nf-legal-content h3 { font-size: 16px; margin-top: 24px; margin-bottom: 8px; }
.nf-legal-content p { font-size: 15px; color: var(--nf-gray-400); line-height: 1.8; }
.nf-legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.nf-legal-content li { font-size: 15px; color: var(--nf-gray-400); padding: 4px 0; line-height: 1.7; }

/* ============================================================
   MESSAGES LAYOUT
   ============================================================ */
.nf-messages-layout { display: grid; grid-template-columns: 340px 1fr; gap: 0; height: calc(100vh - 172px); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--nf-radius); overflow: hidden; }
.nf-msg-sidebar { background: var(--nf-charcoal); border-right: 1px solid rgba(255,255,255,0.06); overflow-y: auto; }
.nf-msg-sidebar-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nf-msg-search { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nf-msg-list { overflow-y: auto; }
.nf-msg-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; transition: background var(--nf-transition); border-bottom: 1px solid rgba(255,255,255,0.03); }
.nf-msg-item:hover { background: rgba(255,255,255,0.03); }
.nf-msg-item.active { background: rgba(201,169,110,0.08); border-left: 3px solid var(--nf-gold); }
.nf-msg-item-avatar { position: relative; flex-shrink: 0; }
.nf-msg-online-dot { position: absolute; bottom: 1px; right: 1px; width: 10px; height: 10px; background: var(--nf-green); border-radius: 50%; border: 2px solid var(--nf-charcoal); }
.nf-msg-item-info { flex: 1; min-width: 0; }
.nf-msg-item-name { font-size: 14px; font-weight: 600; color: var(--nf-white); display: flex; align-items: center; gap: 4px; }
.nf-msg-item-name .nf-verified-icon { width: 14px; height: 14px; }
.nf-msg-item-preview { font-size: 12px; color: var(--nf-gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nf-msg-item-time { font-size: 11px; color: var(--nf-gray-600); flex-shrink: 0; }
.nf-msg-chat { background: var(--nf-gray-900); display: flex; align-items: center; justify-content: center; }
.nf-msg-empty { text-align: center; padding: 40px; }

@media (max-width: 768px) {
    .nf-messages-layout { grid-template-columns: 1fr; height: auto; }
    .nf-msg-chat { min-height: 400px; }
}

/* ============================================================
   CREATOR DASHBOARD
   ============================================================ */
.nf-dash-stat {
    background: var(--nf-charcoal); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--nf-radius); padding: 20px;
}
.nf-dash-stat-label { font-size: 12px; color: var(--nf-gray-500); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.nf-dash-stat-num { font-family: var(--nf-font-accent); font-size: 32px; color: var(--nf-white); }
.nf-dash-stat-change { font-size: 12px; color: var(--nf-gray-500); margin-top: 4px; }
.nf-dash-stat-up { color: var(--nf-green); }
.nf-dash-stat-down { color: var(--nf-red); }

.nf-dash-action {
    display: flex; align-items: center; gap: 12px; padding: 12px;
    border-radius: var(--nf-radius-sm); color: var(--nf-gray-300); font-size: 14px;
    transition: all var(--nf-transition); text-decoration: none;
}
.nf-dash-action:hover { background: rgba(201,169,110,0.08); color: var(--nf-gold); }
.nf-dash-action svg { color: var(--nf-gray-500); }
.nf-dash-action:hover svg { color: var(--nf-gold); }

@media (max-width: 768px) {
    .nf-dash-stat-num { font-size: 24px; }
}
