/* ==========================================================================
   NextLevel Prompts — Master-Prompt Editorial Design System
   Curated by Abdul Rehman | Inspired by master-prompt.store
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Master-Prompt Palette */
    --bg-page: #f8fafc;
    --bg-white: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-card: #ffffff;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-focus: #0f172a;
    --border-dashed: #cbd5e1;
    
    /* Primary Slate & Gold Accents */
    --primary: #0f172a;
    --primary-hover: #1e293b;
    --primary-light: #f1f5f9;
    --primary-text: #0f172a;
    
    --accent-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gold: #f59e0b;
    --gold-hover: #d97706;
    --gold-light: #fef3c7;
    --gold-border: #fde68a;
    --gold-text: #92400e;
    
    --emerald: #10b981;
    --emerald-hover: #059669;
    --emerald-light: #ecfdf5;
    --emerald-text: #065f46;
    
    --danger: #ef4444;
    
    /* Typography */
    --font-serif: 'Merriweather', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 16px -2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 32px -4px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 14px 28px -6px rgba(15, 23, 42, 0.09), 0 4px 10px -2px rgba(15, 23, 42, 0.04);
    --shadow-gold: 0 4px 14px rgba(245, 158, 11, 0.25);
    
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

button {
    font-family: inherit;
}

.code-font {
    font-family: 'JetBrains Mono', monospace;
}

/* Announcement Notice Bar */
.top-announcement {
    background: #0f172a;
    color: #f8fafc;
    font-size: 12.5px;
    font-weight: 500;
    padding: 8px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-announcement b {
    color: #38bdf8;
}

.top-announcement .badge-pill {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-right: 6px;
}

/* Clean Header Navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

.brand-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.4px;
}

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

.brand-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    margin-top: -3px;
}

/* Header Search */
.header-search-wrap {
    flex: 1;
    max-width: 440px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-wrap svg {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.header-search-wrap input {
    width: 100%;
    height: 40px;
    padding: 0 38px 0 40px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13.5px;
    color: var(--text-heading);
    outline: none;
    transition: var(--transition);
}

.header-search-wrap input:focus {
    background: var(--bg-white);
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-body);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.active {
    color: var(--primary);
}

/* Header Buttons */
.auth-btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.auth-btn-nav:hover {
    border-color: #cbd5e1;
    background: var(--bg-subtle);
}

.user-profile-badge {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    padding: 4px 12px 4px 4px;
    border-radius: var(--radius-full);
    cursor: pointer;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.nav-cta-btn.is-unlocked-badge {
    background: var(--emerald);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

/* Mobile Toggle */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-heading);
    border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 850;
    padding: 16px 20px 24px;
}

.mobile-drawer.open {
    display: block;
}

.mobile-drawer a {
    display: block;
    padding: 12px 0;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-heading);
    border-bottom: 1px solid var(--border-light);
}

/* Hero Section (soniprompts Minimalist Style) */
.hero-section {
    padding: 44px 0 32px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary-text);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.22;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.hero-title span {
    background: linear-gradient(135deg, #4f46e5, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Daily Fresh Niches Guarantee Banner */
.daily-update-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-light);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--emerald-text);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.08);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    background: var(--bg-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.hero-stat-badge b {
    color: var(--text-heading);
}

/* Access State Banner */
.access-banner-container {
    margin: 24px auto 0;
}

.access-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    gap: 16px;
}

.access-banner.locked-state {
    border-left: 4px solid var(--accent-amber);
}

.access-banner.unlocked-state {
    border-left: 4px solid var(--emerald);
    background: var(--emerald-light);
}

.access-banner-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lock-circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.access-banner h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
}

.access-banner p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Filters & Category Tabs */
.controls-section {
    padding: 24px 0 16px;
    background: var(--bg-page);
}

.filter-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 14px;
    flex-wrap: wrap;
}

.type-filter-group {
    display: inline-flex;
    background: var(--bg-white);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
}

.type-tab {
    border: none;
    background: transparent;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.type-tab:hover {
    color: var(--text-heading);
}

.type-tab.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.25);
}

.badge-count {
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.08);
}

.type-tab.active .badge-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.view-status-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Category Horizontal Chips */
.category-scroll-wrap {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.category-chip {
    flex-shrink: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.category-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.category-chip.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Prompts Grid Section */
.prompts-grid-section {
    padding: 8px 0 48px;
}

.prompts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

/* Prompt Card (soniprompts Style) */
.prompt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.prompt-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: #cbd5e1;
}

.card-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--bg-subtle);
    overflow: hidden;
}

.card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.prompt-card:hover .card-thumb-wrap img {
    transform: scale(1.04);
}

.card-badge-row {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.card-access-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-xs);
}

.card-access-badge.badge-free {
    background: rgba(5, 150, 105, 0.92);
    color: #ffffff;
}

.card-access-badge.badge-premium {
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
}

.card-id-tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--text-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-cat {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.35;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.card-price-label {
    font-size: 12px;
    font-weight: 700;
}

.card-price-label.free-text {
    color: var(--emerald);
}

.card-price-label.premium-text {
    color: var(--text-muted);
}

.card-action-btn {
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-card-free {
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    font-weight: 700;
}

.btn-card-free:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.btn-card-prem {
    background: #0f172a;
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.35);
    font-weight: 700;
}

.btn-card-prem:hover {
    background: #f59e0b;
    color: #0f172a;
    border-color: #f59e0b;
}

/* Prompt Details Modal Elements */
.modal-prompt-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-subtle);
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-prompt-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.compat-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.c-badge {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.modal-prompt-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
}

.prompt-text-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-heading);
    word-break: break-word;
    max-height: 240px;
    overflow-y: auto;
}

.prompt-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-md);
}

.prompt-locked-overlay h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.prompt-locked-overlay p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.modal-prompt-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

/* Empty State & Pagination */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.empty-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.pagination-wrap {
    text-align: center;
    margin-top: 36px;
}

/* Pricing Section (Clean White Dual Cards) */
.pricing-section {
    padding: 64px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    max-width: 680px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-subtitle {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
}

/* Dual Pricing Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 440px));
    justify-content: center;
    gap: 28px;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-card.vip-plan {
    border: 2px solid var(--primary);
    box-shadow: 0 12px 32px -4px rgba(79, 70, 229, 0.15);
}

.popular-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #059669);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.plan-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    color: var(--text-body);
    margin-bottom: 12px;
    align-self: flex-start;
}

.plan-badge.vip-badge {
    background: var(--primary-light);
    color: var(--primary-text);
}

.plan-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 14px 0 12px;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
}

.price-val {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -1px;
}

.price-period {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.daily-promise-box {
    background: var(--emerald-light);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--emerald-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    font-size: 13.5px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-features .chk {
    color: var(--emerald);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

/* General Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 12.5px;
}

.btn-lg {
    padding: 13px 26px;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.btn-emerald {
    background: var(--emerald);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

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

.btn-outline {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
}

.btn-outline:hover {
    background: var(--bg-subtle);
    border-color: #cbd5e1;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* Modals */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-backdrop.open,
.modal-backdrop.active {
    display: flex;
}

.modal-dialog {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 520px;
    position: relative;
    overflow: hidden;
    animation: modalFadeIn 0.25s ease;
}

.modal-dialog.modal-lg {
    max-width: 760px;
}

.modal-dialog.modal-sm {
    max-width: 420px;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: var(--text-heading);
}

.modal-content {
    padding: 28px;
}

.modal-header-clean {
    text-align: center;
    margin-bottom: 22px;
}

.modal-header-clean h3 {
    font-size: 21px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.modal-header-clean p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Social Auth Buttons (Google & Facebook) */
.social-auth-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-social-auth {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-google {
    background: #ffffff;
    border: 1px solid #dadce0;
    color: #3c4043;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #c6c9ce;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
}

.btn-facebook {
    background: #1877f2;
    border: 1px solid #1877f2;
    color: #ffffff;
}

.btn-facebook:hover {
    background: #166fe5;
    box-shadow: 0 2px 6px rgba(24, 119, 242, 0.3);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 18px 0;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    padding: 0 12px;
}

.form-group-clean {
    margin-bottom: 14px;
}

.form-group-clean label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.form-input-clean {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    color: var(--text-heading);
    outline: none;
    transition: var(--transition);
}

.form-input-clean:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

/* Plan Switcher in Payment Modal */
.modal-plan-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.plan-option-box {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    background: var(--bg-white);
}

.plan-option-box:hover {
    border-color: #cbd5e1;
}

.plan-option-box.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.plan-option-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.plan-option-price {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary);
}

.plan-option-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Bank Details Card in Modal */
.bank-info-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-row span {
    color: var(--text-muted);
}

.bank-row b {
    color: var(--text-heading);
    font-weight: 700;
}

.copy-mini-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    margin-left: 6px;
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #0f172a;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.25s ease;
}

@keyframes toastSlideIn {
    from { transform: translateY(12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Clean Footer */
.site-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 24px;
    font-size: 13.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 36px;
}

.f-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.f-links a, .f-links span {
    color: var(--text-muted);
    transition: var(--transition);
}

.f-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .header-search-wrap {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle-btn {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-plan-selector {
        grid-template-columns: 1fr;
    }
    
    .access-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .access-banner-right {
        width: 100%;
    }
    
    .access-banner-right .btn {
        width: 100%;
    }
    
    #heroGuestActions, #heroUserActions {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #heroGuestActions .btn, #heroUserActions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Real Auth Tabs & User Profile Popover */
.auth-nav-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.auth-nav-tab {
    flex: 1;
    text-align: center;
    padding: 9px 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: #64748b;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-nav-tab.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.user-profile-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-dropdown-popover {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 1000;
    display: none;
}

.user-dropdown-popover.show {
    display: block;
    animation: fadeInScale 0.2s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.password-wrap-box {
    position: relative;
    width: 100%;
}

.password-wrap-box input {
    padding-right: 38px;
}

.password-toggle-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 15px;
    color: #94a3b8;
    user-select: none;
}

.password-toggle-eye:hover {
    color: #475569;
}

/* Dedicated Auth Pages (Like soniprompts.com) */
.auth-page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.auth-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 440px;
    padding: 36px 30px;
}

.auth-card h1 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.auth-card-sub {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 24px;
}

.fld {
    margin-bottom: 16px;
    text-align: left;
}

.fld label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.fld input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: #ffffff;
    font-family: inherit;
}

.fld input:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.auth-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 13.5px;
    color: #64748b;
}

.auth-alt a {
    color: #0f172a;
    font-weight: 700;
    text-decoration: underline;
}

/* 6-Digit Email OTP Verification Component */
.otp-card-wrap {
    text-align: center;
}

.otp-icon-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.otp-alert-box {
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: #166534;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.otp-inputs-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
}

.otp-digit-box {
    width: 46px;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s;
    background: #f8fafc;
    color: #0f172a;
    font-family: 'JetBrains Mono', monospace;
}

.otp-digit-box:focus {
    border-color: #0f172a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

/* Account Dashboard Page */
.account-hero-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.account-user-header {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.account-avatar-large {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
}

.account-badge-vip {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.account-badge-pending {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Mobile Navigation Breakpoint */
@media (max-width: 868px) {
    .header-search-wrap {
        display: none !important;
    }
    .nav-links {
        display: none !important;
    }
    .mobile-toggle-btn {
        display: flex !important;
    }
}

/* ==========================================================================
   Featured Products & Services Catalog (PayFast & E-Commerce Compliance)
   ========================================================================== */
.products-catalog-section {
    padding: 64px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.product-item-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-item-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.product-item-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary-text);
    margin-bottom: 12px;
    align-self: flex-start;
}

.product-item-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-item-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-item-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
}

.product-item-features li {
    font-size: 12px;
    color: var(--text-body);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-item-features li span {
    color: var(--emerald);
    font-weight: 800;
}

.product-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.product-item-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-heading);
}

.product-item-price small {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badges-bar {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-badge-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-tag {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   Master-Prompt Component Extensions
   ========================================================================== */

.font-serif {
    font-family: var(--font-serif);
}

.hero-title, .section-title, .modal-prompt-title {
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

/* Master VIP All-Access Card */
.vip-allaccess-card {
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
    border: 1.5px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.vip-allaccess-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
}

.vip-allaccess-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vip-crown-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    flex-shrink: 0;
}

.vip-allaccess-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-allaccess-sub {
    font-size: 13.5px;
    color: var(--text-muted);
}

.vip-allaccess-sub strong {
    color: var(--text-heading);
}

/* Gold Action Button */
.btn-gold {
    background: #f59e0b !important;
    background: var(--accent-gold) !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: var(--transition);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    transform: translateY(-1px);
}

/* Master-Prompt Regional Tabs (🇵🇰 Pakistani vs 🌍 International) */
.region-tabs-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.region-tab {
    flex: 1;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-body);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.region-tab.active {
    background: #ffffff;
    border-color: #0f172a;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.region-tab-sub {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Interactive Payment Method Cards */
.pay-method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
}

.pay-method-card:hover {
    border-color: #94a3b8;
    background: #fafafa;
}

.pay-method-card.selected {
    border-color: #0f172a;
    background: #f8fafc;
    box-shadow: 0 0 0 1px #0f172a;
}

.pay-method-icon {
    font-size: 24px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pay-method-info {
    flex: 1;
}

.pay-method-name {
    font-weight: 800;
    font-size: 14px;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-method-copy-row {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #1e293b;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 8px;
    background: #f1f5f9;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.pay-method-copy-row:hover {
    background: #e2e8f0;
}

.copy-icon-btn {
    font-size: 11px;
    color: var(--text-muted);
}

/* Dashed Receipt Upload Container */
.dashed-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    padding: 26px 20px;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: var(--transition);
}

.dashed-upload-box:hover {
    border-color: #0f172a;
    background: #ffffff;
}

.dashed-upload-icon {
    font-size: 32px;
    color: #94a3b8;
    margin-bottom: 8px;
    display: block;
}

.dashed-upload-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-heading);
}

.dashed-upload-hint {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

.dashed-upload-preview {
    margin-top: 10px;
    text-align: center;
}

.dashed-upload-preview img {
    max-height: 180px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Monospace Blurred Prompt Teaser (Curiosity Hook) */
.prompt-teaser-card {
    border: 1.5px solid var(--gold-border);
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.prompt-teaser-code {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 18px;
    background: #0f172a;
    border-radius: 6px;
    padding: 14px 18px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.6;
    filter: blur(3.5px);
    user-select: none;
    opacity: 0.38;
    pointer-events: none;
}

.prompt-teaser-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.prompt-teaser-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.prompt-teaser-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 440px;
    line-height: 1.5;
    margin: 0 auto 20px;
}

/* ============================================================
   MASTER-PROMPT.STORE FULL EDITORIAL HOMEPAGE DESIGN SYSTEM
   ============================================================ */

.master-profile-header {
    padding-top: 16px;
    padding-bottom: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.master-banner-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    aspect-ratio: 24 / 7;
    max-height: 220px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.master-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.2);
}

.master-banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 16px;
}

.master-banner-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid #f59e0b;
    color: #fbbf24;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.master-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.master-avatar-wrap {
    position: relative;
    margin: -36px auto 10px;
    width: 72px;
    height: 72px;
    z-index: 4;
}

.master-avatar {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #ffffff;
    background: #0f172a;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 28px;
    font-weight: 800;
}

.master-verified-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: #0284c7;
    color: #ffffff;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.master-profile-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-top: 6px;
    letter-spacing: -0.01em;
}

.master-profile-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 6px auto 0;
    line-height: 1.5;
}

/* Master-Prompt VIP Hero Card */
.master-vip-hero-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #ffffff;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 20px auto 28px;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.18);
}

.master-vip-left h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: #ffffff;
}

.master-vip-left p {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.5;
}

.master-vip-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000000;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: 8px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: transform 0.15s, background 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.master-vip-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* Master-Prompt Tab Bar */
.master-tab-bar {
    display: flex;
    justify-content: center;
    gap: 6px;
    border-bottom: 1.5px solid #e2e8f0;
    margin: 0 auto 24px;
    max-width: 900px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.master-tab-btn {
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: #64748b;
    border: none;
    background: none;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.master-tab-btn:hover {
    color: #0f172a;
}

.master-tab-btn.active {
    color: #0f172a;
    border-bottom-color: #0f172a;
}

/* Master-Prompt Clean Search Input Bar */
.master-search-wrap {
    max-width: 900px;
    margin: 0 auto 22px;
    position: relative;
}

.master-search-input {
    width: 100%;
    padding: 12px 18px 12px 42px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.master-search-input:focus {
    border-color: #0f172a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.master-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .master-vip-hero-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
        gap: 14px;
    }
    .master-vip-left h3 {
        justify-content: center;
    }
    .master-vip-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   INDIVIDUAL PROMPT PAGE (prompt.html) — MASTER-PROMPT STYLE
   ============================================================ */

.prompt-page-wrap {
    padding: 24px 0 60px;
    background: #f8fafc;
    min-height: calc(100vh - 70px);
}

.prompt-page-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.back-to-library-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.back-to-library-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateX(-2px);
}

.prompt-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 32px;
}

.prompt-detail-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 32px;
    padding: 32px;
}

@media (max-width: 960px) {
    .prompt-detail-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 24px;
    }
}

.prompt-detail-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prompt-main-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.prompt-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.prompt-main-image-wrap:hover .prompt-main-image {
    transform: scale(1.03);
}

.prompt-access-overlay-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.prompt-access-overlay-badge.free {
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
}

.prompt-access-overlay-badge.vip {
    background: rgba(15, 23, 42, 0.92);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

.prompt-meta-spec-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 12.5px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.spec-val {
    color: #0f172a;
    font-weight: 800;
    font-family: var(--font-sans);
}

/* Prompt Body (Right Column) */
.prompt-detail-info {
    display: flex;
    flex-direction: column;
}

.prompt-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.prompt-page-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.95rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.28;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.prompt-compat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}

.compat-tag {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Prompt Formula Display Box */
.prompt-formula-section {
    margin-bottom: 22px;
}

.prompt-formula-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.prompt-formula-header h4 {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.prompt-full-code-box {
    background: #0f172a;
    border: 1.5px solid #1e293b;
    border-radius: 8px;
    padding: 20px;
    color: #f8fafc;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.7;
    white-space: pre-wrap;
    max-height: 380px;
    overflow-y: auto;
    position: relative;
    user-select: text;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

.prompt-action-bar {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.btn-copy-full-prompt {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000000;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
    transition: all 0.2s;
}

.btn-copy-full-prompt:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.btn-share-prompt {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 18px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-share-prompt:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Related Prompts Grid on Prompt Page */
.related-prompts-section {
    margin-top: 40px;
}

.related-section-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-section-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}






