/* ============ VIP EXCLUSIVE CARD STYLES - OPTIMIZED ============ */
.vip-exclusive-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.98), rgba(30, 35, 50, 0.95));
  border: 2px solid rgba(234, 179, 8, 0.4);
}

/* Simplified border - no animation */
.vip-glow-border {
  display: none;
}

.vip-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.vip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}

.vip-title-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vip-crown-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.vip-main-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-subtitle {
  margin: 0.25rem 0 0 0;
  font-size: 0.85rem;
  color: #a0aec0;
}

.vip-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.vip-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.vip-badge.fire {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.vip-badge.meme {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.vip-badge.exclusive {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.vip-intro-box {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #fcd34d;
}

.vip-intro-icon {
  font-size: 1.5rem;
  color: #fbbf24;
}

.vip-intro-box p {
  font-size: 0.85rem;
  color: #a0aec0;
  margin-top: 0.25rem;
}

.vip-form-section {
  position: relative;
}

.vip-label {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fcd34d;
  margin-bottom: 0.5rem;
}

.vip-input {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(234, 179, 8, 0.3) !important;
  color: #fff !important;
}

.vip-input:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 10px rgba(234, 179, 8, 0.2) !important;
}

.vip-input::placeholder {
  color: #6b7280 !important;
}

.vip-character-preview {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
}

.character-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 10px;
}

.character-emoji {
  font-size: 2rem;
}

.character-info {
  display: flex;
  flex-direction: column;
}

.character-name {
  font-weight: 700;
  color: #fbbf24;
  font-size: 0.9rem;
}

.character-desc {
  font-size: 0.75rem;
  color: #9ca3af;
}

.vip-generate-btn {
  position: relative;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
}

.vip-generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.vip-btn-glow {
  display: none;
}

.vip-btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vip-output-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1rem;
}

.vip-output-textarea {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(234, 179, 8, 0.2) !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

.vip-copy-btn {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.4);
  color: #fbbf24;
}

.vip-copy-btn:hover {
  background: rgba(234, 179, 8, 0.25);
  color: #fcd34d;
}

.vip-scenes-grid {
  display: grid;
  gap: 1rem;
}
