/* Gallery page styles: hero, access form, instructions */

/* Hero */
.hero--gallery { background-position: center; background-size: cover; }
/* Map existing .gallery-hero to hero pattern */
.gallery-hero {
  position: relative;
  min-height: clamp(30rem, 78svh, 60rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: clip;
  padding-top: 0; /* nav overlaps it */
}

@supports (height: 100dvh) {
  .gallery-hero {
    min-height: clamp(30rem, 78dvh, 60rem);
  }
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(8, 10, 14, 0.16) 0%,
    rgba(35, 24, 12, 0.34) 36%,
    rgba(10, 13, 20, 0.62) 72%,
    rgba(5, 8, 12, 0.82) 100%
  );
  z-index: 1;
}

.gallery-hero .gallery-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  text-align: left;
  padding: calc(var(--nav-height, 70px) + 5rem) clamp(1.25rem, 4vw, 3rem) 4.5rem;
  color: #fff;
}

.gallery-hero .gallery-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.gallery-hero .gallery-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  line-height: 1.8;
  margin: 0;
}

/* Access form */
.access-form { max-width: 480px; margin-inline: auto; display: grid; gap: 1rem; }
.access-form label { text-transform: uppercase; letter-spacing: var(--ls-nav); color: var(--color-muted); font-size: 0.8rem; font-variant: small-caps; }
.access-form input[type="text"],
.access-form input[type="password"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid color-mix(in srgb, var(--color-text) 18%, transparent);
  border-radius: var(--radius-xs);
  background: #fff;
}
.access-form .button--ghost { width: 100%; }

/* Instructions */
.gallery-instructions { text-align: center; color: var(--color-muted); max-width: 60ch; margin: var(--space-150) auto 0; }
/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* ========== GALLERY HERO ========== */
/* Note: new styles in creative.css handle the full-bleed photo hero.
   These legacy rules are kept for fallback only. */
.gallery-hero {
  position: relative;
  min-height: clamp(30rem, 78svh, 60rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  overflow: hidden;
  /* no background here — inline style + creative.css handle it */
  background-size: cover;
  background-position: center;
}

.gallery-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Cinematic grade that preserves image detail */
  background: linear-gradient(
    135deg,
    rgba(8, 10, 14, 0.08) 0%,
    rgba(35, 24, 12, 0.20) 36%,
    rgba(10, 13, 20, 0.40) 72%,
    rgba(5, 8, 12, 0.58) 100%
  );
}

.gallery-background::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 18% 22%, rgba(212, 165, 116, 0.24) 0%, rgba(212, 165, 116, 0) 44%),
    radial-gradient(circle at 78% 28%, rgba(109, 168, 176, 0.16) 0%, rgba(109, 168, 176, 0) 42%),
    radial-gradient(circle at 50% 84%, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0) 50%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.gallery-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  opacity: 0.18;
  pointer-events: none;
}

.security-grid {
  display: none;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.scan-lines {
  display: none;
}

@keyframes scan {
  0% {
    background-position: 0 -200px;
  }
  100% {
    background-position: 0 100%;
  }
}

.gallery-hero-content {
  text-align: left;
  z-index: 2;
  padding: calc(var(--nav-height, 70px) + 5rem) clamp(1.25rem, 4vw, 3rem) 4.5rem;
}

.gallery-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px var(--kluxe-green-glow));
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px var(--kluxe-green-glow));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 40px var(--kluxe-green)) drop-shadow(0 0 60px rgba(0, 255, 136, 0.6));
    transform: scale(1.05);
  }
}

.gallery-hero h1 {
  margin-bottom: 1rem;
}

.gallery-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
  font-family: 'Caveat', cursive;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========== GALLERY ACCESS ========== */
.gallery-access {
  padding: 4rem 0 6rem;
}

.access-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.access-card {
  background: linear-gradient(145deg, var(--bg-secondary), rgba(0, 255, 136, 0.03));
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--kluxe-green), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

.card-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.card-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-family: 'Caveat', cursive;
}

.card-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-family: 'Caveat', cursive;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.cipher-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.cipher-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.cipher-input:focus {
  outline: none;
  border-color: var(--kluxe-green);
  box-shadow: 0 0 0 3px var(--kluxe-green-dim);
}

.cipher-input::placeholder {
  color: var(--text-muted);
}

.input-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.toggle-visibility {
  position: absolute;
  right: 1rem;
  top: 2.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

#toggleKey {
  top: calc(100% - 1.75rem);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.toggle-visibility:hover {
  color: var(--kluxe-green);
}

.decrypt-btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 1rem;
  margin-top: 1rem;
  position: relative;
}

.btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.decrypt-btn.loading .btn-text {
  display: none;
}

.decrypt-btn.loading .btn-loading {
  display: flex;
}

.access-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.access-footer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.recovery-link {
  color: var(--kluxe-green);
  text-decoration: underline;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--kluxe-green-dim);
  border: 1px solid var(--kluxe-green);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kluxe-green);
  margin-top: 1rem;
}

/* ========== ACCESS INFO ========== */
.access-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(0, 255, 136, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--kluxe-green);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.info-card:hover {
  transform: translateX(12px) translateY(-4px);
  border-left-color: var(--kluxe-green);
  box-shadow: -8px 8px 32px rgba(0, 255, 136, 0.25), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-card:hover::after {
  opacity: 1;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: 'Caveat', cursive;
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-family: 'Caveat', cursive;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* ========== GALLERY CONTENT (Authenticated View) ========== */
.gallery-content {
  padding: 3rem 0 6rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.gallery-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gallery-content .container {
  position: relative;
}

.gallery-content.hidden {
  display: none;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 255, 136, 0.02));
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.client-welcome h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--kluxe-green), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.client-welcome p {
  color: var(--text-secondary);
  font-family: 'Caveat', cursive;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  opacity: 0.9;
}

#clientName {
  color: var(--kluxe-green);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.content-header .btn {
  white-space: nowrap;
  padding: 0.875rem 1.75rem;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-tertiary));
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--kluxe-green), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-stat:hover {
  transform: translateY(-4px);
  border-color: var(--kluxe-green);
  box-shadow: 0 12px 32px rgba(0, 255, 136, 0.2);
}

.gallery-stat:hover::before {
  opacity: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-family: 'Roboto Mono', monospace;
}

.stat-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--kluxe-green);
  font-family: 'Inter', sans-serif;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* ========== CONTENT TABS ========== */
.content-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 0.75rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tab-btn:hover {
  color: var(--text-primary);
  border-color: rgba(0, 255, 136, 0.2);
}

.tab-btn:hover::before {
  opacity: 1;
}

.tab-btn.active {
  color: var(--kluxe-green);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.08));
  border-color: var(--kluxe-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

/* ========== FILES GRID ========== */
.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.file-card {
  background: linear-gradient(145deg, var(--bg-tertiary), rgba(0, 255, 136, 0.03));
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.file-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--kluxe-green), transparent, var(--kluxe-green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.file-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3),
              0 8px 16px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(0, 255, 136, 0.5);
  border-color: rgba(0, 255, 136, 0.6);
}

.file-card:hover::before {
  opacity: 1;
}

.file-preview {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95);
}

.file-card:hover .preview-thumbnail {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.preview-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  opacity: 0.4;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.duration-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

.photo-preview {
  background: linear-gradient(135deg, var(--bg-secondary), var(--gold-wedding-glow));
}

.video-preview {
  background: linear-gradient(135deg, var(--bg-secondary), var(--blue-corporate-glow));
}

.raw-preview {
  background: linear-gradient(135deg, var(--bg-secondary), var(--kluxe-green-dim));
}

.extra-preview {
  background: linear-gradient(135deg, var(--bg-secondary), var(--pink-festival-glow));
}

.file-info {
  padding: clamp(0.2rem, 0.7vw, 0.35rem) clamp(0.35rem, 1vw, 0.6rem);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.file-info h4 {
  font-size: clamp(0.58rem, 1.5vw, 0.7rem);
  margin-bottom: 0.15rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  line-height: 1.15;
}

.file-meta {
  font-size: clamp(0.48rem, 1.2vw, 0.6rem);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.05;
}

.file-actions {
  display: flex;
  gap: clamp(0.22rem, 0.6vw, 0.3rem);
  padding: clamp(0.2rem, 0.8vw, 0.35rem) clamp(0.3rem, 0.9vw, 0.5rem) clamp(0.25rem, 0.85vw, 0.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  margin-top: auto;
  flex-shrink: 0;
}

.action-btn {
  flex: 1;
  padding: clamp(0.22rem, 0.7vw, 0.3rem) clamp(0.15rem, 0.5vw, 0.25rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-primary);
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  min-height: clamp(24px, 5.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  background: linear-gradient(135deg, var(--kluxe-green), #00cc6f);
  border-color: var(--kluxe-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

/* ========== SELECTION TOOLBAR ========== */
.selection-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.selection-toolbar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
  line-height: 1.1;
}

.selection-toolbar .btn span {
  display: inline;
}

#downloadSelectedPhotos,
#downloadSelectedVideos {
  margin-left: auto;
}

@media (max-width: 640px) {
  .selection-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.85rem;
  }

  .selection-toolbar .btn {
    width: 100%;
    min-height: 40px;
    padding: 0.55rem 0.7rem;
    font-size: 0.84rem;
    gap: 0.35rem;
  }

  #downloadSelectedPhotos,
  #downloadSelectedVideos {
    grid-column: 1 / -1;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .selection-toolbar {
    grid-template-columns: 1fr;
  }

  .selection-toolbar .btn {
    font-size: 0.82rem;
  }
}

.file-card.selected {
  border-color: var(--kluxe-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2),
              0 8px 20px rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
}

.file-card.selected::before {
  content: '✓';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: var(--kluxe-green);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.file-card {
  position: relative;
  cursor: pointer;
  user-select: none;
}

/* ========== BULK ACTIONS ========== */
.bulk-actions {
  margin-top: 2rem;
  text-align: center;
}

.bulk-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.raw-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(0, 255, 136, 0.04));
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--kluxe-green), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: var(--kluxe-green);
  box-shadow: 0 16px 48px rgba(0, 255, 136, 0.25), 0 8px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--bg-secondary), rgba(0, 255, 136, 0.08));
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kluxe-green);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  box-shadow: var(--shadow-green);
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-arrow {
  font-size: 2rem;
  color: var(--kluxe-green);
  opacity: 0.5;
}

/* ========== SECURITY FEATURES ========== */
.security-features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 1.25rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .access-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
  
  .files-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.85rem;
  }
  
  .file-info {
    padding: 0.3rem 0.5rem;
  }
  
  .file-info h4 {
    font-size: 0.65rem;
    margin-bottom: 0.1rem;
  }
  
  .file-meta {
    font-size: 0.55rem;
  }
  
  .file-actions {
    padding: 0.3rem 0.45rem 0.35rem;
    gap: 0.28rem;
  }
  
  .action-btn {
    font-size: 0.85rem;
    padding: 0.28rem 0.2rem;
    min-height: 26px;
  }
}

@media (max-width: 640px) {
  .access-card {
    padding: 2rem 1.5rem;
  }
  
  .content-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .content-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .tab-btn {
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
  }
  
  .files-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .file-preview {
    padding-top: 82%;
  }
  
  .file-info {
    padding: 0.25rem 0.4rem;
  }
  
  .file-info h4 {
    font-size: 0.62rem;
    margin-bottom: 0.08rem;
    line-height: 1.1;
  }
  
  .file-meta {
    font-size: 0.52rem;
    line-height: 1;
  }
  
  .file-actions {
    padding: 0.25rem 0.35rem 0.3rem;
    gap: 0.25rem;
  }
  
  .action-btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.18rem;
    min-height: 26px;
    border-radius: 4px;
  }
}

/* Extra compact for very small screens */
@media (max-width: 480px) {
  .files-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  
  .file-preview {
    padding-top: 85%;
  }
  
  .file-info {
    padding: 0.2rem 0.35rem;
  }
  
  .file-info h4 {
    font-size: 0.58rem;
    margin-bottom: 0.06rem;
    line-height: 1.08;
  }
  
  .file-meta {
    font-size: 0.48rem;
    line-height: 0.95;
  }
  
  .file-actions {
    padding: 0.2rem 0.3rem 0.25rem;
    gap: 0.22rem;
  }
  
  .action-btn {
    font-size: 0.75rem;
    padding: 0.22rem 0.15rem;
    min-height: 24px;
    border-radius: 3px;
  }
}

/* Single column for ultra-narrow screens */
@media (max-width: 360px) {
  .files-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}

/* ========== RECOVERY MODAL ========== */
.recovery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.recovery-modal.active {
  display: flex;
}

.recovery-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.recovery-modal .modal-dialog {
  position: relative;
  z-index: 1;
  width: min(650px, calc(100vw - 2rem));
  max-width: 650px;
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  margin-left: auto;
  margin-right: auto;
}

.recovery-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recovery-modal .modal-header h2 {
  margin: 0;
  line-height: 1.2;
}

.recovery-modal .modal-close {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.4rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}

.recovery-modal .modal-close:hover {
  color: var(--text-primary);
  border-color: var(--kluxe-green);
  background: rgba(0, 255, 136, 0.12);
}

.recovery-modal .modal-close:focus-visible {
  outline: 2px solid var(--kluxe-green);
  outline-offset: 2px;
}

.recovery-modal .modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem;
  padding-bottom: 2rem;
}

.recovery-selection-view {
  display: block;
}

.recovery-modal .modal-body.show-form .recovery-selection-view {
  display: none;
}

.recovery-modal .modal-body.show-form .recovery-form {
  display: flex;
}

@media (min-width: 1440px) {
  .recovery-modal .modal-dialog {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .recovery-modal .modal-body {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
  
  .recovery-info {
    position: sticky;
    top: 2rem;
  }
}

.recovery-modal .modal-header h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.recovery-info {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.03) 100%);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.recovery-info,
.recovery-form,
.method-detail-panel,
.method-detail-description,
.method-detail-list li,
.recovery-consent,
.recovery-success,
.recovery-note {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
  .recovery-info {
    margin-bottom: 0;
  }
}

.recovery-info p {
  margin: 0 0 1.25rem 0;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.55;
}

.recovery-info strong {
  color: var(--kluxe-green);
  font-weight: 600;
  font-family: 'Caveat', cursive;
  font-size: 1.2em;
}

.recovery-methods {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.recovery-methods li {
  margin: 0;
}

.recovery-method-btn {
  width: 100%;
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid transparent;
  border-left: 3px solid var(--kluxe-green);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 400;
  text-align: left;
  transition: all 0.25s ease;
}

.recovery-method-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.35);
}

.recovery-method-btn.active {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.16) 0%, rgba(0, 255, 136, 0.06) 100%);
  border-color: rgba(0, 255, 136, 0.45);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.12);
}

.recovery-method-btn .method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
}

.method-detail-panel {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  background: rgba(0, 255, 136, 0.04);
}

.method-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.method-detail-head h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
}

.method-detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.12);
  color: var(--kluxe-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.method-detail-description {
  margin: 0;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.5;
}

.method-detail-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.method-detail-list li {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: clamp(0.86rem, 0.95vw, 0.95rem);
  line-height: 1.45;
}

.recovery-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.recovery-form-nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-tertiary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--kluxe-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
  background: var(--bg-tertiary);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05px;
}

.recovery-consent {
  background: linear-gradient(135deg, var(--kluxe-green-dim), transparent);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--kluxe-green);
  margin-top: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 1rem;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.5rem;
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  accent-color: var(--kluxe-green);
  border: 2px solid var(--kluxe-green);
}

.modal-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recovery-modal .modal-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 1.45vw, 1.65rem);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .recovery-modal .modal-dialog {
    width: min(760px, calc(100vw - 1.25rem));
    max-width: min(760px, calc(100vw - 1.25rem));
  }

  .recovery-modal .modal-body {
    display: block;
  }

  .recovery-info {
    margin-bottom: 1rem;
  }
}

.recovery-success {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
  border-radius: 12px;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: scaleIn 0.5s ease-out;
  display: inline-block;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.recovery-success h3 {
  color: var(--kluxe-green);
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.recovery-success p {
  color: var(--text-secondary);
  margin: 1rem 0;
  font-family: 'Caveat', cursive;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.7;
}

.recovery-success p strong {
  color: var(--kluxe-green);
  font-weight: 600;
}

.recovery-steps {
  text-align: left;
  margin: 2rem auto;
  max-width: 450px;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-left: 3px solid var(--kluxe-green);
  border-radius: 8px;
  list-style: none;
  counter-reset: step-counter;
}

.recovery-steps li {
  color: var(--text-primary);
  margin: 1rem 0;
  line-height: 1.7;
  font-family: 'Caveat', cursive;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.1px;
  display: flex;
  gap: 1rem;
}

.recovery-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--kluxe-green);
  color: var(--bg-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.recovery-note {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.03) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  font-size: 0.9rem;
  font-family: 'Caveat', cursive;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 400;
}

@media (max-width: 640px) {
  .recovery-modal .modal-dialog {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    margin: 0.75rem auto;
  }

  .recovery-modal .modal-header,
  .recovery-modal .modal-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .recovery-modal .modal-header {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .recovery-modal .modal-body {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .recovery-modal .modal-close {
    width: 2.1rem;
    height: 2.1rem;
    min-width: 2.1rem;
    font-size: 1.3rem;
  }

  .recovery-info,
  .recovery-form,
  .recovery-consent,
  .recovery-success,
  .recovery-note {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .recovery-info {
    margin-bottom: 1.25rem;
  }

  .recovery-form {
    gap: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .recovery-methods li {
    padding-left: 0;
    padding-right: 0;
  }

  .recovery-method-btn {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .method-detail-panel {
    margin-top: 1rem;
    padding: 0.875rem;
  }

  .method-detail-head {
    align-items: flex-start;
  }

  .recovery-consent {
    margin-top: 0.75rem;
  }

  .modal-actions {
    flex-direction: column-reverse;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .modal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== QUICK START BANNER ========== */
.quick-start-banner {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.08) 100%);
  border: 2px solid rgba(255, 193, 7, 0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slideInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.quick-start-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 50%);
  animation: rotateBg 8s linear infinite;
}

@keyframes slideInBounce {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  60% {
    transform: translateY(5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.quick-start-banner h4 {
  margin: 0 0 0.75rem 0;
  color: #ffc107;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
}

.quick-start-banner p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.quick-start-banner code {
  display: block;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin: 0.75rem 0;
  font-family: 'Roboto Mono', monospace;
  color: #ffc107;
  font-size: 0.85rem;
  word-break: break-all;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quick-start-banner code:hover {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========== GALLERY CREDENTIALS PANEL ========== */
.gallery-credentials-panel,
.vault-credentials-panel {
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.08) 50%, rgba(0, 255, 136, 0.04) 100%);
  border: 2px solid rgba(0, 255, 136, 0.4);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 60px rgba(0, 255, 136, 0.25),
    0 12px 24px rgba(0, 255, 136, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  animation: slideInCredentials 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(20px);
}

.gallery-credentials-panel::before,
.vault-credentials-panel::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 255, 136, 0.2) 25%,
    transparent 50%,
    rgba(0, 255, 136, 0.1) 75%,
    transparent 100%
  );
  animation: premiumShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.gallery-credentials-panel::after,
.vault-credentials-panel::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(45deg, 
    rgba(0, 255, 136, 0.4) 0%,
    rgba(0, 255, 136, 0.1) 25%,
    rgba(0, 255, 136, 0.4) 50%,
    rgba(0, 255, 136, 0.1) 75%,
    rgba(0, 255, 136, 0.4) 100%);
  border-radius: 1.5rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}

.gallery-credentials-panel:hover::after,
.vault-credentials-panel:hover::after {
  opacity: 0.3;
}

@keyframes premiumShimmer {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  20% { opacity: 0.4; }
  50% { transform: translate(50px, 50px) rotate(45deg); opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { transform: translate(100px, 100px) rotate(90deg); opacity: 0; }
}

@keyframes slideInCredentials {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.credentials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 255, 136, 0.3);
  position: relative;
}

.credentials-header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--kluxe-green), rgba(0, 255, 136, 0.5), transparent);
  border-radius: 3px;
  box-shadow: 0 0 20px var(--kluxe-green);
}

.credentials-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), var(--kluxe-green));
  border-radius: 3px;
  box-shadow: 0 0 20px var(--kluxe-green);
}

.credentials-header h3 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-family: 'Caveat', cursive;
  color: var(--kluxe-green);
  margin: 0;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
  letter-spacing: 0.03em;
  line-height: 1.2;
  position: relative;
}

.credentials-header h3::before {
  content: '🔐';
  font-size: 1.8em;
  display: inline-block;
  animation: premiumLockPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

@keyframes premiumLockPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.15) rotate(-5deg);
    opacity: 0.9;
  }
}

.btn-copy-all {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.35) 0%, rgba(0, 255, 136, 0.25) 100%);
  border: 2px solid var(--kluxe-green);
  color: var(--kluxe-green);
  padding: 1rem 2.25rem;
  border-radius: 1rem;
  cursor: pointer;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 8px 24px rgba(0, 255, 136, 0.35),
    0 4px 8px rgba(0, 255, 136, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  letter-spacing: 0.05em;
}

.btn-copy-all::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-copy-all:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.5) 0%, rgba(0, 255, 136, 0.35) 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 16px 40px rgba(0, 255, 136, 0.45),
    0 8px 16px rgba(0, 255, 136, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 255, 136, 0.9);
}

.btn-copy-all:hover::before {
  width: 400px;
  height: 400px;
}

.btn-copy-all:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0 8px 20px rgba(0, 255, 136, 0.3),
    0 4px 8px rgba(0, 255, 136, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 100%, 320px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
  auto-rows: max-content;
}

.credential-item {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.08) 0%,
    rgba(0, 255, 136, 0.12) 50%,
    rgba(255, 255, 255, 0.04) 100%);
  border: 2px solid rgba(0, 255, 136, 0.35);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.credential-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--kluxe-green) 50%,
    transparent 100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.credential-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  transform: translate(50%, 50%) scale(0);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.credential-item:hover {
  border-color: rgba(0, 255, 136, 0.7);
  box-shadow: 
    0 16px 48px rgba(0, 255, 136, 0.3),
    0 8px 16px rgba(0, 255, 136, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.12) 0%,
    rgba(0, 255, 136, 0.16) 50%,
    rgba(255, 255, 255, 0.08) 100%);
}

.credential-item:hover::before {
  opacity: 1;
}

.credential-item:hover::after {
  transform: translate(50%, 50%) scale(1);
}

.credential-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--kluxe-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Roboto Mono', monospace;
  opacity: 0.95;
  position: relative;
  padding-bottom: 0.5rem;
}

.credential-item label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--kluxe-green);
  border-radius: 2px;
}

.credential-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.15) 0%,
    rgba(0, 255, 136, 0.08) 100%);
  border: 2px solid rgba(0, 255, 136, 0.35);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.credential-display:hover {
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.2) 0%,
    rgba(0, 255, 136, 0.12) 100%);
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.credential-display code {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  color: var(--kluxe-green);
  flex: 1;
  word-break: break-all;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.credential-display.status-active {
  border-color: rgba(74, 222, 128, 0.4);
  background: linear-gradient(135deg, 
    rgba(74, 222, 128, 0.15) 0%,
    rgba(74, 222, 128, 0.08) 100%);
}

.credential-display.status-active code {
  color: #4ade80;
  font-weight: 700;
}

.credential-display.status-active::before {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -8px;
  background: #4ade80;
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(74, 222, 128, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 4px 12px rgba(74, 222, 128, 0.6); }
}

.credential-item .btn-copy-credential {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.2));
  border: 2px solid rgba(0, 255, 136, 0.5);
  color: var(--kluxe-green);
  padding: 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.25);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.credential-item .btn-copy-credential::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.credential-item .btn-copy-credential:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.45), rgba(0, 255, 136, 0.35));
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.35);
  border-color: var(--kluxe-green);
}

.credential-item .btn-copy-credential:hover::before {
  width: 120px;
  height: 120px;
}

.credential-item .btn-copy-credential:active {
  transform: scale(0.92) rotate(0deg);
  box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
}

.credential-item.full-width {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.08) 0%,
    rgba(0, 255, 136, 0.04) 100%);
}

.gallery-description,
.vault-description {
  margin: 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.08) 0%,
    rgba(0, 255, 136, 0.04) 100%);
  border-left: 4px solid var(--kluxe-green);
  border-radius: 0.75rem;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: inset 2px 0 8px rgba(0, 255, 136, 0.1);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Additional status styles */
.credential-display.status-expired {
  border-color: rgba(248, 113, 113, 0.4);
  background: linear-gradient(135deg, 
    rgba(248, 113, 113, 0.15) 0%,
    rgba(248, 113, 113, 0.08) 100%);
}

.credential-display.status-expired code {
  color: #f87171;
  font-weight: 700;
}

/* ========== NORMALIZED AUTH VIEW TONE ========== */
.content-header {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-tertiary));
  border: 1px solid rgba(196, 160, 128, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.client-welcome h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  color: var(--text-primary);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

#clientName {
  color: var(--accent-warm);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.client-welcome p {
  color: var(--text-muted);
  opacity: 1;
}

.gallery-credentials-panel,
.vault-credentials-panel {
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-tertiary));
  border: 1px solid rgba(196, 160, 128, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.gallery-credentials-panel::before,
.vault-credentials-panel::before,
.gallery-credentials-panel::after,
.vault-credentials-panel::after {
  content: none;
}

.credentials-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 160, 128, 0.22);
}

.credentials-header::before,
.credentials-header::after {
  content: none;
}

.credentials-header h3 {
  color: var(--text-primary);
  text-shadow: none;
  letter-spacing: 0.01em;
}

.credentials-header h3::before {
  animation: none;
  filter: none;
}

.btn-copy-all {
  background: linear-gradient(135deg, rgba(196, 160, 128, 0.16), rgba(196, 160, 128, 0.08));
  border: 1px solid rgba(196, 160, 128, 0.35);
  color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.btn-copy-all::before {
  display: none;
}

.btn-copy-all:hover {
  background: linear-gradient(135deg, rgba(196, 160, 128, 0.22), rgba(196, 160, 128, 0.12));
  border-color: rgba(196, 160, 128, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.credentials-grid {
  gap: 1.25rem;
}

.credential-item {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1px solid rgba(196, 160, 128, 0.2);
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.credential-item::before,
.credential-item::after {
  content: none;
}

.credential-item:hover {
  transform: none;
  border-color: rgba(196, 160, 128, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.credential-item label {
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.credential-item label::after {
  background: rgba(196, 160, 128, 0.45);
}

.credential-display {
  background: var(--bg-elevated);
  border: 1px solid rgba(196, 160, 128, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.credential-display:hover {
  transform: none;
  border-color: rgba(196, 160, 128, 0.35);
  background: var(--bg-elevated);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.credential-display code {
  color: var(--text-primary);
  text-shadow: none;
}

.credential-display.status-active {
  border-color: rgba(196, 160, 128, 0.42);
  background: linear-gradient(135deg, rgba(196, 160, 128, 0.16), rgba(196, 160, 128, 0.08));
}

.credential-display.status-active code {
  color: var(--text-primary);
}

.credential-display.status-active::before {
  content: none;
}

.credential-item .btn-copy-credential {
  background: rgba(196, 160, 128, 0.14);
  border: 1px solid rgba(196, 160, 128, 0.38);
  color: var(--text-primary);
  box-shadow: none;
}

.credential-item .btn-copy-credential::before {
  display: none;
}

.credential-item .btn-copy-credential:hover {
  transform: none;
  background: rgba(196, 160, 128, 0.22);
  border-color: rgba(196, 160, 128, 0.52);
  box-shadow: none;
}

.gallery-description,
.vault-description,
.credential-item.full-width {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-left-color: rgba(196, 160, 128, 0.5);
  box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .gallery-credentials-panel,
  .vault-credentials-panel {
    padding: 2.75rem 2.5rem;
    border-radius: 1.75rem;
  }
  
  .credentials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .credentials-header h3 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    width: 100%;
  }
  
  .btn-copy-all {
    width: 100%;
    padding: 0.95rem 2rem;
    font-size: 1.2rem;
  }
  
  .credentials-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .credential-item {
    padding: 2rem 1.75rem;
  }
  
  .credential-item.full-width {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .gallery-credentials-panel,
  .vault-credentials-panel {
    padding: 2rem 1.75rem;
    margin-bottom: 2.5rem;
    border-radius: 1.5rem;
  }
  
  .credentials-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .credentials-header h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .btn-copy-all {
    width: 100%;
    padding: 0.9rem 1.75rem;
    font-size: 1.1rem;
  }
  
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .credential-item {
    padding: 1.75rem 1.5rem;
  }
  
  .credential-display {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  
  .credential-display code {
    font-size: 0.9rem;
  }
  
  .credential-item label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gallery-credentials-panel,
  .vault-credentials-panel {
    padding: 1.5rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(0, 255, 136, 0.35);
  }
  
  .credentials-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
  }
  
  .credentials-header h3 {
    font-size: 1.35rem;
    text-align: center;
    gap: 0.5rem;
  }
  
  .credentials-header h3::before {
    font-size: 1.4em;
  }
  
  .btn-copy-all {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
  
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .credential-item {
    padding: 1.5rem 1.25rem;
  }
  
  .credential-item::before {
    height: 3px;
  }
  
  .credential-item label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    gap: 0.4rem;
  }
  
  .credential-display {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(0, 255, 136, 0.3);
  }
  
  .credential-display code {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }
  
  .credential-item .btn-copy-credential {
    min-width: 44px;
    min-height: 44px;
    padding: 0.65rem;
    font-size: 1.1rem;
  }
  
  .gallery-description {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    border-left: 3px solid var(--kluxe-green);
  }
}

@media (max-width: 360px) {
  .gallery-credentials-panel,
  .vault-credentials-panel {
    padding: 1.25rem 1rem;
  }
  
  .credentials-header h3 {
    font-size: 1.25rem;
  }
  
  .btn-copy-all {
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .credential-item {
    padding: 1.25rem 1rem;
  }
  
  .credential-display {
    flex-direction: column;
    padding: 0.75rem;
  }
  
  .credential-item .btn-copy-credential {
    width: 100%;
    min-width: unset;
  }
}