/* ===== CREATRIX - MAIN CSS ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
    --black: #000000;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a0505;
    --red-dark: #8B0000;
    --red: #CC0000;
    --red-flash: #FF0000;
    --red-glow: rgba(255, 0, 0, 0.4);
    --white: #ffffff;
    --white-soft: rgba(255,255,255,0.85);
    --white-muted: rgba(255,255,255,0.5);
    --white-faint: rgba(255,255,255,0.1);
    --gold: #C9A84C;
    --gradient-bg: linear-gradient(135deg, #000000 0%, #0d0000 30%, #1a0000 60%, #3d0000 100%);
    --gradient-hero: linear-gradient(160deg, #000000 0%, #0a0000 40%, #220000 70%, #8B0000 100%);
    --gradient-red: linear-gradient(135deg, #8B0000, #FF0000);
    --gradient-card: linear-gradient(145deg, rgba(20,0,0,0.9), rgba(10,0,0,0.95));
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --border-red: 1px solid rgba(255,0,0,0.3);
    --border-red-glow: 1px solid rgba(255,0,0,0.6);
    --shadow-red: 0 0 30px rgba(255,0,0,0.2);
    --shadow-red-strong: 0 0 50px rgba(255,0,0,0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--dark);
    background-image: var(--gradient-bg);
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== ANTI-SCREENSHOT OVERLAY ===== */
.protected-content {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.protected-content img,
.protected-content video {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-flash); }

/* ===== AGE GATE MODAL ===== */
#age-gate {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.age-gate-inner {
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    border: var(--border-red-glow);
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    box-shadow: var(--shadow-red-strong);
}

.age-gate-logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.age-gate-logo .creatri { color: #1a1a1a; -webkit-text-stroke: 1px rgba(255,255,255,0.3); }
.age-gate-logo .x-letter { color: var(--red-flash); text-shadow: 0 0 30px var(--red-flash), 0 0 60px rgba(255,0,0,0.5); }

.age-gate-warning {
    font-size: 1.1rem;
    color: var(--white-muted);
    margin-bottom: 1rem;
    font-family: var(--font-elegant);
    font-style: italic;
}

.age-gate-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.age-gate-sub {
    color: var(--white-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age-yes {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-age-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,0,0,0.6);
}

.btn-age-no {
    background: transparent;
    color: var(--white-muted);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-age-no:hover { border-color: rgba(255,255,255,0.5); color: white; }

.age-gate-legal {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--white-faint);
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-red);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0,0,0,0.97);
    box-shadow: 0 2px 20px rgba(255,0,0,0.15);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0;
}

.logo .creatri {
    color: #0a0a0a;
    -webkit-text-stroke: 1.5px rgba(200,180,180,0.5);
    text-shadow: 0 1px 3px rgba(255,255,255,0.15);
}

.logo .x-letter {
    color: var(--red-flash);
    font-size: 2.6rem;
    text-shadow: 0 0 20px var(--red-flash), 0 0 40px rgba(255,0,0,0.6), 0 0 80px rgba(255,0,0,0.3);
    animation: pulse-x 3s ease-in-out infinite;
}

@keyframes pulse-x {
    0%, 100% { text-shadow: 0 0 20px var(--red-flash), 0 0 40px rgba(255,0,0,0.6); }
    50% { text-shadow: 0 0 30px var(--red-flash), 0 0 60px rgba(255,0,0,0.8), 0 0 100px rgba(255,0,0,0.4); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white-soft);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--red-flash); }

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 4px 20px rgba(255,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,0,0,0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--red-flash);
    color: var(--red-flash);
    box-shadow: 0 0 20px rgba(255,0,0,0.2);
}

.btn-outline-red {
    background: transparent;
    color: var(--red-flash);
    border: 1px solid var(--red-flash);
}

.btn-outline-red:hover {
    background: var(--red-flash);
    color: white;
    box-shadow: 0 0 30px rgba(255,0,0,0.4);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

.btn-full { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, #C9A84C, #F0D060);
    color: #000;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(139,0,0,0.15) 0%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--red-flash);
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,0,0,0.1);
    border: var(--border-red);
    color: var(--red-flash);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-logo {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-logo .creatri {
    color: #111;
    -webkit-text-stroke: 2px rgba(180,150,150,0.4);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-logo .x-letter {
    color: var(--red-flash);
    font-size: 1.2em;
    text-shadow: 0 0 40px var(--red-flash), 0 0 80px rgba(255,0,0,0.7), 0 0 120px rgba(255,0,0,0.4);
    animation: pulse-x 2s ease-in-out infinite;
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--white-soft);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-sub {
    font-size: 1rem;
    color: var(--white-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-flash);
    display: block;
    text-shadow: 0 0 20px rgba(255,0,0,0.4);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== SECTION BASE ===== */
section { padding: 5rem 2rem; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-title span { color: var(--red-flash); }

.section-subtitle {
    text-align: center;
    color: var(--white-muted);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== CARDS ===== */
.card {
    background: var(--gradient-card);
    border: var(--border-red);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(255,0,0,0.6);
    box-shadow: var(--shadow-red);
    transform: translateY(-4px);
}

/* ===== HOW IT WORKS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--gradient-card);
    border: var(--border-red);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-red-strong); }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gradient-card);
    border: var(--border-red);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--red-flash);
    box-shadow: var(--shadow-red-strong);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
}

.pricing-type {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--red-flash);
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--red-flash);
}

.pricing-period {
    color: var(--white-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--white-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--red-flash);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== FORMS ===== */
.form-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-bg);
}

.form-container {
    width: 100%;
    max-width: 700px;
}

.form-card {
    background: rgba(10,0,0,0.95);
    border: var(--border-red-glow);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-red-strong);
}

.form-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--white-muted);
    font-family: var(--font-elegant);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-soft);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-label .required { color: var(--red-flash); margin-left: 3px; }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--red-flash);
    background: rgba(255,0,0,0.05);
    box-shadow: 0 0 20px rgba(255,0,0,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-select option { background: #1a0000; }

.form-textarea { resize: vertical; min-height: 100px; }

.form-hint {
    font-size: 0.8rem;
    color: var(--white-muted);
    margin-top: 0.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== UPLOAD ZONES ===== */
.upload-zone {
    border: 2px dashed rgba(255,0,0,0.3);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255,0,0,0.03);
}

.upload-zone:hover {
    border-color: var(--red-flash);
    background: rgba(255,0,0,0.08);
}

.upload-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.upload-text { color: var(--white-soft); font-size: 0.9rem; margin-bottom: 0.5rem; }
.upload-hint { color: var(--white-muted); font-size: 0.8rem; }

/* ===== STEPS INDICATOR ===== */
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white-muted);
    transition: var(--transition);
}

.step.active .step-number {
    border-color: var(--red-flash);
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 0 15px rgba(255,0,0,0.4);
}

.step.done .step-number {
    border-color: var(--red-dark);
    background: var(--red-dark);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    color: var(--white-muted);
    letter-spacing: 0.5px;
}

.step.active .step-label { color: var(--red-flash); }

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 0.5rem;
    max-width: 60px;
}

.step-line.done { background: var(--red-dark); }

/* ===== CHECKBOX & RADIO ===== */
.checkbox-group, .radio-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--red-flash);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label,
.radio-group label {
    font-size: 0.85rem;
    color: var(--white-soft);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group label a,
.radio-group label a {
    color: var(--red-flash);
    text-decoration: underline;
}

/* ===== ALERT / NOTICE ===== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.alert-info {
    background: rgba(0,100,200,0.1);
    border: 1px solid rgba(0,100,200,0.3);
    color: #7ab8f5;
}

.alert-warning {
    background: rgba(200,150,0,0.1);
    border: 1px solid rgba(200,150,0,0.3);
    color: #f5c842;
}

.alert-success {
    background: rgba(0,150,80,0.1);
    border: 1px solid rgba(0,150,80,0.3);
    color: #6edd9f;
}

.alert-error {
    background: rgba(255,0,0,0.1);
    border: var(--border-red-glow);
    color: #ff8888;
}

/* ===== DASHBOARD ===== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    padding-top: 70px;
}

.sidebar {
    background: rgba(5,0,0,0.95);
    border-right: var(--border-red);
    padding: 2rem 0;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    width: 260px;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-logo {
    padding: 0 1.5rem 2rem;
    border-bottom: var(--border-red);
    margin-bottom: 1rem;
}

.sidebar-nav { list-style: none; }

.sidebar-nav li { margin: 0.2rem 0; }

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    color: var(--white);
    background: rgba(255,0,0,0.05);
    border-left-color: var(--red-dark);
}

.sidebar-nav a.active {
    color: var(--red-flash);
    background: rgba(255,0,0,0.08);
    border-left-color: var(--red-flash);
}

.sidebar-nav .nav-icon { width: 20px; text-align: center; font-size: 1rem; }

.sidebar-section-title {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-badge {
    margin-left: auto;
    background: var(--red-flash);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
}

.dashboard-main {
    margin-left: 260px;
    padding: 2rem;
    min-height: calc(100vh - 70px);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
}

.dashboard-subtitle {
    color: var(--white-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* ===== STATS CARDS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--gradient-card);
    border: var(--border-red);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,0,0,0.1), transparent);
}

.stat-card-label {
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stat-card-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.stat-card-change {
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.positive { color: #6edd9f; }
.negative { color: #ff8888; }

.stat-card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* ===== PROFILE CARD ===== */
.profile-header {
    background: var(--gradient-card);
    border: var(--border-red);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: white;
    border: 3px solid var(--red-flash);
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info { flex: 1; }

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.profile-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #6edd9f;
    background: rgba(110,221,159,0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(110,221,159,0.2);
}

.profile-status.pending { color: #f5c842; border-color: rgba(245,200,66,0.2); background: rgba(245,200,66,0.1); }
.profile-status.inactive { color: #ff8888; border-color: rgba(255,136,136,0.2); background: rgba(255,136,136,0.1); }

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* ===== MEDIA GRID ===== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.media-item {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border: var(--border-red);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.media-item:hover { border-color: var(--red-flash); }

.media-item img, .media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.media-item:hover .media-overlay { opacity: 1; }

.media-type-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-private { background: var(--red-dark); color: white; }
.badge-public { background: rgba(110,221,159,0.3); color: #6edd9f; border: 1px solid rgba(110,221,159,0.4); }
.badge-premium { background: rgba(201,168,76,0.3); color: #C9A84C; border: 1px solid rgba(201,168,76,0.4); }

/* ===== CHAT ===== */
.chat-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    height: calc(100vh - 150px);
    background: var(--gradient-card);
    border: var(--border-red);
    border-radius: var(--radius);
    overflow: hidden;
}

.chat-list {
    border-right: var(--border-red);
    overflow-y: auto;
}

.chat-list-header {
    padding: 1.5rem;
    border-bottom: var(--border-red);
    font-weight: 600;
    font-size: 0.9rem;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}

.chat-item:hover, .chat-item.active {
    background: rgba(255,0,0,0.05);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-info { flex: 1; overflow: hidden; }
.chat-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.chat-preview { font-size: 0.8rem; color: var(--white-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-time { font-size: 0.75rem; color: var(--white-muted); flex-shrink: 0; }
.chat-unread { background: var(--red-flash); color: white; font-size: 0.7rem; font-weight: 700; padding: 0.1rem 0.4rem; border-radius: 10px; }

.chat-window { display: flex; flex-direction: column; }

.chat-header {
    padding: 1.5rem;
    border-bottom: var(--border-red);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(5,0,0,0.5);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.message.outgoing { align-self: flex-end; align-items: flex-end; }
.message.incoming { align-self: flex-start; align-items: flex-start; }

.message-bubble {
    padding: 0.8rem 1.2rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message.outgoing .message-bubble {
    background: var(--gradient-red);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.incoming .message-bubble {
    background: rgba(255,255,255,0.08);
    color: var(--white-soft);
    border-bottom-left-radius: 4px;
}

.message-time { font-size: 0.7rem; color: var(--white-muted); }

.chat-input-area {
    padding: 1.5rem;
    border-top: var(--border-red);
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    background: rgba(5,0,0,0.5);
}

.chat-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: none;
    outline: none;
    transition: var(--transition);
}

.chat-input:focus {
    border-color: var(--red-flash);
    background: rgba(255,0,0,0.05);
}

/* ===== LIVE BADGE ===== */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--red-flash);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    text-transform: uppercase;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255,0,0,0); }
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

/* ===== STORY RING ===== */
.story-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-red);
}

.story-ring .story-avatar {
    border: 3px solid var(--dark);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

/* ===== SEARCH ===== */
.search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--red-flash);
    box-shadow: 0 0 20px rgba(255,0,0,0.1);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.search-bar input::placeholder { color: rgba(255,255,255,0.3); }

.search-icon { color: var(--white-muted); font-size: 1rem; }

/* ===== NOTIFICATION ===== */
.notification-dropdown {
    position: relative;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--red-flash);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: rgba(10,0,0,0.98);
    border: var(--border-red-glow);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 550px;
    box-shadow: var(--shadow-red-strong);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    color: var(--white-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover { color: var(--red-flash); }

/* ===== FOOTER ===== */
footer {
    background: rgba(0,0,0,0.97);
    border-top: var(--border-red);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo { margin-bottom: 1rem; font-size: 1.8rem; }
.footer-brand p { color: var(--white-muted); font-size: 0.85rem; line-height: 1.7; max-width: 250px; }
.footer-brand-tag { font-family: var(--font-elegant); font-style: italic; color: var(--white-muted); font-size: 0.9rem; margin-top: 0.5rem; display: block; }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--red-flash); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--red-flash); }

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid var(--red-flash);
    border-radius: 6px;
    color: var(--red-flash);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: var(--border-red);
}

.legal-date {
    color: var(--white-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--red-flash);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,0,0,0.2);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li { margin-bottom: 0.5rem; }

.legal-content strong { color: var(--white); }

.legal-content .highlight-box {
    background: rgba(255,0,0,0.07);
    border: var(--border-red);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* ===== WATERMARK ON IMAGES ===== */
.watermarked-content {
    position: relative;
    display: inline-block;
}

.watermarked-content::after {
    content: attr(data-username);
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
    overflow: hidden;
    word-break: break-all;
}

/* ===== VERIFICATION BADGE ===== */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--red-flash);
    font-size: 0.8rem;
}

/* ===== SUBSCRIPTION PRICE TAG ===== */
.price-tag {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--red-flash);
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .dashboard-main { margin-left: 0; }
    .chat-container { grid-template-columns: 1fr; }
    .chat-list { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .hero-logo { font-size: clamp(3rem, 20vw, 6rem); }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .form-card { padding: 2rem 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
}

/* ===== UTILITIES ===== */
.text-red { color: var(--red-flash); }
.text-muted { color: var(--white-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 2rem 0;
}
.divider.red { background: rgba(255,0,0,0.2); }
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.tag-red { background: rgba(255,0,0,0.15); color: var(--red-flash); border: 1px solid rgba(255,0,0,0.3); }
.tag-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.tag-green { background: rgba(110,221,159,0.15); color: #6edd9f; border: 1px solid rgba(110,221,159,0.3); }
