/* Kitsune Cyber-Noir Design System */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-obsidian: #0a0a0a;
  --bg-surface: #121212;
  --bg-surface-elevated: #1a1a1a;
  --color-cherry: #d2042d;
  --color-cherry-glow: rgba(210, 4, 45, 0.5);
  --color-gold: #d4af37;
  --color-gold-glow: rgba(212, 175, 55, 0.3);
  --text-primary: #e5e2e1;
  --text-secondary: #e6bdbb;
  --text-muted: #8e8a89;
  --font-primary: 'Sora', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --glow-cherry-box: 0 0 15px var(--color-cherry-glow);
  --glow-gold-box: 0 0 15px var(--color-gold-glow);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
body {
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-elevated);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-cherry);
}

/* Background Gradients & Watermarks */
.cyber-bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.cyber-bg-effects::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(210, 4, 45, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
}
.cyber-bg-effects::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
}

/* Kitsune Motif Watermark */
.kitsune-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%23d2042d' stroke-width='1.5' d='M50,10 L80,45 L70,80 L50,90 L30,80 L20,45 Z M50,20 L70,50 L60,75 L50,82 L40,75 L30,50 Z M50,30 L55,48 L50,55 L45,48 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Age Gate Styling */
#age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-obsidian);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.age-gate-card {
  max-width: 480px;
  width: 100%;
  background: rgba(18, 18, 18, 0.7);
  border: 1px solid rgba(210, 4, 45, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--glow-cherry-box);
}

.age-gate-logo {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.age-gate-logo span.highlight {
  color: var(--color-cherry);
  text-shadow: 0 0 10px var(--color-cherry-glow);
}

.age-gate-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.age-gate-disclaimer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 35px;
}

/* Main Landing Header */
.brand-header {
  padding: 25px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
}
.brand-logo span {
  color: var(--color-cherry);
  text-shadow: 0 0 8px var(--color-cherry-glow);
}

/* Profile Section */
.profile-section {
  padding: 60px 0 30px 0;
  text-align: center;
}

.avatar-container {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px auto;
  position: relative;
}

.avatar-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--color-cherry);
  border-radius: 50%;
  animation: pulse-ring 2.5s infinite;
  box-shadow: var(--glow-cherry-box);
}

.avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-obsidian);
  position: relative;
  z-index: 2;
  background-color: var(--bg-surface-elevated);
}

.profile-name {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.profile-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.profile-bio {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Social Buttons Grid */
.links-section {
  padding: 30px 0;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 16px auto;
  padding: 18px 24px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
}

.social-button:hover {
  color: var(--text-primary);
  transform: translateY(-3px);
}

.social-button-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-button-left i {
  font-size: 1.3rem;
}

.social-button-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Specific Social Button Themes */
.social-fanvue {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.social-fanvue:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.15), var(--glow-gold-box);
}
.social-fanvue .social-button-badge {
  color: var(--color-gold);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
}
.social-fanvue i {
  color: var(--color-gold);
}

.social-instagram {
  border-color: rgba(210, 4, 45, 0.3);
}
.social-instagram:hover {
  border-color: var(--color-cherry);
  background: rgba(210, 4, 45, 0.05);
  box-shadow: 0 4px 25px rgba(210, 4, 45, 0.15), var(--glow-cherry-box);
}
.social-instagram .social-button-badge {
  color: var(--color-cherry);
  border-color: rgba(210, 4, 45, 0.5);
  background: rgba(210, 4, 45, 0.08);
}
.social-instagram i {
  color: var(--color-cherry);
}

/* Collections / Swiper Section */
.collections-section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-cherry);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

/* Swiper Container Custom styling */
.swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

.collection-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  cursor: pointer;
  height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 4, 45, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), var(--glow-cherry-box);
}

.card-media-wrapper {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--bg-obsidian);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card-video-teaser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.collection-card:hover .card-image {
  transform: scale(1.08);
}

.collection-card:hover .card-video-teaser {
  opacity: 1;
}

.teaser-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(10, 10, 10, 0.85);
  border: 0.5px solid rgba(210, 4, 45, 0.5);
  color: var(--color-cherry);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 4px 8px;
  letter-spacing: 0.05em;
  z-index: 3;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-gold);
  border: 0.5px solid rgba(212, 175, 55, 0.3);
  padding: 2px 6px;
  text-transform: uppercase;
}

.card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-footer-info {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.media-count {
  color: var(--text-muted);
}

.unlock-action {
  color: var(--color-cherry);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}
.collection-card:hover .unlock-action {
  color: var(--text-primary);
  text-shadow: 0 0 5px var(--color-cherry-glow);
}

/* Swiper Scrollbar and Pagination styling */
.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.4;
  width: 10px;
  height: 10px;
  border-radius: 0;
  transition: var(--transition-smooth);
}
.swiper-pagination-bullet-active {
  background: var(--color-cherry) !important;
  opacity: 1;
  width: 25px;
  border-radius: 0;
  box-shadow: var(--glow-cherry-box);
}

/* Modal Styling */
.modal-content {
  background-color: var(--bg-surface);
  border: 1px solid rgba(210, 4, 45, 0.3);
  color: var(--text-primary);
  border-radius: 0;
  box-shadow: var(--glow-cherry-box);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gallery inside Modal */
.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.modal-gallery-item {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-obsidian);
}

.modal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.6);
  transition: var(--transition-smooth);
}

.locked-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(10, 10, 10, 0.4);
  color: var(--color-gold);
}

.locked-overlay i {
  font-size: 2rem;
  margin-bottom: 8px;
  text-shadow: var(--glow-gold-box);
  animation: pulse-lock 2s infinite;
}

.locked-overlay span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Call to Action Button */
.btn-cyber-primary {
  background: var(--color-cherry);
  border: none;
  color: white;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 14px 28px;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-cherry-box);
  border-radius: 0;
}

.btn-cyber-primary:hover, .btn-cyber-primary:focus {
  background: #ff0b37;
  color: white;
  box-shadow: 0 0 25px rgba(210, 4, 45, 0.8);
  transform: translateY(-2px);
}

.btn-cyber-gold {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 14px 28px;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.btn-cyber-gold:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--color-gold);
  box-shadow: var(--glow-gold-box);
}

/* Newsletter Section */
.newsletter-section {
  padding: 60px 0;
  background: rgba(18, 18, 18, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cyber-input-group {
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 25px auto 0 auto;
}

.cyber-input {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  border-radius: 0;
  padding: 14px 20px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.cyber-input:focus {
  background: var(--bg-surface);
  border-color: var(--color-cherry);
  box-shadow: var(--glow-cherry-box);
  outline: none;
  color: var(--text-primary);
}

/* Footer Section */
.brand-footer {
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  background-color: var(--bg-obsidian);
}

.footer-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-decoration: none;
  display: block;
}
.footer-logo span {
  color: var(--color-cherry);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--color-cherry);
}

.age-warning-badge {
  display: inline-block;
  border: 1.5px solid var(--text-muted);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: bold;
  padding: 2px 6px;
  font-size: 0.7rem;
  margin-bottom: 15px;
}

/* Keyframe Animations */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}

@keyframes pulse-lock {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
