/* ==========================================================================
   WOW388 WIKI - DESIGN SYSTEM & STYLESHEET
   Domain: https://wow388.wiki
   Color Palette: Onyx Black, Gold Gradient, Cyber Cyan, Emerald Success
   ========================================================================== */

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

:root {
  /* Color Tokens - Synchronized with WOW388 Logo (Fiery Amber Gold & Crimson Orange) */
  --bg-primary: #07090e;
  --bg-secondary: #0c0f18;
  --bg-card: rgba(18, 23, 36, 0.78);
  --bg-card-hover: rgba(28, 36, 56, 0.88);
  --bg-glass: rgba(12, 15, 24, 0.72);

  --gold-primary: #ffaa00;
  --gold-secondary: #ff6600;
  --gold-gradient: linear-gradient(135deg, #ffd000 0%, #ff8c00 50%, #e65100 100%);
  --gold-glow: rgba(255, 140, 0, 0.35);

  --cyan-primary: #ff9d00;
  --cyan-secondary: #ff4500;
  --cyan-gradient: linear-gradient(135deg, #ffb700 0%, #ff3d00 100%);
  --cyan-glow: rgba(255, 100, 0, 0.28);

  --emerald-primary: #00e676;
  --emerald-glow: rgba(0, 230, 118, 0.2);

  --text-main: #f0f4fd;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #ffc400;

  --border-color: rgba(255, 140, 0, 0.22);
  --border-cyan: rgba(255, 94, 0, 0.25);
  --border-card: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Effects */
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 140, 0, 0.08);
  --shadow-glow-gold: 0 0 25px rgba(255, 140, 0, 0.4);
  --shadow-glow-cyan: 0 0 25px rgba(255, 85, 0, 0.4);
  --glass-backdrop: blur(16px) saturate(180%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(255, 140, 0, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(255, 60, 0, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255, 200, 0, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--cyan-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  transition: all var(--transition-normal);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-logo .logo-img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-logo .brand-badge {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px var(--gold-glow);
}

.brand-logo .wiki-tag {
  background: rgba(0, 242, 254, 0.12);
  color: var(--cyan-primary);
  border: 1px solid var(--border-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--gold-primary);
}

/* Action Buttons & Symmetrical Button System */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.4rem;
  min-width: 140px;
  height: 42px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}

.btn-sm {
  min-width: 115px;
  height: 36px;
  padding: 0 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  min-width: 175px;
  height: 48px;
  padding: 0 2rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0e14;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
  color: #000;
}

.btn-cyan {
  background: var(--cyan-gradient);
  color: #07090e;
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.25);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
  color: #000;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border-card);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 115px;
  height: 36px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copy-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero & Page Header */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold-primary);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-title span.highlight-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.highlight-cyan {
  background: var(--cyan-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Quick Access Link Bar */
.link-access-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: var(--glass-backdrop);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

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

.access-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 230, 118, 0.12);
  color: var(--emerald-primary);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-primary);
  animation: pulse 1.8s infinite;
}

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

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.link-card-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.link-card-item:hover {
  border-color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.04);
}

.link-info {
  display: flex;
  flex-direction: column;
}

.link-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.link-url-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.copy-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

/* Wiki Live Search Component */
.wiki-search-box {
  position: relative;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper svg {
  position: absolute;
  left: 1.25rem;
  color: var(--text-dim);
  width: 20px;
  height: 20px;
}

.search-input {
  width: 100%;
  padding: 1.1rem 1.25rem 1.1rem 3.2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* Wiki Content Grid */
.wiki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.wiki-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: var(--glass-backdrop);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.wiki-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.wiki-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.wiki-card:hover::before {
  opacity: 1;
}

.wiki-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.wiki-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.wiki-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.wiki-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wiki-card-link {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.wiki-card-link:hover {
  color: #fff;
}

/* Detailed Article Section */
.article-section {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.article-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.article-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin: 1.8rem 0 0.8rem;
  font-weight: 700;
}

.article-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  margin: 1.25rem 0 0.5rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

/* Callout & Alert Boxes */
.wiki-callout {
  background: rgba(0, 242, 254, 0.06);
  border-left: 4px solid var(--cyan-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  color: var(--text-main);
}

.wiki-callout-gold {
  background: rgba(255, 215, 0, 0.06);
  border-left: 4px solid var(--gold-primary);
}

.wiki-callout title {
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
}

/* Data Table */
.table-responsive {
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

.wiki-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.wiki-table th {
  background: var(--bg-secondary);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--border-color);
}

.wiki-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.wiki-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.wiki-table tr:hover {
  background: rgba(255, 215, 0, 0.04);
}

/* FAQ Accordion */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

.breadcrumbs span.separator {
  color: var(--text-dim);
}

.breadcrumbs span.current {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Floating Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow-gold);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile Sticky Bottom CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  z-index: 90;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}

.sticky-mobile-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-card);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    display: none;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.show {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .article-section {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Mobile Bottom Bar Sticky Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0c0f18;
  border-top: 1px solid rgba(255, 140, 0, 0.3);
  grid-template-columns: repeat(5, 1fr);
  padding: 6px 4px;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.85);
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #94a3b8;
  font-size: 0.62rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 2px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-bottom-nav .nav-item svg {
  width: 18px;
  height: 18px;
  stroke: #94a3b8;
  transition: all 0.2s ease;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
  color: #ffaa00;
}

.mobile-bottom-nav .nav-item:hover svg,
.mobile-bottom-nav .nav-item.active svg {
  stroke: #ffaa00;
}

/* Highlighted Login item in middle */
.mobile-bottom-nav .nav-item.nav-highlight {
  color: #000;
  background: linear-gradient(135deg, #ffd000 0%, #ff8c00 100%);
  font-weight: 800;
  border-radius: 8px;
  margin: -2px 1px;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.5);
}

.mobile-bottom-nav .nav-item.nav-highlight svg {
  stroke: #000;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: grid !important;
  }
  body {
    padding-bottom: 65px;
  }
}
