/* ── Trades4Babes — main.css ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #fff; line-height: 1.6; }
.gradient-text { background: linear-gradient(135deg, #FFD700 0%, #FF1493 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Age Gate */
.agegate { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a0a1a, #0a0a0a); padding: 16px; }
.agegate-content { max-width: 500px; text-align: center; background: rgba(0,0,0,0.8); border-radius: 24px; padding: 48px 32px; border: 1px solid rgba(255,20,147,0.3); }
.agegate-logo { width: 100px; height: auto; margin-bottom: 24px; filter: drop-shadow(0 0 20px rgba(255,20,147,0.5)); }
.agegate h1 { font-size: 42px; font-weight: bold; font-family: 'Oswald', sans-serif; margin-bottom: 8px; letter-spacing: 2px; }
.agegate-subtitle { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.agegate-tagline { font-size: 14px; color: #FF1493; margin-bottom: 32px; }
.agegate-box { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; margin-bottom: 24px; text-align: left; }
.agegate-box p { color: rgba(255,255,255,0.8); margin-bottom: 16px; font-size: 14px; }
.agegate-box ul { color: rgba(255,255,255,0.6); font-size: 13px; padding-left: 20px; margin-bottom: 16px; }
.agegate-box li { margin-bottom: 8px; }
.btn-primary { background: linear-gradient(135deg, #FF1493, #9333ea); color: #fff; font-weight: 700; padding: 16px 32px; border-radius: 8px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; border: none; cursor: pointer; display: inline-block; text-decoration: none; text-align: center; font-size: 14px; width: 100%; margin-bottom: 12px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,20,147,0.4); }
.btn-secondary { background: transparent; color: #FF1493; font-weight: 600; padding: 14px 32px; border-radius: 8px; border: 2px solid #FF1493; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; cursor: pointer; display: inline-block; text-decoration: none; text-align: center; font-size: 14px; width: 100%; }
.btn-secondary:hover { background: #FF1493; color: #fff; }
.agegate-links { display: flex; justify-content: center; gap: 16px; font-size: 12px; margin-top: 24px; }
.agegate-links a { color: rgba(255,255,255,0.5); text-decoration: none; }
.agegate-links a:hover { color: #FF1493; }

/* Navigation */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,20,147,0.2); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.nav-logo img { height: 45px; width: auto; filter: drop-shadow(0 0 10px rgba(255,20,147,0.5)); }
.nav-logo span { font-size: 24px; font-weight: bold; font-family: 'Oswald', sans-serif; color: #fff; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; cursor: pointer; background: none; border: none; }
.nav-link:hover { color: #FF1493; }
.nav-btn { padding: 10px 24px; font-size: 13px; width: auto; margin-bottom: 0; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 8px; }
.user-menu { display: none; align-items: center; gap: 16px; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #FF1493, #9333ea); display: flex; align-items: center; justify-content: center; font-weight: bold; cursor: pointer; }

/* Hero Section */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; background: url('../hero_bg.jpg') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9)); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 100px 20px; max-width: 900px; box-sizing: border-box; width: 100%; }
.hero-logo { width: 120px; height: auto; margin-bottom: 24px; filter: drop-shadow(0 0 30px rgba(255,20,147,0.6)); }
.hero h1 { font-size: clamp(36px, 9vw, 80px); font-weight: bold; font-family: 'Oswald', sans-serif; margin-bottom: 16px; letter-spacing: clamp(1px, 1.5vw, 4px); color: #fff; text-shadow: 0 0 40px rgba(255,20,147,0.5); word-break: break-word; }
.hero-subtitle { font-size: clamp(18px, 3vw, 28px); color: rgba(255,255,255,0.9); margin-bottom: 8px; }
.hero-tagline { font-size: clamp(13px, 2vw, 18px); color: #FF1493; margin-bottom: 24px; font-weight: 500; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; padding: 0 8px; }
.hero-buttons { display: flex; flex-direction: row; gap: 10px; justify-content: center; align-items: stretch; width: 100%; padding: 0 12px; box-sizing: border-box; }
.btn-gold { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; font-weight: 700; padding: 12px 8px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0px; transition: all 0.3s; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; text-align: center; font-size: 11px; flex: 1; max-width: 220px; height: 52px; box-sizing: border-box; line-height: 1.2; white-space: normal; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,215,0,0.4); }
.btn-outline { background: transparent; color: #fff; font-weight: 600; padding: 12px 8px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0px; transition: all 0.3s; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; text-align: center; font-size: 11px; flex: 1; max-width: 220px; height: 52px; box-sizing: border-box; line-height: 1.2; white-space: normal; }
.btn-outline:hover { border-color: #FF1493; color: #FF1493; }
@media (min-width: 640px) {
  .btn-gold, .btn-outline { font-size: 14px; padding: 16px 24px; letter-spacing: 1px; height: 56px; }
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 48px; padding: 0 4px; }
@media (min-width: 640px) { .hero-stats { gap: 32px; margin-top: 64px; padding: 0; } }
.stat-number { font-size: clamp(24px, 7vw, 36px); font-weight: bold; color: #FF1493; text-shadow: 0 0 20px rgba(255,20,147,0.5); }
.stat-label { font-size: clamp(10px, 2.5vw, 13px); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* Two Panels Section */
.panels-section { padding: 80px 24px; }
.panels-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .panels-container { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.panel { position: relative; border-radius: 24px; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; }
@media (min-width: 768px) { .panel { min-height: 500px; } }
.panel-trades { background: url('../trades_panel.jpg') center/cover no-repeat; }
.panel-babes  { background: url('../babes_panel.jpg')  center/cover no-repeat; }
.panel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3)); }
.panel-content { position: relative; z-index: 1; padding: 40px; }
.panel h2 { font-size: 36px; font-weight: bold; font-family: 'Oswald', sans-serif; margin-bottom: 12px; }
.panel-trades h2 { color: #FFD700; }
.panel-babes  h2 { color: #FF1493; }
.panel p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 15px; line-height: 1.7; }

/* How It Works */
.how-it-works { padding: 100px 24px; background: linear-gradient(135deg, #0d0d0d, #1a0a1a); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(32px, 5vw, 48px); font-weight: bold; font-family: 'Oswald', sans-serif; margin-bottom: 16px; }
.section-header p { color: rgba(255,255,255,0.6); font-size: 16px; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.feature-card { background: rgba(255,255,255,0.03); border-radius: 20px; padding: 40px 32px; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.feature-card:hover { border-color: rgba(255,20,147,0.3); transform: translateY(-5px); }
.feature-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; }
.feature-card:nth-child(odd)  .feature-icon { background: rgba(255,215,0,0.1); }
.feature-card:nth-child(even) .feature-icon { background: rgba(255,20,147,0.1); }
.feature-card h3 { font-size: 22px; font-weight: bold; margin-bottom: 12px; }
.feature-card:nth-child(odd)  h3 { color: #FFD700; }
.feature-card:nth-child(even) h3 { color: #FF1493; }
.feature-card p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }

/* CTA Section */
.cta-section { padding: 120px 24px; background: url('../neon_cta_bg.jpg') center/cover no-repeat; position: relative; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(36px, 6vw, 56px); font-weight: bold; font-family: 'Oswald', sans-serif; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 32px; }

/* Footer */
.footer { background: #000; border-top: 1px solid rgba(255,20,147,0.2); padding: 60px 24px 40px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 48px; text-align: center; }
@media (min-width: 640px)  { .footer-container { grid-template-columns: repeat(2, 1fr); gap: 40px; text-align: left; } }
@media (min-width: 1024px) { .footer-container { grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; text-align: left; } }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
@media (min-width: 640px) { .footer-brand { justify-content: flex-start; } }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; max-width: 280px; margin: 0 auto; }
@media (min-width: 640px) { .footer-desc { margin: 0; max-width: none; } }
.footer-brand img { height: 50px; width: auto; filter: drop-shadow(0 0 10px rgba(255,20,147,0.5)); }
.footer-brand span { font-size: 24px; font-weight: bold; font-family: 'Oswald', sans-serif; color: #fff; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none; display: block; margin-bottom: 12px; transition: color 0.3s; cursor: pointer; }
.footer-col a:hover { color: #FF1493; }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; }

/* Forms */
.form-page { min-height: 100vh; padding: 100px 24px 40px; background: linear-gradient(135deg, #0d0d0d, #1a0a1a); }
.form-container { max-width: 500px; margin: 0 auto; background: rgba(255,255,255,0.03); border-radius: 24px; padding: 48px 40px; border: 1px solid rgba(255,255,255,0.1); }
.form-container h1 { font-size: 32px; font-weight: bold; font-family: 'Oswald', sans-serif; margin-bottom: 8px; text-align: center; }
.form-container .subtitle { color: rgba(255,255,255,0.6); text-align: center; margin-bottom: 32px; font-size: 14px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 14px; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #FF1493; }
.form-group input::placeholder { color: rgba(255,255,255,0.4); }
.form-group select option { background: #1a1a1a; color: #fff; padding: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error  { color: #ff4444; font-size: 13px; margin-top: 8px; display: none; }
.form-success { color: #44ff44; font-size: 13px; margin-top: 8px; display: none; }
.form-footer { text-align: center; margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.6); }
.form-footer a { color: #FF1493; text-decoration: none; cursor: pointer; }
.form-footer a:hover { text-decoration: underline; }
.user-type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.user-type-option { padding: 20px; background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.1); border-radius: 12px; text-align: center; cursor: pointer; transition: all 0.3s; }
.user-type-option:hover { border-color: rgba(255,20,147,0.3); }
.user-type-option.selected { border-color: #FF1493; background: rgba(255,20,147,0.1); }
.user-type-option .icon  { font-size: 32px; margin-bottom: 8px; }
.user-type-option .label { font-weight: 600; font-size: 14px; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-error   { background: rgba(255,68,68,0.1);  border: 1px solid rgba(255,68,68,0.3);  color: #ff4444; }
.alert-success { background: rgba(68,255,68,0.1);  border: 1px solid rgba(68,255,68,0.3);  color: #44ff44; }

/* Dashboard */
.dashboard { min-height: 100vh; padding: 100px 24px 40px; background: #0a0a0a; }
.dashboard-container { max-width: 1400px; margin: 0 auto; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.dashboard-header h1 { font-size: 32px; font-weight: bold; font-family: 'Oswald', sans-serif; }
.dashboard-grid { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
.dashboard-sidebar { background: rgba(255,255,255,0.03); border-radius: 16px; padding: 24px; border: 1px solid rgba(255,255,255,0.1); height: fit-content; }
.sidebar-menu { list-style: none; }
.sidebar-menu li { margin-bottom: 8px; }
.sidebar-menu a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: rgba(255,255,255,0.7); text-decoration: none; border-radius: 8px; transition: all 0.3s; font-size: 14px; cursor: pointer; }
.sidebar-menu a:hover, .sidebar-menu a.active { background: rgba(255,20,147,0.1); color: #FF1493; }
.sidebar-menu .icon { font-size: 18px; }
.dashboard-main { background: rgba(255,255,255,0.03); border-radius: 16px; padding: 32px; border: 1px solid rgba(255,255,255,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 32px; }
.stat-card { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 24px; border: 1px solid rgba(255,255,255,0.1); }
.stat-card .number { font-size: 32px; font-weight: bold; color: #FF1493; }
.stat-card .label  { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Profile form sections */
.profile-section { background: rgba(255,255,255,0.02); border-radius: 12px; padding: 24px; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.profile-section h2, .profile-section h3 { margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.service-tag { padding: 8px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.service-tag:hover   { border-color: rgba(255,20,147,0.4); }
.service-tag.selected { background: rgba(255,20,147,0.15); border-color: #FF1493; color: #FF1493; }
.trade-cat-option { padding: 12px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; cursor: pointer; transition: all 0.2s; font-size: 14px; display: inline-block; margin: 4px; }
.trade-cat-option:hover   { border-color: rgba(255,215,0,0.4); }
.trade-cat-option.selected { background: rgba(255,215,0,0.1); border-color: #FFD700; color: #FFD700; }

/* Profile Cards */
.profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.profile-card { background: rgba(255,255,255,0.03); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; cursor: pointer; }
.profile-card:hover { transform: translateY(-5px); border-color: rgba(255,20,147,0.3); }
.profile-image { height: 280px; background: linear-gradient(135deg, #1a0a1a, #2a1a2a); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.profile-image img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { padding: 20px; }
.profile-name     { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.profile-location { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.profile-tag { padding: 4px 12px; background: rgba(255,20,147,0.1); border-radius: 20px; font-size: 12px; color: #FF1493; }
.profile-actions { display: flex; gap: 8px; }
.profile-actions button { flex: 1; padding: 10px; border-radius: 8px; border: none; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.btn-view    { background: rgba(255,255,255,0.1); color: #fff; }
.btn-view:hover    { background: rgba(255,255,255,0.2); }
.btn-contact { background: linear-gradient(135deg, #FF1493, #9333ea); color: #fff; }
.btn-contact:hover { transform: translateY(-2px); }

/* Browse Filters */
.browse-filters { background: rgba(255,255,255,0.03); border-radius: 16px; padding: 20px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.filter-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; align-items: end; }
.filter-row:last-child { margin-bottom: 0; }
.filter-group { display: flex; flex-direction: column; }
.filter-group label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.filter-group input, .filter-group select { width: 100%; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 13px; }
.filter-group input::placeholder { color: rgba(255,255,255,0.4); }
.filter-btn { align-self: flex-end; height: 40px; padding: 0 24px; font-size: 13px; margin-bottom: 0; display: flex; align-items: center; justify-content: center; }
.filter-group select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer; background-color: rgba(255,255,255,0.05); }
.filter-group select option { background: #1a1a1a; color: #fff; }
.filter-group select:focus { outline: none; border-color: #FF1493; }
@media (max-width: 640px) {
  .browse-filters { padding: 16px; }
  .filter-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .filter-group label { font-size: 10px; }
  .filter-group input, .filter-group select { padding: 10px; font-size: 12px; }
  .filter-btn { padding: 0 16px; font-size: 12px; height: 36px; }
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: rgba(255,255,255,0.03); border-radius: 24px; padding: 40px 32px; border: 1px solid rgba(255,255,255,0.1); text-align: center; position: relative; }
.pricing-card.featured { border-color: #FF1493; transform: scale(1.05); }
.pricing-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #FF1493, #9333ea); padding: 6px 20px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pricing-card h3 { font-size: 24px; font-weight: bold; margin-bottom: 8px; }
.pricing-card .price { font-size: 48px; font-weight: bold; color: #FF1493; margin-bottom: 8px; }
.pricing-card .period { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-card li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); font-size: 14px; }
.pricing-card li::before { content: '✓'; color: #FF1493; margin-right: 12px; }

/* Profile View Page */
.profile-page { min-height: 100vh; padding: 100px 24px 40px; background: #0a0a0a; }
.profile-container { max-width: 1000px; margin: 0 auto; }
.profile-header { display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-bottom: 40px; }
.profile-avatar { width: 300px; height: 300px; border-radius: 24px; background: linear-gradient(135deg, #1a0a1a, #2a1a2a); display: flex; align-items: center; justify-content: center; font-size: 120px; overflow: hidden; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-details h1 { font-size: 36px; font-weight: bold; font-family: 'Oswald', sans-serif; margin-bottom: 8px; }
.profile-details .location { color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.profile-meta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.profile-meta-item { padding: 6px 14px; background: rgba(255,255,255,0.05); border-radius: 20px; font-size: 13px; color: rgba(255,255,255,0.7); }
.bio { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 24px; }

/* Toast */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 500; box-shadow: 0 8px 32px rgba(0,0,0,0.4); animation: toastIn 0.3s ease; min-width: 280px; }
.toast.success { background: rgba(20,180,100,0.15); border: 1px solid rgba(20,180,100,0.3); color: #14b464; }
.toast.error   { background: rgba(255,68,68,0.15);  border: 1px solid rgba(255,68,68,0.3);  color: #ff4444; }
.toast.info    { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); color: #818cf8; }
.toast.warning { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: #f59e0b; }
.toast-icon  { font-size: 16px; flex-shrink: 0; }
.toast-msg   { flex: 1; }
.toast-close { background: none; border: none; color: inherit; cursor: pointer; opacity: 0.6; font-size: 14px; padding: 0; flex-shrink: 0; }
.toast-close:hover { opacity: 1; }
@keyframes toastIn  { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateX(20px); } }

/* Loading spinner */
.loading { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.2); border-top-color: #FF1493; border-radius: 50%; animation: spin 0.8s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Admin Panel */
.admin-page { min-height: 100vh; padding: 90px 24px 40px; background: #0a0a0a; }
.admin-container { max-width: 1400px; margin: 0 auto; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.admin-header h1 { font-size: 28px; font-weight: bold; font-family: 'Oswald', sans-serif; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-bottom: 32px; }
.admin-stat { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 20px 16px; border: 1px solid rgba(255,255,255,0.08); text-align: center; }
.admin-stat .num { font-size: 28px; font-weight: 700; color: #FF1493; }
.admin-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.admin-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.03); border-radius: 12px; padding: 4px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-tab { flex: 1; padding: 10px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; text-align: center; color: rgba(255,255,255,0.5); transition: all 0.2s; white-space: nowrap; }
.admin-tab.active { background: rgba(255,20,147,0.15); color: #FF1493; }
.admin-tab:hover { color: rgba(255,255,255,0.8); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; padding: 12px 16px; color: rgba(255,255,255,0.4); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-badge { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-premium  { background: rgba(255,20,147,0.15); color: #FF1493; }
.badge-free     { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.badge-verified { background: rgba(255,215,0,0.1);   color: #FFD700; }
.badge-trade    { background: rgba(255,215,0,0.1);   color: #FFD700; }
.badge-babe     { background: rgba(255,20,147,0.1);  color: #FF1493; }
.admin-action-btn { padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-verify         { background: rgba(255,215,0,0.15);  color: #FFD700; border: 1px solid rgba(255,215,0,0.3); }
.btn-verify:hover   { background: rgba(255,215,0,0.3); }
.btn-unverify       { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.btn-upgrade-admin  { background: rgba(255,20,147,0.15);  color: #FF1493; border: 1px solid rgba(255,20,147,0.3); }
.btn-upgrade-admin:hover { background: rgba(255,20,147,0.3); }
.btn-downgrade      { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.btn-delete-user    { background: rgba(220,50,80,0.15);   color: #dc3250; border: 1px solid rgba(220,50,80,0.3); }
.btn-delete-user:hover { background: rgba(220,50,80,0.3); }
.admin-search { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 14px; margin-bottom: 20px; }
.admin-search:focus { outline: none; border-color: #FF1493; }
.admin-search::placeholder { color: rgba(255,255,255,0.3); }
.admin-empty { text-align: center; padding: 60px 20px; color: rgba(255,255,255,0.3); font-size: 14px; }

/* Hidden */
.hidden { display: none !important; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(0,0,0,0.95); padding: 20px; z-index: 99; }
  .nav-links.mobile-open { display: flex; }
  .mobile-menu-btn { display: block; }
  .panels-container { grid-template-columns: 1fr; }
  .panel { min-height: 400px; }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .profile-header { grid-template-columns: 1fr; }
  .profile-avatar { width: 200px; height: 200px; margin: 0 auto; }
  .user-type-selector { grid-template-columns: 1fr; }
}

/* ── NEW HOME PAGE (h4b-*) ───────────────────────────────────────────────── */
#page-home {
  background:
    radial-gradient(circle at 18% 10%, rgba(255,20,147,0.22), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(240,180,41,0.12), transparent 24%),
    linear-gradient(180deg,#050505 0%,#09090b 46%,#020202 100%);
  padding-top: 70px; /* nav height */
}

/* Hero */
.h4b-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 50px;
  align-items: center;
  padding: 84px 8% 72px;
}
.h4b-badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(240,180,41,0.55);
  border-radius: 999px;
  color: #ffd76a;
  background: rgba(240,180,41,0.08);
  margin-bottom: 22px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.h4b-h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.h4b-h1 span { color: #ff2fa3; text-shadow: 0 0 24px rgba(255,20,147,0.55); }
.h4b-lead { font-size: 1.08rem; color: #eee; max-width: 620px; margin-bottom: 34px; line-height: 1.7; }
.h4b-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.h4b-btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.h4b-btn:hover { transform: translateY(-2px); }
.h4b-btn-pink {
  background: linear-gradient(135deg, #ff1493, #b80068);
  color: #fff;
  box-shadow: 0 0 28px rgba(255,20,147,0.35);
}
.h4b-btn-gold {
  border: 1px solid rgba(240,180,41,0.55);
  background: rgba(240,180,41,0.08);
  color: #ffd76a;
}

/* Hero card */
.h4b-hero-card {
  background: linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03));
  border: 1px solid rgba(240,180,41,0.32);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), inset 0 0 30px rgba(255,20,147,0.06);
}
.h4b-hero-symbol {
  height: 200px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,20,147,0.22), transparent 38%),
    linear-gradient(135deg,rgba(240,180,41,0.1),rgba(255,20,147,0.1));
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  font-size: 5rem;
}
.h4b-hero-symbol::before { content: "👠"; transform: rotate(-18deg); filter: drop-shadow(0 0 18px rgba(255,20,147,0.7)); z-index:2; position:relative; }
.h4b-hero-symbol::after  { content: "🔧"; font-size:4.5rem; position:absolute; transform:rotate(35deg); opacity:0.8; filter:drop-shadow(0 0 12px rgba(240,180,41,0.4)); }
.h4b-card-title { font-size: 1.5rem; margin-bottom: 16px; color: #ffd76a; text-transform: uppercase; font-family: 'Oswald', sans-serif; }
.h4b-mini-list { display: grid; gap: 12px; }
.h4b-mini-list div { padding: 12px 14px; background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; color: #f0f0f0; font-size: 14px; }

/* Promo strip */
.h4b-promo-strip {
  margin: 0 8% 60px;
  padding: 16px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg,rgba(255,20,147,0.2),rgba(240,180,41,0.14));
  border: 1px solid rgba(240,180,41,0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #eee;
}
.h4b-promo-strip strong { color: #ffd76a; }

/* Sections */
.h4b-section { padding: 60px 8%; }
.h4b-section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-family: 'Oswald', sans-serif;
}
.h4b-section-title span { color: #ff2fa3; }
.h4b-section-intro { color: #d7d7d7; max-width: 740px; margin-bottom: 32px; font-size: 1.05rem; line-height: 1.7; }

/* Steps */
.h4b-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.h4b-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 24px;
}
.h4b-step h3 { margin-bottom: 10px; font-size: 1.15rem; color: #fff; }
.h4b-step p  { color: #d8d8d8; font-size: 14px; line-height: 1.6; }
.h4b-number {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg,#f0b429,#ffd76a);
  color: #000; font-weight: 900;
  margin-bottom: 14px; font-size: 15px;
}

/* Is / Is Not */
.h4b-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.h4b-info-card {
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.1);
}
.h4b-yes { border-color: rgba(240,180,41,0.35); }
.h4b-no  { border-color: rgba(255,20,147,0.35); }
.h4b-yes h3 { color: #ffd76a; margin-bottom: 16px; font-size: 1.15rem; }
.h4b-no  h3 { color: #ff2fa3; margin-bottom: 16px; font-size: 1.15rem; }
.h4b-list { list-style: none; display: grid; gap: 12px; color: #e8e8e8; font-size: 14px; padding: 0; }

/* Examples */
.h4b-examples { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.h4b-example-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 24px;
}
.h4b-example-card h3 { margin-bottom: 10px; font-size: 1.1rem; color: #fff; }
.h4b-example-card p  { color: #d8d8d8; font-size: 14px; line-height: 1.6; }
.h4b-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,20,147,0.12);
  border: 1px solid rgba(255,20,147,0.35);
  color: #ffb5df;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Trust */
.h4b-trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.h4b-trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 24px;
}
.h4b-trust-card h3 { margin-bottom: 10px; font-size: 1.1rem; color: #fff; }
.h4b-trust-card p  { color: #d8d8d8; font-size: 14px; line-height: 1.6; }
.h4b-trust-card strong { color: #ffd76a; }

/* CTA */
.h4b-cta {
  text-align: center;
  padding: 80px 8%;
  background:
    radial-gradient(circle at center, rgba(255,20,147,0.18), transparent 42%),
    linear-gradient(135deg,rgba(240,180,41,0.08),rgba(255,20,147,0.08));
  border-top: 1px solid rgba(255,255,255,0.08);
}
.h4b-cta p { max-width: 660px; margin: 0 auto 28px; color: #eee; font-size: 1.05rem; line-height: 1.7; }
.h4b-cta strong { color: #ffd76a; }

/* Mobile */
@media (max-width: 900px) {
  .h4b-hero    { grid-template-columns: 1fr; padding: 60px 6% 40px; gap: 32px; }
  .h4b-steps   { grid-template-columns: 1fr; }
  .h4b-split   { grid-template-columns: 1fr; }
  .h4b-examples { grid-template-columns: 1fr 1fr; }
  .h4b-trust-grid { grid-template-columns: 1fr; }
  .h4b-promo-strip { margin: 0 6% 40px; flex-direction: column; text-align: center; }
  .h4b-section { padding: 50px 6%; }
  .h4b-h1 { letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .h4b-examples { grid-template-columns: 1fr; }
}
