:root {
  --bg: #050505;
  --bg-card: rgba(20, 20, 20, 0.6);
  --bg-card-hover: rgba(30, 30, 30, 0.8);
  --accent: #ff6600;
  --accent-glow: rgba(255, 102, 0, 0.4);
  --accent-blue: #00e5ff;
  --accent-blue-glow: rgba(0, 229, 255, 0.4);
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 102, 0, 0.3);
  --font-family: 'Rajdhani', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --navbar-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 32px;
  object-fit: contain;
}

.logo span {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.hub-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #ff3300 100%);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 0 15px var(--accent-glow);
  transition: all 0.3s ease;
  color: #fff !important;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.hub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--accent-glow);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 3rem 0;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #ff3300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--accent-glow);
}

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

.badge {
  display: inline-block;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

/* Marketplace Section & Layout */
.marketplace-section {
  padding: 4rem 0 6rem 0;
}

.marketplace-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* Sidebar Styling */
.sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: calc(var(--navbar-h) + 1.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 16px;
  height: fit-content;
  backdrop-filter: blur(10px);
}

.sidebar-block {
  margin-bottom: 1.5rem;
}

.sidebar-block:last-child {
  margin-bottom: 0;
}

.sidebar-block h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.sidebar-block input, .sidebar-block select {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.sidebar-block input:focus, .sidebar-block select:focus {
  border-color: var(--accent);
}

/* Checkbox container */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(0,0,0,0.4);
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.checkbox-container input:checked ~ .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-container input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Listings Header & Tabs */
.source-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.source-tab {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.source-tab:hover {
  background: var(--bg-card-hover);
  color: #fff;
}

.source-tab.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.source-tab.active svg path {
  fill: #000;
  stroke: #000;
}

.listings-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.listings-sort {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.listings-sort label {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.listings-sort select {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-family: var(--font-family);
  outline: none;
}

/* Grid Layout */
.listings-area {
  flex: 1;
  width: 100%;
}
.scooters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Card Styling */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px var(--accent-glow);
  background: var(--bg-card-hover);
}

.card.used-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 10px 30px var(--accent-blue-glow);
}

.card-img-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 6px;
  background: var(--accent);
  color: #000;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  letter-spacing: 1px;
}

.card-badge.used-badge {
  background: var(--accent-blue);
  color: #000;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}

.origin-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.card-specs {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.8em;
}

.location-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  background: rgba(0, 229, 255, 0.85);
  backdrop-filter: blur(5px);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.location-badge svg {
  width: 14px;
  height: 14px;
}

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

.price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}

.card.used-card .price {
  color: var(--accent-blue);
}

.buy-btn {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(255, 68, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 68, 0, 0.7);
  background: #ff5511;
}

.card.used-card .buy-btn {
  background: var(--accent-blue);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.card.used-card .buy-btn:hover {
  background: #00f0ff;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
}

.card.used-card .buy-btn:hover {
  box-shadow: 0 0 20px var(--accent-blue-glow);
}

/* Loader */
.loader {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1.2rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

/* Full-Page Detail View Layout */
.detail-page-container {
  padding: 7rem 0 6rem 0;
  background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.04) 0%, transparent 60%);
  min-height: 100vh;
}

.back-navigation {
  margin-bottom: 2rem;
}

.back-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.back-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  background: rgba(255, 102, 0, 0.05);
}

.detail-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.detail-left-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}

.detail-gallery-pane {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.detail-img-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.detail-img-wrapper img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 12px;
}

.location-badge-large {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 229, 255, 0.9);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.location-badge-large svg {
  width: 16px;
  height: 16px;
}

/* Detail Info Pane */
.detail-info-pane {
  display: flex;
  flex-direction: column;
}

.detail-meta {
  margin-bottom: 0.5rem;
}

.detail-info-pane h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.detail-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 2.5rem;
  text-shadow: 0 0 20px var(--accent-glow);
}

.detail-section {
  margin-bottom: 2rem;
}

.detail-section h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  font-size: 1.05rem;
}

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

.spec-row strong {
  color: #fff;
}

.description-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.seller-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  font-size: 1.05rem;
}

.seller-card p {
  margin-bottom: 0.5rem;
}

.seller-card p:last-child {
  margin-bottom: 0;
}

.detail-actions {
  margin-top: 2rem;
}

.visit-ad-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #ff3300 100%);
  color: #fff;
  border: none;
  width: 100%;
  padding: 1.25rem;
  border-radius: 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 20px var(--accent-glow);
  transition: all 0.3s;
}

.visit-ad-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px var(--accent-glow);
}

.visit-ad-btn.used-btn {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0099ff 100%);
  box-shadow: 0 0 20px var(--accent-blue-glow);
  color: #000;
}

.visit-ad-btn.used-btn:hover {
  box-shadow: 0 0 35px var(--accent-blue-glow);
}

/* Footer */
footer {
  background: #020202;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  width: 100%;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .detail-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .marketplace-layout {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .nav-links {
    display: none;
  }
}

/* Login Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  backdrop-filter: blur(10px);
}
.modal-content h2 { margin-bottom: 0.5rem; color: var(--accent); font-family: var(--font-display); }
.modal-content p { color: var(--text-muted); margin-bottom: 1.5rem; }
.modal-content input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 1rem;
}
.modal-content input:focus {
  border-color: var(--accent);
  outline: none;
}
.close-modal {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}
.close-modal:hover { color: #fff; }
.error-msg {
  color: #ff3300;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Kukirin Cloud Modal Styles */
.kukirin-cloud-modal {
  background: #111;
  border: 1px solid rgba(255, 68, 0, 0.3);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  color: #fff;
  font-family: var(--font-family);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.modal-header-icon {
  text-align: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.modal-header-icon svg {
  width: 48px;
  height: 48px;
}

.cloud-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.cloud-title span {
  color: var(--accent);
}

.cloud-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.cloud-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.75rem;
  font-family: var(--font-display);
  color: var(--text-muted);
  letter-spacing: 1px;
}

.form-group input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--accent);
}

.cloud-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.cloud-btn:hover {
  background: #ff5511;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 68, 0, 0.4);
}

.cloud-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.cloud-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}

.cloud-divider span {
  background: #111;
  padding: 0 1rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.google-login-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cloud-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cloud-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.cloud-footer a:hover {
  text-decoration: underline;
}


/* G-Series Navbar Styles */
.pro-indicator {
  background: var(--accent-blue, #00f0ff) !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 900;
  margin-left: -5px;
  transform: translateY(-8px);
  letter-spacing: 0;
  box-shadow: 0 0 8px var(--glow-blue, rgba(0, 240, 255, 0.5));
  display: inline-block;
}

.sync-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.sync-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-btn {
  padding: 4px 8px;
  font-family: inherit;
  font-weight: bold;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

/* Premium Admin Dashboard Styles */
.admin-container {
  padding: 100px 20px;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.admin-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.admin-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}
.admin-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.admin-tab:hover {
  color: #fff;
}
.admin-tab.active {
  color: var(--accent);
}
.admin-tab.active::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.admin-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.admin-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}
.admin-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}
select.admin-input option {
  background-color: #111;
  color: #fff;
}
.admin-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}
.admin-list-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  transition: transform 0.2s;
}
.admin-list-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.1);
}
.admin-del-btn {
  background: rgba(255, 68, 68, 0.1);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-del-btn:hover {
  background: #ff4444;
  color: #fff;
}

/* Lightbox styles */
.lightbox-overlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: 0.3s;
}
.lightbox-close:hover {
  color: var(--accent);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 18px 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10000;
  transition: all 0.3s;
}
.lightbox-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}
.lightbox-prev {
  left: 30px;
}
.lightbox-next {
  right: 30px;
}
.lightbox-counter {
  position: absolute;
  bottom: 30px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.horizontal-thumbnail-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  box-sizing: border-box;
  scrollbar-width: thin;
  justify-content: flex-start;
  padding: 5px 0;
}
.horizontal-thumbnail-grid img {
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.horizontal-thumbnail-grid img:hover {
  transform: scale(1.05);
}
.horizontal-thumbnail-grid img.active {
  border-color: var(--accent) !important;
}

/* Platform Choice Splash Modal */
.platform-splash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(15, 15, 15, 0.98) 0%, rgba(5, 5, 5, 1) 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}
.splash-container {
  max-width: 900px;
  width: 90%;
  text-align: center;
  padding: 3rem;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 102, 0, 0.1);
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 102, 0, 0.03);
  animation: splashFadeIn 0.8s ease-out;
}
@keyframes splashFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.splash-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.splash-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}
.splash-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.splash-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.splash-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.splash-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: rgba(255, 102, 0, 0.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.1);
}
.splash-card:hover::before {
  opacity: 1;
}
.splash-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--accent);
  transition: all 0.4s;
}
.splash-card:hover .splash-icon {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
  transform: rotate(5deg) scale(1.1);
}
.splash-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 1px;
}
.splash-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* Nav Switch Toggle Pill */
.nav-switch-pill {
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 3px;
  margin: 0 1rem;
}
.nav-switch-option {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-switch-option.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}


