/* QRKuy — Futuristic Glassmorphism Styles */

/* ============ BASE ============ */
* { box-sizing: border-box; }

body {
  background: #080d1e;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
}

/* ============ ANIMATED BG BLOBS ============ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #2563eb55, transparent 70%);
  top: -100px; left: -150px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #8b5cf655, transparent 70%);
  top: 200px; right: -100px;
  animation-delay: -4s;
}
.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #0ea5e944, transparent 70%);
  bottom: 100px; left: 30%;
  animation-delay: -8s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============ GLASS COMPONENTS ============ */
.glass-nav {
  background: rgba(8, 13, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.08);
}

/* ============ GRADIENT TEXT ============ */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ TABS ============ */
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  background: transparent;
  white-space: nowrap;
}
.tab-btn:hover { color: rgba(255,255,255,0.75); }
.tab-active {
  background: rgba(37, 99, 235, 0.25) !important;
  color: #93c5fd !important;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

/* ============ FORM ELEMENTS ============ */
.label-text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.input-field::placeholder { color: rgba(255,255,255,0.2); }
.input-field:focus {
  border-color: rgba(96, 165, 250, 0.6);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.input-field option {
  background: #0d1635;
  color: #fff;
}

/* ============ SLIDER ============ */
.slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), 0 4px 8px rgba(0,0,0,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.3), 0 4px 12px rgba(0,0,0,0.4);
  transform: scale(1.1);
}

/* ============ COLOR PICKER ============ */
.color-picker-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 8px 14px;
  transition: border-color 0.25s;
}
.color-picker-wrap:hover {
  border-color: rgba(255,255,255,0.2);
}
.color-picker {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: none;
}
.color-picker::-webkit-color-swatch-wrapper { padding: 0; }
.color-picker::-webkit-color-swatch {
  border: none;
  border-radius: 6px;
}

/* ============ COLOR PRESETS ============ */
.color-preset {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.color-preset:hover {
  transform: scale(1.2);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ============ PRESET CHIPS ============ */
.preset-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.preset-chip:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(96, 165, 250, 0.5);
  color: #93c5fd;
}

/* ============ FRAME CHOICES ============ */
.frame-choice {
  font-size: 0.72rem;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s;
}
.frame-choice:hover {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.4);
  color: rgba(255,255,255,0.75);
}
.frame-choice.active {
  background: rgba(99,102,241,0.25);
  border-color: #6366f1;
  color: #a5b4fc;
  font-weight: 600;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(59, 130, 246, 0.6);
  color: #93c5fd;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(96, 165, 250, 0.8);
  color: #bfdbfe;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.18);
}

/* ============ QR CODE DISPLAY ============ */
#qrcode canvas {
  display: block !important;
  margin: 0 auto !important;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
#qrcode img { display: none !important; }

/* ============ BULK QR CARDS ============ */
.bulk-qr-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.bulk-qr-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.12);
}
.bulk-qr-card canvas {
  display: block !important;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.bulk-qr-card img { display: none !important; }

.bulk-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  letter-spacing: 0.02em;
}
.bulk-dl-btn {
  width: 100%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.bulk-dl-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(96, 165, 250, 0.6);
  color: #bfdbfe;
}

/* ============ USE CASE CARDS ============ */
.use-case-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.use-case-card:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(13, 22, 53, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #e0f2fe;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.qr-appear {
  animation: fadeInScale 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes btnPulse {
  0%   { box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35); }
  50%  { box-shadow: 0 4px 40px rgba(59, 130, 246, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35); }
}
.btn-pulse { animation: btnPulse 0.5s ease-out; }

.hover-lift { transition: transform 0.25s, box-shadow 0.25s; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ============ SCROLLBAR ============ */
.custom-scroll::-webkit-scrollbar { width: 5px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ============ SIDEBAR ADS ============ */
.sidebar-ad {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  min-height: 600px;
  z-index: 40;
  display: none;
}
.sidebar-ad-left  { left: 0; }
.sidebar-ad-right { right: 0; }

.sidebar-ad-label {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 4px;
}

.sidebar-ad-content {
  display: block;
  width: 160px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 0 12px 12px 0;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  overflow: hidden;
}
.sidebar-ad-left .sidebar-ad-content {
  border-radius: 0 12px 12px 0;
}
.sidebar-ad-right .sidebar-ad-content {
  border-radius: 12px 0 0 12px;
}
.sidebar-ad-content:hover {
  border-color: rgba(96,165,250,0.25);
  background: rgba(59,130,246,0.05);
}

.sidebar-ad-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* Tampil hanya jika layar cukup lebar — tidak ganggu konten utama */
@media (min-width: 1280px) {
  .sidebar-ad { display: block; }
}

/* ============ AD SLOTS ============ */
.ad-slot {
  position: relative;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  text-align: center;
}
.ad-slot-banner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-slot-square {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-label {
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.15);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ad-placeholder {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.15);
  padding: 16px;
}
/* Hide placeholder text in production (real ads will fill space) */
.ad-slot ins { display: block; }

/* ============ PRICING / PREMIUM ============ */
.pricing-premium {
  background: linear-gradient(135deg,
    rgba(120, 53, 15, 0.25) 0%,
    rgba(30, 20, 60, 0.6) 40%,
    rgba(10, 15, 40, 0.7) 100%);
  border: 1px solid rgba(251, 191, 36, 0.25);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-premium:hover {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 0 60px rgba(251, 191, 36, 0.12);
}
.premium-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251,191,36,0.15), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.btn-premium {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a0a00;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  text-align: center;
}
.btn-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.55);
}
.btn-premium:active {
  transform: scale(0.98);
}

/* Plan option cards in payment modal */
.plan-opt {
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.plan-opt:hover {
  border-color: rgba(99, 102, 241, 0.6);
}
input[type="radio"]:checked + .plan-opt,
.plan-opt.plan-selected {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.15);
}

/* ============ UPSELL MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeOverlay 0.25s ease-out;
}
.modal-overlay.hidden { display: none; }

@keyframes fadeOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: linear-gradient(135deg, #0d1635 0%, #0a0f28 100%);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 28px;
  padding: 32px 28px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 80px rgba(251,191,36,0.04);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.45);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .tab-btn { padding: 7px 12px; font-size: 0.8125rem; }
  .glass-card { padding: 1.25rem !important; }
  .modal-box { padding: 24px 20px 20px; }
}

/* ── FAQ Accordion ─────────────────────────── */
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item:hover { border-color: rgba(139,92,246,0.4); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: #e2e8f0;
  gap: .75rem;
}
.faq-q:hover { background: rgba(139,92,246,0.08); }
.faq-icon {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: #818cf8;
}
.faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: .75rem;
}

/* ============ DOT STYLE BUTTONS ============ */
.dot-style-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px 7px;
  font-size: 0.64rem;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  min-height: 70px;
  letter-spacing: 0.01em;
}
.dot-style-btn:hover {
  background: rgba(99,102,241,0.10);
  border-color: rgba(99,102,241,0.35);
  color: rgba(255,255,255,0.70);
  transform: translateY(-1px);
}
.dot-style-btn.active {
  background: rgba(99,102,241,0.22);
  border-color: #6366f1;
  color: #a5b4fc;
  font-weight: 600;
}
.dot-style-btn svg {
  margin-bottom: 4px;
  opacity: 0.75;
}
.dot-style-btn.active svg { opacity: 1; }

/* ============ GRADIENT TYPE BUTTONS ============ */
.grad-type-btn {
  padding: 4px 14px;
  font-size: 0.70rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: all 0.2s;
}
.grad-type-btn:hover {
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.3);
  color: rgba(255,255,255,0.70);
}
.grad-type-btn.active {
  background: rgba(99,102,241,0.22);
  border-color: #6366f1;
  color: #a5b4fc;
  font-weight: 600;
}

/* ============ TEMPLATE PICKER ============ */
.tpl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}
.tpl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 5px 2px 6px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s;
  font-size: 0.57rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  letter-spacing: 0.01em;
  user-select: none;
}
.tpl-card:hover {
  background: rgba(99,102,241,0.10);
  border-color: rgba(99,102,241,0.35);
  color: rgba(255,255,255,0.65);
  transform: translateY(-1px);
}
.tpl-card.active {
  background: rgba(99,102,241,0.20);
  border-color: #6366f1;
  color: #a5b4fc;
  box-shadow: 0 0 0 2px rgba(99,102,241,0.18);
}
.tpl-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.tpl-thumb img {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  display: block;
  object-fit: cover;
  image-rendering: pixelated; /* keeps QR crisp at small size */
}

/* ============ EYE STYLE BUTTONS ============ */
.eye-style-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7px 4px 6px;
  font-size: 0.60rem;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 11px;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  min-height: 60px;
}
.eye-style-btn:hover {
  background: rgba(99,102,241,0.10);
  border-color: rgba(99,102,241,0.35);
  color: rgba(255,255,255,0.70);
  transform: translateY(-1px);
}
.eye-style-btn.active {
  background: rgba(99,102,241,0.22);
  border-color: #6366f1;
  color: #a5b4fc;
  font-weight: 600;
}
.eye-style-btn svg { margin-bottom: 3px; opacity: 0.75; }
.eye-style-btn.active svg { opacity: 1; }
