/* Global Dark Theme Settings */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #090d16;
  --bg-deep: #05070c;
  --glass-bg: rgba(15, 23, 42, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.03);
  --neon-purple: #8b5cf6;
  --neon-purple-glow: rgba(139, 92, 246, 0.4);
  --neon-blue: #06b6d4;
  --neon-blue-glow: rgba(6, 182, 212, 0.4);
  --neon-green: #10b981;
  --neon-green-glow: rgba(16, 185, 129, 0.4);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 10% 20%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(6, 182, 212, 0.12) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(15, 23, 42, 0.5) 0px, transparent 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body > .container {
  flex: 1 0 auto;
}

body > footer {
  flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-purple);
}

/* Glassmorphism utility card */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition-smooth);
}
.glass-panel:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 40px 0 rgba(139, 92, 246, 0.1);
}

/* Glassmorphism Navbar */
.navbar-glass {
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}
.navbar-glass .navbar-brand {
  color: var(--text-primary);
  font-size: 1.5rem;
  background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-glass .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
}
.navbar-glass .nav-link:hover, .navbar-glass .nav-item.active .nav-link {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Custom Neon Button */
.btn-neon {
  background: linear-gradient(135deg, var(--neon-purple) 0%, #7c3aed 100%);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 24px;
  box-shadow: 0 4px 14px var(--neon-purple-glow);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
  color: white;
}
.btn-neon:active {
  transform: translateY(0);
}

.btn-neon-outline {
  background: transparent;
  border: 2px solid var(--neon-purple);
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 22px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-neon-outline:hover {
  background: var(--neon-purple);
  box-shadow: 0 4px 14px var(--neon-purple-glow);
  color: white;
  transform: translateY(-2px);
}

.btn-neon-blue {
  background: linear-gradient(135deg, var(--neon-blue) 0%, #0891b2 100%);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 24px;
  box-shadow: 0 4px 14px var(--neon-blue-glow);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-neon-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
  color: white;
}

/* Badge count */
.cart-badge {
  background: var(--neon-blue);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
  position: relative;
  top: -8px;
  left: -4px;
  box-shadow: 0 0 10px var(--neon-blue-glow);
}

/* Hero Section */
.hero-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}
.hero-slide {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.7) 40%, rgba(9, 13, 22, 0.2) 100%);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 550px;
  z-index: 10;
}
.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Cover Running Ticker Section (Horizontal Scroller) */
.ticker-container {
  overflow: hidden;
  padding: 1.5rem 0;
  background: rgba(5, 7, 12, 0.4);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  margin-bottom: 3rem;
}
.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: ticker-slide 30s linear infinite;
}
.ticker-wrapper:hover {
  animation-play-state: paused;
}
.ticker-item {
  width: 150px;
  height: 220px;
  margin: 0 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}
.ticker-item:hover {
  transform: scale(1.15) rotate(2deg);
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px var(--neon-purple-glow);
}
.ticker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ticker-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}
.ticker-item:hover .ticker-item-title {
  opacity: 1;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 1-Second Comic Cover Switcher (Horizontal 1s ticker) */
.ticker-1s-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 3rem;
  padding: 20px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.ticker-1s-viewer {
  width: 140px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 15px var(--neon-blue-glow);
  position: relative;
  transition: all 0.5s ease-in-out;
}
.ticker-1s-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.ticker-1s-viewer img.active {
  opacity: 1;
}
.ticker-1s-info {
  flex: 1;
}
.ticker-1s-info h4 {
  color: var(--neon-blue);
  margin-bottom: 5px;
}
.ticker-1s-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Manga Cards Grid */
.manga-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 3rem;
}
.manga-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.manga-cover-wrap {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-deep);
}
.manga-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.manga-card:hover .manga-cover {
  transform: scale(1.08) translateY(-5px);
}
.manga-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--neon-purple);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px var(--neon-purple-glow);
  z-index: 5;
}
.manga-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(5, 7, 12, 0.4) 100%);
}
.manga-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.manga-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.manga-title a:hover {
  color: var(--neon-blue);
}
.manga-author {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.manga-price {
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green-glow);
  margin-bottom: 15px;
  margin-top: auto;
}
.manga-actions {
  display: flex;
  gap: 10px;
}
.manga-actions .btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 8px 12px;
}

/* Detail Page Custom styles */
.manga-detail-cover {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}
.manga-detail-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.manga-detail-info {
  padding: 20px;
}
.detail-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 15px var(--neon-green-glow);
  margin: 1.5rem 0;
}
.metadata-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.metadata-table td:first-child {
  color: var(--text-secondary);
  width: 140px;
  font-weight: 500;
}

/* Cart Page Styling */
.cart-table {
  width: 100%;
  color: var(--text-primary);
  border-collapse: collapse;
}
.cart-table th {
  border-bottom: 2px solid var(--glass-border);
  padding: 15px 10px;
  font-family: var(--font-display);
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.cart-table td {
  padding: 20px 10px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cart-item-img {
  width: 60px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--glass-border);
  border-radius: 8px;
  width: fit-content;
  background: rgba(0, 0, 0, 0.2);
}
.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: var(--transition-smooth);
}
.qty-btn:hover {
  color: var(--neon-blue);
  background: rgba(255,255,255,0.05);
}
.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
}
.remove-cart-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}
.remove-cart-btn:hover {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* User Account Page Layout (Card Flip Login/Register) */
.auth-container {
  max-width: 500px;
  margin: 3rem auto;
}
.auth-tabs {
  display: flex;
  background: rgba(0,0,0,0.25);
  border-radius: 12px 12px 0 0;
  padding: 5px;
  border: 1px solid var(--glass-border);
  border-bottom: none;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  border-radius: 8px;
}
.auth-tab.active {
  background: var(--glass-bg);
  color: var(--neon-purple);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1.5px solid var(--glass-border);
}
.auth-form-body {
  border-radius: 0 0 16px 16px;
  padding: 30px;
}
.form-group-custom {
  margin-bottom: 20px;
}
.form-group-custom label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}
.form-input-custom {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1.5px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  transition: var(--transition-smooth);
}
.form-input-custom:focus {
  outline: none;
  border-color: var(--neon-purple);
  box-shadow: 0 0 12px var(--neon-purple-glow);
}

/* Profile page custom style */
.profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 2.5rem;
  padding: 25px;
}
.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--font-display);
  box-shadow: 0 0 20px var(--neon-purple-glow);
}
.purchased-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.purchased-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: var(--transition-smooth);
}
.purchased-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px var(--neon-blue-glow);
}
.purchased-cover {
  height: 220px;
  overflow: hidden;
}
.purchased-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purchased-body {
  padding: 12px;
}
.purchased-title {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.purchased-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Toast Messages */
.alert-neon {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c084fc;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.alert-neon-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.alert-neon-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

/* Responsive fixes */
@media(max-width: 768px) {
  .hero-slide {
    height: 380px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
}

/* Custom Glow for Navbar Sale Link */
.text-glow-sale {
  color: #ff9900 !important;
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.6);
  background: linear-gradient(135deg, #fbbf24 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse-glow 2s infinite alternate;
}
@keyframes pulse-glow {
  0% { text-shadow: 0 0 5px rgba(251, 191, 36, 0.4); }
  100% { text-shadow: 0 0 15px rgba(239, 68, 68, 0.8); }
}

/* Lucky Wheel Styles */
.wheel-outer-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 10px auto;
}
.wheel-pointer-arrow {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #ef4444;
  filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.8));
  z-index: 100;
}
.wheel-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.wheel-spin-btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #05070c;
  border: 3px solid #8b5cf6;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
  transition: all 0.2s ease-in-out;
}
.wheel-spin-btn-center:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.95);
  border-color: #a78bfa;
}
.wheel-spin-btn-center.disabled {
  background: #111827;
  border-color: #4b5563;
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  transform: translate(-50%, -50%);
}

/* Social Login Button Styles */
.btn-social-google {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition-smooth);
}
.btn-social-google:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.35);
  color: white;
}

.btn-social-facebook {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(6, 182, 212, 0.4);
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition-smooth);
}
.btn-social-facebook:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: #06b6d4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.35);
  color: white;
}

/* Text glow utilities */
.text-glow-purple {
  text-shadow: 0 0 15px var(--neon-purple-glow);
}

.hover-scale-mini {
  transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.hover-scale-mini:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.3);
}
/* =========================================================
   Language Switcher (VN / EN) - Thêm mới, không ảnh hưởng
   tới các style khác trong file này.
   ========================================================= */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-current-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 6px 12px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth, all 0.2s ease-in-out);
}

.lang-current-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-current-btn .lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lang-current-btn .lang-flag svg {
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.lang-current-btn .lang-caret {
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.2s;
}

.lang-switcher.open .lang-current-btn .lang-caret,
#lang-dropdown-menu.open ~ .lang-current-btn .lang-caret {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #12182a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 6px;
    min-width: 130px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    z-index: 1500;
}

.lang-dropdown-menu.open {
    display: block;
    animation: langDropdownFade 0.15s ease-out;
}

@keyframes langDropdownFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #e5e7eb;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s;
    text-decoration: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lang-option.active {
    background: rgba(139, 92, 246, 0.18);
    color: #fff;
}

.lang-option .lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lang-option .lang-flag svg {
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

@media (max-width: 767.98px) {
    .lang-switcher {
        margin-top: 8px;
    }
}
