/* ==============================================================================
   FSD Platform - Dark Theme & Modern Mobile-First PWA Stylesheet
   LGBT+ Inclusive, High-Security, High-Performance
============================================================================== */

:root {
    --bg-main: #0b0f19;
    --bg-card: #131b2e;
    --bg-card-hover: #1c2742;
    --bg-input: #1e293b;
    --border-color: #273553;
    
    --primary: #ec4899;
    --primary-hover: #db2777;
    --primary-glow: rgba(236, 72, 153, 0.25);
    
    --secondary: #8b5cf6;
    --secondary-hover: #7c3aed;
    
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;

    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --nav-height: 65px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    padding-bottom: calc(var(--nav-height) + 15px);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* -----------------------------------------------------------------------------
   Header
----------------------------------------------------------------------------- */
.app-header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 16px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.header-user-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guest-header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nickname {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 4px;
}

.btn-logout {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--danger);
    color: #fca5a5;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-logout:hover {
    background: var(--danger);
    color: #ffffff;
}

.admin-link-btn {
    border-color: var(--warning);
    color: #fcd34d;
}

.bottom-guest-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    z-index: 1000;
}

@media (max-width: 640px) {
    .d-none-mobile {
        display: none !important;
    }
}

.points-badge {
    background: #1e293b;
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.15s, border-color 0.15s;
}

.points-badge:hover {
    transform: scale(1.04);
    border-color: var(--primary);
}

.tier-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.tier-trial { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid #f59e0b; }
.tier-premium { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.tier-free { background: rgba(148, 163, 184, 0.2); color: #94a3b8; border: 1px solid #475569; }

.lang-selector select {
    background: var(--bg-input);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
}

/* -----------------------------------------------------------------------------
   Bottom Navigation Bar (Mobile / PWA)
----------------------------------------------------------------------------- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 500;
    width: 20%;
    height: 100%;
    transition: color 0.15s, transform 0.15s;
}

.nav-icon {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

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

.nav-action-btn .nav-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -12px;
    box-shadow: 0 4px 14px var(--primary-glow);
}

/* -----------------------------------------------------------------------------
   Map View & Controls
----------------------------------------------------------------------------- */
.map-view-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px - var(--nav-height));
}

.interactive-map {
    width: 100%;
    height: 100%;
    background: #0f172a;
    z-index: 10;
}

.map-controls-card {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    background: rgba(19, 27, 46, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    z-index: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.filters-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
}

.filter-select {
    background: var(--bg-input);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 5px 8px;
    font-size: 0.8rem;
}

.btn-icon {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-pill {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Custom Leaflet Map Marker */
.fsd-marker {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.15s;
}

.fsd-marker:hover {
    transform: scale(1.18);
}

.fsd-pulse-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.2);
    border: 1px dashed var(--primary);
    pointer-events: none;
}

/* -----------------------------------------------------------------------------
   Bottom Sheet for Activity Preview
----------------------------------------------------------------------------- */
.bottom-sheet {
    position: fixed;
    bottom: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 16px 20px;
    z-index: 600;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.25s ease-out;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-sheet.hidden {
    transform: translateY(120%);
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: #334155;
    border-radius: 2px;
    margin: 0 auto 12px auto;
    cursor: pointer;
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sheet-distance {
    font-size: 0.8rem;
    color: var(--accent);
    margin-left: 8px;
    font-weight: 600;
}

.sheet-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sheet-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.creator-mini-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-input);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
}

.avatar-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.creator-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.creator-tags {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sheet-actions {
    display: flex;
    gap: 10px;
}

/* -----------------------------------------------------------------------------
   Modals
----------------------------------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 16px;
}

.modal-backdrop.hidden {
    display: none;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.creator-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
    padding-bottom: 6px;
}

.gallery-img {
    width: 120px;
    height: 140px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.creator-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--bg-input);
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.creator-bio-box {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* -----------------------------------------------------------------------------
   Forms & Cards
----------------------------------------------------------------------------- */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 16px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

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

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 580px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--primary-glow);
    color: #ffffff;
}

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

.btn-outline:hover {
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.05);
}

.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 20px; font-size: 1rem; }
.btn-sm { padding: 6px 10px; font-size: 0.8rem; }

/* Alerts & Badges */
.alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.alert-info { background: rgba(6, 182, 212, 0.15); border: 1px solid var(--accent); color: #e0f2fe; }
.alert-success { background: rgba(16, 185, 129, 0.15); border: 1px solid var(--success); color: #d1fae5; }
.alert-warning { background: rgba(245, 158, 11, 0.15); border: 1px solid var(--warning); color: #fef3c7; }
.alert-danger { background: rgba(239, 68, 68, 0.15); border: 1px solid var(--danger); color: #fee2e2; }

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-category { background: rgba(236, 72, 153, 0.2); color: var(--primary); border: 1px solid var(--primary); }

/* -----------------------------------------------------------------------------
   Verification Page
----------------------------------------------------------------------------- */
.account-code-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.code-value {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 0 16px var(--primary-glow);
    margin: 6px 0;
}

.code-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.verification-step {
    background: var(--bg-input);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

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

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-body {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.input-with-button {
    display: flex;
    gap: 8px;
}

.photo-guidelines {
    background: rgba(0,0,0,0.25);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 10px 0;
}

.file-upload-zone {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    background: rgba(0,0,0,0.2);
}

.file-upload-zone input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* -----------------------------------------------------------------------------
   Subscription & Pricing
----------------------------------------------------------------------------- */
.discreet-guarantee-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.plan-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
}

.plan-price .amount {
    font-size: 2.2rem;
    font-weight: 900;
}

.plan-price .period {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.plan-features {
    list-style: none;
    margin: 18px 0;
    text-align: left;
    font-size: 0.85rem;
}

.plan-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* -----------------------------------------------------------------------------
   Chat View
----------------------------------------------------------------------------- */
.chat-wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px - var(--nav-height));
    max-width: 800px;
    margin: 0 auto;
}

.chat-header-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}

.chat-bubble.mine {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.chat-bubble.theirs {
    align-self: flex-start;
    background: var(--bg-input);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

.chat-time {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 4px;
    text-align: right;
}

.chat-input-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 10px 14px;
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 10px 16px;
    color: var(--text-main);
}

.meeting-drawer {
    background: #0f172a;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 0.85rem;
}

.meeting-drawer.hidden { display: none; }

/* -----------------------------------------------------------------------------
   Admin Panel
----------------------------------------------------------------------------- */
.admin-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.verif-card {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.verif-photos-comparison {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.photo-box {
    flex: 1;
    min-width: 180px;
}

.photo-tag {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.verif-img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    background: #000;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.highlight-code {
    background: #ec4899;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

.picker-map {
    height: 240px;
    border-radius: var(--radius-sm);
    margin: 10px 0;
    border: 1px solid var(--border-color);
}

/* -----------------------------------------------------------------------------
   Landing Page (SEO & Guest Homepage)
----------------------------------------------------------------------------- */
.landing-page {
    overflow-x: hidden;
}

.hero-section {
    padding: 60px 16px 50px 16px;
    background: radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.15), transparent 70%);
}

.hero-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid var(--primary);
    color: #f472b6;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pulse-btn {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(236, 72, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

.hero-perks {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.bg-card-alt {
    background: #0d1424;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.8rem;
    }
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}

.compare-card.compare-new {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.card-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.tag-bad { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.tag-good { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #ffffff; }

.compare-card ul {
    list-style: none;
}

.compare-card ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
}

.account-code-demo {
    background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(139,92,246,0.1));
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 16px;
}

.account-code-demo .code-val {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    margin-top: 6px;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }
.max-w-400 { max-width: 400px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.gap-4 { gap: 1.5rem; }
.justify-center { justify-content: center; }

/* Registration & Verification Enhancements */
.step-locked {
    opacity: 0.7;
    border: 1px dashed rgba(148, 163, 184, 0.3);
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

@media (max-width: 480px) {
    .phone-input-group {
        flex-direction: column;
    }
    .phone-input-group select {
        flex: 0 0 auto !important;
        width: 100% !important;
    }
}

.terms-group {
    background: rgba(30, 41, 59, 0.4);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.turnstile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65px;
}


