@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@200;400;600;800&display=swap');

:root {
  /* Color Palette - Sophisticated Dark Theme */
  --bg-dark: hsl(220, 15%, 5%);
  --accent-gold: hsl(45, 100%, 50%);
  --accent-crimson: hsl(350, 80%, 45%);
  --text-primary: hsl(0, 0%, 95%);
  --text-secondary: hsl(0, 0%, 70%);
  --glass-bg: rgba(18, 18, 18, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  
  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0d0f;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Glassmorphism Utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Age Verification Modal */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  transition: opacity 0.5s ease;
}

#age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-content {
  text-align: center;
  padding: var(--spacing-lg);
  max-width: 500px;
  border-radius: 24px;
}

.age-gate-content h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(to right, var(--accent-gold), var(--accent-crimson));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.age-gate-content p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.btn-group {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
}

.btn {
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-crimson);
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent-crimson);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

/* Header & Nav */
header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, white, var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

nav a:hover, nav a.active {
  color: var(--accent-gold);
}

/* Gallery Grid */
.gallery-container {
  padding: var(--spacing-lg) 5%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  background: #1a1a1a;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-sm);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .item-overlay {
  opacity: 1;
}

.item-info h3 {
  font-size: 1rem;
  color: white;
}

.item-info span {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#lightbox.active {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05); /* The "Back Area" text */
  white-space: nowrap;
  letter-spacing: -2vw;
  z-index: 1;
  pointer-events: none;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95%;
  max-height: 90vh;
  gap: 60px;
  z-index: 10;
}
#lightbox-img, #lightbox-video {
  max-height: 85vh;
  width: auto;
  max-width: 70vw;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0,0,0,1);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.6s ease;
}

.lightbox-info {
  width: 400px;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-cat-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.lightbox-info h3 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.lightbox-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
}

.close-lightbox {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.close-lightbox:hover {
  background: var(--accent-crimson);
  transform: rotate(90deg) scale(1.1);
}

/* Lightbox Mobile Adjustment */
@media (max-width: 1200px) {
  .lightbox-content-wrapper {
    flex-direction: column;
    gap: 30px;
    max-width: 90%;
  }
  
  .lightbox-info {
    width: 100%;
    text-align: center;
  }
  
  #lightbox-img, #lightbox-video {
    max-width: 100%;
    max-height: 50vh;
  }
  
  .lightbox-info h3 {
    font-size: 1.8rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Animations */
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    overflow-x: auto;
    padding-bottom: 10px;
    width: 100vw;
    padding-left: 5%;
  }
  
  .age-gate-content h1 {
    font-size: 2rem;
  }
}

/* --- ELITE BOUTIQUE RE-DESIGN (SMR Inspired) --- */

/* Page Background Gradient Enhancement */
body {
  background: radial-gradient(circle at top right, #1a1c20 0%, #0b0d0f 100%);
}

/* Symmetrical Header */
.elite-header {
  height: auto;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid rgba(255,185,0,0.1); /* Subtle Gold Line */
}

/* Header Top Row: Logo centered, Instagram on right */
.header-top {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

.social-header {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.instagram-link .social-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ig-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(to right, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-centered {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 12px;
  background: linear-gradient(to right, white, var(--accent-gold), var(--accent-crimson));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-align: center;
}

.centered-nav ul {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.centered-nav a {
  font-size: 1rem;
  letter-spacing: 4px;
  opacity: 0.8;
  font-weight: 600;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.slider-container {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  padding: 0 10%;
  background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
}

.intro-badge {
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 8px 30px;
  border-radius: 50px;
  font-size: 1rem;
  margin-bottom: 30px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.massive-hero-title {
  font-size: 12rem;
  line-height: 0.85;
  margin-bottom: 30px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,1));
  font-weight: 900;
}

.hero-subtext {
  max-width: 900px;
  font-size: 1.6rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

/* Category Strip (SMR Style 6-Column) */
.category-visuals {
  padding: 150px 0;
  background: #0b0d0f;
  text-align: center;
}

.visuals-title {
  font-size: 1.4rem;
  color: var(--text-secondary);
  letter-spacing: 6px;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-weight: 300;
}

.smr-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  padding: 0 2%;
}

.smr-card {
  position: relative;
  height: 650px;
  overflow: hidden;
  cursor: pointer;
}

.smr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.smr-card:hover img {
  transform: scale(1.15);
}

.smr-label {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 5;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.smr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent 30%);
}

/* Large Impact Section (Center Image Fill) */
.impact-section {
  height: 90vh;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 50px 0;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0b0d0f, transparent 20%, transparent 80%, #0b0d0f);
}

.impact-content {
  z-index: 5;
  text-align: center;
  max-width: 1200px;
  padding: 0 5%;
}

.impact-heading {
  font-size: 10rem;
  line-height: 0.8;
  letter-spacing: -4px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Cinematic Video Section */
.video-gallery-section {
  padding: 100px 5%;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header-centered .hero-subtext {
  text-align: center;
  margin: 0 auto 40px auto;
}

.massive-heading {
  font-size: 7rem;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.video-item {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.8s ease;
}

.video-item:hover video {
  opacity: 1;
  transform: scale(1.05);
}

/* Transitions */
.page-section {
    min-height: 100vh;
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 1600px) {
  .massive-hero-title { font-size: 9rem; }
  .impact-heading { font-size: 7rem; }
}

@media (max-width: 1200px) {
  .smr-category-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .massive-hero-title { font-size: 6rem; }
}

@media (max-width: 768px) {
  .massive-hero-title { font-size: 4rem; }
  .impact-heading { font-size: 4rem; }
  .smr-category-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .logo-centered { font-size: 2.2rem; }
  .centered-nav ul { gap: 20px; }
}

/* --- FINAL ELITE SPACE-FILLING POLISH --- */

/* Brand Ticker Marquee */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 185, 0, 0.05);
  border-top: 1px solid rgba(255,185,0,0.1);
  border-bottom: 1px solid rgba(255,185,0,0.1);
  padding: 8px 0;
  margin-top: 15px;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 5px;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  animation: ticker 40s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gallery Density Upgrade */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 15px !important;
  padding: 0 15px !important;
}

/* Sticky Side Brand Mark (Fills side voids) */
body::after {
  content: 'SULTRY NOSHI • OFFICIAL PORTFOLIO';
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 12px;
  color: rgba(255,255,255,0.08);
  z-index: 1001;
  pointer-events: none;
  font-weight: 800;
  text-transform: uppercase;
}

/* --- PRIVATE COMMISSION (THE CUSTOM EXPERIENCE) --- */
#commission-view {
  padding: 150px 5% !important;
  background: radial-gradient(circle at bottom left, #1a1c20 0%, #0b0d0f 100%);
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 80px auto;
}

.price-card {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.price-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 20px rgba(255,185,0,0.1);
}

.card-tier {
  font-size: 0.8rem;
  letter-spacing: 5px;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card-tier.gold {
  color: var(--accent-gold);
}

.price-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.price-tag {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 40px;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  text-align: center;
}

.tier-features li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tier-features li:last-child {
  border-bottom: none;
}

.cta-primary {
  display: block;
  width: 100%;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-primary:hover {
  background: white;
  color: black;
  transform: scale(1.02);
}

.cta-primary.gold-bg {
  background: var(--accent-gold);
  color: black;
  border: none;
}

.cta-primary.gold-bg:hover {
  background: white;
  transform: scale(1.02);
}

.discord-footer-box {
  margin-top: 100px;
  text-align: center;
  padding: 30px;
  background: rgba(114, 137, 218, 0.1); /* Discord Blur Blur */
  border-radius: 12px;
  border: 1px solid rgba(114, 137, 218, 0.2);
}

.discord-footer-box p {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.discord-footer-box strong {
  color: #7289da;
  font-size: 1.4rem;
}

@media (max-width: 1200px) {
  .commission-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* --- NOSHI'S ELITE ID CARD & VERIFICATION --- */

.noshi-id-card-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.noshi-id-card {
    width: 420px;
    height: 250px;
    border-radius: 20px;
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.noshi-id-card:hover {
    transform: scale(1.05) rotate(1deg);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,185,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-radius: 6px;
    position: relative;
}

.card-chip::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
}

.fanvue-verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.verified-tick {
    width: 14px;
    height: 14px;
    fill: #00d2ff;
}

.card-body {
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 2;
}

.id-photo-container {
    width: 90px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    filter: grayscale(100%) brightness(1.2);
}

.id-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.id-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-group label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.detail-group h4 {
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 1px;
}

.detail-footer {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.6;
}

.card-scan-line {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 15px var(--accent-gold);
    animation: scan 4s linear infinite;
    z-index: 3;
    opacity: 0.5;
}

@keyframes scan {
    0% { top: -10%; }
    100% { top: 110%; }
}

.card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.id-caption {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    opacity: 0.5;
}

.inline-tick {
    width: 16px;
    height: 16px;
    fill: var(--accent-gold);
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.fanvue-trust-badge {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.verified-tick-inline {
    width: 18px;
    height: 18px;
    fill: #00d2ff;
}

/* --- PREMIUM UI ENHANCEMENTS --- */

/* 1. Custom Cursor */
#cursor-dot, #cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1000000; /* Absolute Top Priority */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
    display: block !important;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
}

#cursor-glow {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 185, 0, 0.15);
    border: 1px solid rgba(255, 185, 0, 0.3);
    backdrop-filter: blur(2px);
}

/* Cursor States */
body:active #cursor-dot { transform: translate(-50%, -50%) scale(0.5); }
body:active #cursor-glow { transform: translate(-50%, -50%) scale(1.5); background-color: rgba(255, 185, 0, 0.3); }

.cursor-hover #cursor-glow {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 185, 0, 0.1);
    border-color: var(--accent-gold);
}

/* Hide default cursor only if not on touch device */
@media (pointer: fine) {
    body, a, button, .smr-card, .gallery-item {
        cursor: none !important;
    }
}

@media (pointer: coarse) {
    #cursor-dot, #cursor-glow { display: none; }
}

/* 2. Cinematic Grain Overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.04;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    background-repeat: repeat;
    mix-blend-mode: overlay;
    animation: grain-animation 1s steps(10) infinite;
}

@keyframes grain-animation {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
}

/* 3. Magnetic & Interactive Components */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 4. Scroll Reveal & Text Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* 5. Logo Glitch Animation */
.logo-glitch-hover:hover {
    animation: glitch 0.3s cubic-bezier(.25,.46,.45,.94) both infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* 6. Live status pulse */
.status-pulse {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

/* --- CONVERSION OPTIMIZATION STYLES --- */

/* Floating Fanvue FAB */
.fanvue-fab {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9998;
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border: 1px solid rgba(255,185,0,0.3);
}

.fanvue-fab:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,185,0,0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,185,0,0.2);
}

.fab-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255,185,0,0.15) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fab-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fab-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-gold);
    animation: fab-bounce 2s infinite ease-in-out;
}

@keyframes fab-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.fanvue-fab span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Conversion Prompt Toast */
#conversion-prompt {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 350px;
    padding: 30px;
    z-index: 10000;
    border-radius: 20px;
    transform: translateX(-120%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

#conversion-prompt.active {
    transform: translateX(0);
}

.prompt-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

#conversion-prompt p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.close-prompt {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
}

/* Gallery Exclusive Tag */
.exclusive-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 185, 0, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 5;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .exclusive-badge {
    opacity: 1;
}

@media (max-width: 768px) {
    .fanvue-fab {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    .fanvue-fab span { display: none; }
    #conversion-prompt {
        width: 90%;
        left: 5%;
        bottom: 80px;
    }
}
/* --- PRIVATE VAULT STYLES --- */
.locked-vault {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 185, 0, 0.1);
    background: #000;
}

.vault-header {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 10;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.6);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.locked-vault video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.4);
    transition: filter 0.8s ease;
}

.fanvue-fab {
  position: fixed;
  top: 220px;
  right: 30px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 16px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 185, 0, 0.5);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(255, 185, 0, 0.25), 0 10px 40px rgba(0,0,0,0.8);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: fab-entrance 0.6s ease 2s both;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  max-width: 220px;
  display: inline-flex;
  align-items: flex-start;
}

.fanvue-fab:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 50px rgba(255, 185, 0, 0.5), 0 20px 60px rgba(0,0,0,0.8);
  border-color: var(--accent-gold);
}

.fab-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.fab-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.fab-live-dot {
  width: 8px;
  height: 8px;
  background: #ff3b5c;
  border-radius: 50%;
  animation: live-pulse 1.5s ease infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(255, 59, 92, 0); }
}

.fab-live-text {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ff3b5c;
  text-transform: uppercase;
}

.fab-main-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.fab-sub-cta {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

@keyframes fab-entrance {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}


.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: radial-gradient(circle, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 5;
}

.locked-vault:hover video {
    filter: blur(15px) brightness(0.5); /* Slight reveal on hover */
}

/* --- SOCIAL LINKS FOOTER --- */
.social-links-footer a {
  transition: var(--transition-smooth);
}

.social-links-footer a:hover {
  color: var(--accent-gold) !important;
  transform: translateY(-2px);
}

.footer-social-link svg {
  transition: var(--transition-smooth);
}

.footer-social-link:hover svg {
  transform: scale(1.2);
}

/* --- ID CARD SOCIALS --- */
.id-socials a {
  transition: var(--transition-smooth);
  opacity: 0.7;
}

.id-socials a:hover {
  opacity: 1;
  text-decoration: underline !important;
}
