/* Components Styling */

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #12100A;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  filter: brightness(1.08);
}

.btn-glass {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: var(--bg-glass-hover);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-vip {
  background: linear-gradient(135deg, #B89243 0%, #E5C378 50%, #FCE9B8 100%);
  color: #0A0A0E;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(229, 195, 120, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-vip:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 45px rgba(229, 195, 120, 0.6);
}

/* Smartphone Mockup Frame */
.smartphone-container {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.smartphone-mockup {
  position: relative;
  width: 320px;
  height: 620px;
  background: #000;
  border-radius: 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(229, 195, 120, 0.25);
  border: 4px solid #2B2A33;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-speaker-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #000;
  border-radius: 20px;
  z-index: 30;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0D0D12;
  overflow: hidden;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Smartphone UI Overlays */
.phone-overlay-top {
  position: absolute;
  top: 40px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  pointer-events: none;
}

.phone-badge-live {
  background: rgba(229, 195, 120, 0.9);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.phone-overlay-side {
  position: absolute;
  right: 14px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  z-index: 20;
}

.phone-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.1rem;
  justify-content: center;
  transition: transform var(--transition-fast);
  cursor: pointer;
}

.phone-action-btn:hover {
  transform: scale(1.15);
  background: rgba(229, 195, 120, 0.3);
  border-color: var(--gold-primary);
}

.phone-action-count {
  font-size: 0.72rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.phone-overlay-bottom {
  position: absolute;
  bottom: 18px;
  left: 16px;
  right: 60px;
  z-index: 20;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.phone-creator-tag {
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.phone-caption {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Floating Heart Particles */
.heart-particle {
  position: absolute;
  font-size: 1.8rem;
  color: #FF3B5C;
  pointer-events: none;
  animation: floatHeart 1s forwards ease-out;
  z-index: 50;
}

/* Highlights Tray */
.highlights-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
  scrollbar-width: none;
}

.highlights-wrapper::-webkit-scrollbar {
  display: none;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: transform var(--transition-normal);
  background: none;
  border: none;
}

.highlight-item:hover {
  transform: translateY(-4px);
}

.highlight-ring {
  width: 82px;
  height: 82px;
  border-radius: var(--radius-full);
  padding: 3px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(229, 195, 120, 0.3);
  transition: all var(--transition-normal);
}

.highlight-item:hover .highlight-ring {
  box-shadow: var(--shadow-gold-lg);
  transform: scale(1.05);
}

.highlight-avatar {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--bg-primary);
}

.highlight-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* Daily Schedule Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.slot-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.slot-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.slot-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/12;
  overflow: hidden;
  background: #000;
}

.slot-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.slot-card:hover .slot-media {
  transform: scale(1.04);
}

.slot-badge-time {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

.slot-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.slot-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
}

.slot-caption {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.slot-hashtags {
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-top: auto;
  word-break: break-word;
}

/* Offline Gallery & Lookbook */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  color: #0D0D12;
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  background: #0E0E14;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gallery-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
}

.gallery-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

/* VIP Vault Feature Card */
.vip-vault-container {
  background: radial-gradient(circle at top right, rgba(229, 195, 120, 0.15) 0%, rgba(13, 13, 18, 0.9) 60%), #0D0D14;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(229, 195, 120, 0.05);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.vip-badge-exclusive {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229, 195, 120, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  width: fit-content;
}

.vip-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.vip-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.vip-perks-list li::before {
  content: '✦';
  color: var(--gold-primary);
  font-size: 1rem;
}

.vip-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}

.vip-teaser-card {
  position: relative;
  aspect-ratio: 9/12;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.vip-teaser-card:first-child {
  grid-row: span 2;
  aspect-ratio: 9/16;
}

.vip-teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) brightness(0.65);
  transform: scale(1.1);
}

.vip-lock-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.vip-lock-icon {
  font-size: 1.8rem;
}

/* Interactive Fan Hub & Widgets */
.fan-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.widget-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.widget-card:hover {
  border-color: var(--border-gold);
}

.poll-question {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: white;
}

.poll-actions {
  display: flex;
  gap: 1rem;
}

.poll-choice-btn {
  flex: 1;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.poll-choice-btn:hover:not(.disabled) {
  border-color: var(--gold-primary);
  background: rgba(229, 195, 120, 0.1);
  color: var(--gold-primary);
}

.poll-choice-btn.selected {
  border-color: var(--gold-primary);
  background: var(--gold-gradient);
  color: #0A0A0E;
}

.poll-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.poll-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.poll-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
}

.poll-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.poll-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: width 1s var(--ease-smooth);
}

.poll-reaction-toast {
  padding: 0.8rem 1rem;
  background: rgba(229, 195, 120, 0.12);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gold-light);
}

/* Outfit Rating Slider */
.score-pill-group {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

.score-pill {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.score-pill:hover:not(.disabled) {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: scale(1.12);
}

.score-pill.selected {
  background: var(--gold-gradient);
  color: #0D0D12;
  border-color: var(--gold-primary);
  font-weight: 700;
}

.rating-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.rating-avg-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-primary);
  font-weight: 700;
}

/* Q&A Form */
.qa-form {
  display: flex;
  gap: 0.8rem;
}

.qa-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.3rem;
  color: white;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}

.qa-input:focus {
  border-color: var(--gold-primary);
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 180px;
  overflow-y: auto;
}

.qa-item {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--border-gold);
}

.qa-item-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.qa-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Social Hub Grid */
.social-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: all var(--transition-normal);
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.05);
}

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

.social-platform {
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}

.social-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #14141E;
  color: white;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-gold-lg);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 1000;
  animation: pulseGlow 2s infinite;
}

/* Utilities */
.hidden {
  display: none !important;
}
