:root {
  --bg: #070b12;
  --card: #101722;
  --card-hover: #15202e;
  --accent: #46b3ff;
  --accent-glow: rgba(58, 169, 255, 0.3);
  --gold: #D9B36C;
  --gold-glow: rgba(217, 179, 108, 0.2);
  --text: #FFFFFF;
  --text-secondary: #aeb8c6;
  --text-muted: #7f8a99;
  --text-primary: var(--text);
  --bg-surface: #0c121b;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --glass: rgba(17, 22, 29, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% -10%, rgba(70, 179, 255, 0.10), transparent 30rem),
    radial-gradient(circle at 90% 10%, rgba(217, 179, 108, 0.07), transparent 28rem);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #6BBFFF; }

:focus-visible {
  outline: 3px solid rgba(70, 179, 255, 0.7);
  outline-offset: 3px;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-header { margin-bottom: 48px; }
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Loading Screen — kept for markup compatibility; never blocks the page */
.loader {
  display: none !important;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: -0.7px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-only { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
  background: #2B96E8;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(58, 169, 255, 0.1);
  color: var(--text);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #C4A05A);
  color: #07090D;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 0 20px var(--gold-glow); color: #07090D; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.btn-ripple:active::after { transform: scale(2); opacity: 1; transition: 0s; }

/* Cards */
.card {
  background: linear-gradient(160deg, rgba(20, 29, 42, 0.96), rgba(13, 19, 29, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(70, 179, 255, 0.06);
}
.card-glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}
.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: linear-gradient(135deg, #1a2332, #11161D);
}
.card-body { padding: 24px; }
.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.card-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* Show Card */
.show-card { position: relative; }
.show-card .card-image-wrap { overflow: hidden; position: relative; }
.show-card .card-image { transition: transform 0.6s ease; }
.show-card:hover .card-image { transform: scale(1.05); }
.show-card .score-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}
.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #07090D;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* Score Badge */
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}
.score-excellent { background: rgba(58, 169, 255, 0.2); color: var(--accent); }
.score-great { background: rgba(217, 179, 108, 0.2); color: var(--gold); }
.score-good { background: rgba(74, 222, 128, 0.2); color: #4ADE80; }
.score-fair { background: rgba(251, 191, 36, 0.2); color: #FBBF24; }

/* Star Rating */
.star-rating {
  position: relative;
  width: 100px;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.star-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 4px;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.form-checkbox input { accent-color: var(--accent); }
.form-error { color: #F87171; font-size: 13px; margin-top: 6px; }
.form-success { color: #4ADE80; font-size: 13px; margin-top: 6px; }

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 6px;
  max-width: 640px;
  width: 100%;
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  padding: 12px 16px;
  outline: none;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar .btn { border-radius: var(--radius-sm); }

/* Hero — keep under a full viewport so stats/featured peek below the fold */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 72px 0 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(ellipse at 30% 50%, rgba(58,169,255,0.11) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(217,179,108,0.08) 0%, transparent 50%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -2.5px;
}
.hero-title .gradient {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-search { display: flex; justify-content: center; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Stats */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Map */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container.lg { height: 500px; }

/* Review Card */
.review-card { padding: 24px; }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.review-author { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--text-muted); }
.review-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.review-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}
.badge-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(217, 179, 108, 0.15);
  color: var(--gold);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* Vendor Card */
.vendor-card { text-align: center; padding: 32px 24px; }
.vendor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2332, var(--card));
  border: 2px solid var(--border);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.vendor-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.vendor-specialty { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }

/* Special Card */
.special-card { display: flex; gap: 16px; padding: 20px; align-items: center; }
.special-discount {
  background: var(--gold);
  color: #07090D;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, rgba(58,169,255,0.14), rgba(217,179,108,0.10));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; max-width: 300px; }
.footer-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-secondary); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* Page Header */
.page-header {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; }
.page-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.filter-group select, .filter-group input {
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 13px;
}

/* Dashboard */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0 64px;
  min-height: 100vh;
}
.dashboard-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}
.dashboard-nav { list-style: none; }
.dashboard-nav li { margin-bottom: 4px; }
.dashboard-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}
.dashboard-nav a:hover, .dashboard-nav a.active {
  background: rgba(58, 169, 255, 0.1);
  color: var(--accent);
}
.dashboard-content h2 { font-size: 24px; margin-bottom: 24px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.stat-card-value { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-card-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.auth-card h1 { font-size: 28px; margin-bottom: 8px; text-align: center; }
.auth-card .subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 32px; font-size: 14px; }
.auth-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin: 24px 0;
  position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.role-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.role-option {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 12px;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.role-option:hover { border-color: var(--accent); }
.role-option.selected {
  border-color: var(--accent);
  background: rgba(58, 169, 255, 0.1);
  color: var(--accent);
}
.role-option .role-icon { font-size: 20px; margin-bottom: 4px; }

/* Show Detail */
.show-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.show-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a2332 0%, #07090D 100%);
}
.show-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}
.show-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 0;
}
.show-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding: 48px 0;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.info-card h3 { font-size: 16px; margin-bottom: 16px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--text-secondary); }
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(58, 169, 255, 0.08);
  border: 1px solid rgba(58, 169, 255, 0.15);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* Rating Categories */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 13px;
}
.rating-item .label { color: var(--text-secondary); }
.rating-item .value { font-weight: 600; color: var(--gold); }

/* Tabs */
.tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Admin Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--bg);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:hover td { background: rgba(58, 169, 255, 0.03); }
.status-pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.status-upcoming { background: rgba(58,169,255,0.15); color: var(--accent); }
.status-past { background: rgba(107,114,128,0.15); color: var(--text-muted); }
.status-approved { background: rgba(74,222,128,0.15); color: #4ADE80; }
.status-pending { background: rgba(251,191,36,0.15); color: #FBBF24; }

/* Animations — never hide content; motion is additive only */
.fade-up {
  transition: transform 0.55s ease, opacity 0.55s ease;
}

/* Tilt effect */
.tilt-card { transform-style: preserve-3d; perspective: 1000px; }

/* Key Variables */
.key-variables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.key-variables-compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.key-variable-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.key-variable-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.key-variable-icon { font-size: 20px; }
.key-variable-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.key-variable-body .score-badge { width: 48px; height: 48px; font-size: 18px; }
.key-variable-detail {
  font-size: 12px;
  color: var(--text-muted);
}
.key-variable-na {
  font-size: 14px;
  color: var(--text-muted);
}
.key-variable-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px;
}
.key-variable-chip .key-variable-icon { font-size: 16px; }
.key-variable-chip .key-variable-name {
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.key-variable-score {
  font-weight: 700;
  color: var(--gold);
  font-size: 13px;
}
.rating-item-key {
  border: 1px solid rgba(58, 169, 255, 0.2);
  background: rgba(58, 169, 255, 0.05);
}
.key-variables-form {
  border-color: rgba(58, 169, 255, 0.25);
}
.required-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(58, 169, 255, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-secondary);
}
.empty-state-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }

/* Alert */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-error { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: #F87171; }
.alert-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: #4ADE80; }
.alert-info { background: rgba(58,169,255,0.1); border: 1px solid rgba(58,169,255,0.3); color: var(--accent); }

.required-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(58, 169, 255, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Admin Panel */
.admin-layout { padding-bottom: 64px; }
.admin-sidebar-header { margin-bottom: 24px; }
.admin-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(217, 179, 108, 0.15);
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.admin-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  margin-left: 4px;
}
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.admin-inline-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.admin-actions-cell { white-space: nowrap; }
.admin-actions-cell form { display: inline-flex; margin-right: 4px; }
.admin-logs {
  font-family: monospace;
  font-size: 13px;
  color: var(--text-secondary);
  max-height: 500px;
  overflow-y: auto;
}
.admin-logs p { margin-bottom: 8px; }
.log-time { color: var(--text-muted); }

/* Announcement Banners */
.announcement-banner-wrapper {
  position: relative;
  z-index: 20;
  background: rgba(12, 18, 27, 0.98);
  border-bottom: 1px solid var(--border);
}
.announcement-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
}
.announcement-global {
  background: rgba(58, 169, 255, 0.08);
  border-bottom: 1px solid rgba(58, 169, 255, 0.2);
}
.announcement-pill {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.announcement-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  margin-left: auto;
  padding: 0 4px;
  line-height: 1;
}
.announcement-close:hover { color: var(--text-primary); }

/* Report button & Specialty Chips */
.report-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.report-btn:hover {
  color: #F87171;
  background: rgba(248, 113, 113, 0.1);
}
.specialty-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.specialty-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}
.specialty-chip:hover, .specialty-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .show-info-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .key-variables, .key-variables-compact { grid-template-columns: repeat(2, 1fr); }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 11, 18, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .nav-toggle { display: block; }
  .nav-inner { padding: 0 18px; }
  .hero { padding: 56px 0 48px; }
  .hero-title { letter-spacing: -1.8px; }
  .hero-subtitle { margin-bottom: 30px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; gap: 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .newsletter { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .auth-card { padding: 32px 24px; }
  .role-selector { grid-template-columns: 1fr; }
  .filters { flex-direction: column; }
  .announcement-banner { align-items: flex-start; flex-wrap: wrap; padding: 12px 18px; }
  .announcement-close { align-self: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .show-hero { height: 280px; }
  .container { padding: 0 18px; }
  .nav-logo { font-size: 18px; }
  .nav-actions > .btn, .nav-actions > span { display: none; }
  .mobile-only { display: list-item; }
  .hero-title { font-size: 38px; }
  .search-bar { flex-direction: column; align-items: stretch; padding: 8px; }
  .search-bar .btn { width: 100%; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .special-card { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .tilt-card { transform: none !important; }
}
