:root {
  --bg-primary: #020617;
  --bg-card: rgba(15, 23, 42, 0.6);
  --accent-red: #ff0000;
  --accent-blue: #0ea5e9;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

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

body {
  font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.luxe-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 80px;
  /* Space for hidden elements */
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.shimmer-text {
  background: linear-gradient(90deg, #fff, #94a3b8, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s infinite linear;
}

.nav-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  background: rgba(15, 23, 42, 0.4);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.brand-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid-drops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.drop-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #000;
  border: 1px solid var(--glass-border);
}

.v-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.drop-card:hover .v-preview {
  opacity: 1;
  transform: scale(1.05);
}

.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid var(--glass-border);
  color: #fff;
}

.drop-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.btn-premium {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, var(--accent-red), #991b1b);
  border: none;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-premium:active {
  transform: scale(0.96);
}

.user-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

#vault-section {
  display: none;
}