/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-color: #080507;
  --text-primary: #ffffff;
  --text-secondary: #9f91a0;
  --accent-pink: #ff2a75;
  --accent-violet: #a855f7;
  --glass-bg: rgba(15, 10, 14, 0.45);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-hover: rgba(255, 255, 255, 0.12);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  overflow-x: hidden;
  position: relative;
}

body.modal-active {
  overflow: hidden;
  height: 100vh;
}

/* Canvas Particle Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* Blur Orbs for dynamic lighting */
.glow-orb {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

#orb-1 {
  background: var(--accent-pink);
  top: 15%;
  left: -10%;
}

#orb-2 {
  background: var(--accent-violet);
  bottom: 15%;
  right: -10%;
}

/* Age Verification Modal Styling */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(16, 10, 15, 0.96) 0%, rgba(8, 5, 7, 0.99) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: visible;
  padding: 20px;
}

.age-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-modal.hide .age-card {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
}

.age-card {
  background: linear-gradient(135deg, rgba(25, 16, 22, 0.7) 0%, rgba(14, 8, 12, 0.5) 100%);
  border: 1px solid rgba(255, 42, 117, 0.15);
  border-radius: 28px;
  padding: 50px 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8),
              0 0 50px rgba(255, 42, 117, 0.05);
  transform: scale(1) translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.age-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 42, 117, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translate(-5%, -5%) scale(1);
  }
  100% {
    transform: translate(5%, 5%) scale(1.1);
  }
}

.age-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 42, 117, 0.08);
  color: var(--accent-pink);
  border: 1px solid rgba(255, 42, 117, 0.3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 0 15px rgba(255, 42, 117, 0.15);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-pink);
  animation: badgeDotPulse 1.5s infinite;
}

@keyframes badgeDotPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.age-card h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.brand-name {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 42, 117, 0.2);
}

.age-warning-text {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 300;
}

.age-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.age-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-yes {
  background: linear-gradient(135deg, var(--accent-pink) 0%, #ff5294 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 42, 117, 0.35);
}

@media (hover: hover) {
  .btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 42, 117, 0.5);
    filter: brightness(1.05);
  }
}

.btn-yes:active {
  transform: translateY(0) scale(0.96);
  opacity: 0.9;
}

.btn-yes .btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .btn-yes:hover .btn-icon {
    transform: translateX(4px);
  }
  .btn-no:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
}

.btn-no {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-no:active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.96);
}

.age-disclaimer {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.4;
  max-width: 280px;
  margin: 0 auto;
}

/* Main Container Layout */
.container {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header Area */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.avatar-container {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .avatar:hover {
    transform: scale(1.03);
  }
}

.pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 42, 117, 0.3);
  opacity: 0.6;
  animation: pulseGlow 3s infinite ease-in-out;
  z-index: 0;
}

.username {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #fff;
}

.verified-badge {
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bio {
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Links Container */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 45px;
}

/* Base Link Button Style */
.link-btn {
  text-decoration: none;
  color: var(--text-primary);
  display: block;
  width: 100%;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

/* Inner Button Layout */
.btn-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  position: relative;
  z-index: 3;
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.btn-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  opacity: 0.3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .link-btn:hover .btn-arrow {
    opacity: 0.8;
    transform: translateX(4px);
  }
}

.link-btn:active {
  transform: scale(0.97);
  opacity: 0.9;
  transition: transform 0.1s ease, opacity 0.1s ease;
}

/* 1. VIP Link Style (Fanvue - Ultra prominent & Elegant) */
.btn-vip {
  background: transparent;
  border: 1px solid rgba(255, 42, 117, 0.35);
  box-shadow: 0 10px 30px rgba(255, 42, 117, 0.08);
  animation: slideIn 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both,
             vipBreath 3s 0.7s infinite ease-in-out;
}

@media (hover: hover) {
  .btn-vip:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--accent-pink);
    box-shadow: 0 15px 40px rgba(255, 42, 117, 0.25),
                0 0 20px rgba(255, 42, 117, 0.15);
    animation-play-state: paused;
  }
}

.btn-vip:active {
  animation: none;
  transform: scale(0.97);
}

.btn-vip .btn-title {
  color: #fff;
  background: linear-gradient(90deg, #ffffff 0%, #ffbacc 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
}

.btn-vip .btn-subtitle {
  color: #f7a8c4;
}

.btn-vip .btn-arrow {
  color: var(--accent-pink);
  opacity: 0.6;
}

@media (hover: hover) {
  .btn-vip:hover .btn-arrow {
    opacity: 1;
  }
}

/* 2. Subdued Free Link Style (Telegram) */
.btn-free {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  animation: slideIn 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (hover: hover) {
  .btn-free:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
  }
}

.btn-free .btn-title {
  color: #e5dde6;
}

.btn-free .btn-subtitle {
  color: #8c808f;
}

/* Footer Section */
.profile-footer {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Social Buttons Grid */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

@media (hover: hover) {
  .social-icon-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
}

.social-icon-btn:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.1s ease;
}

.copyright {
  font-size: 0.72rem;
  color: #524754;
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.7;
  }
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

@keyframes vipBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 42, 117, 0.08);
    border-color: rgba(255, 42, 117, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 42, 117, 0.2),
                0 0 15px rgba(255, 42, 117, 0.1);
    border-color: rgba(255, 42, 117, 0.65);
  }
}



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

/* Mobile Responsiveness optimizations */
@media (max-width: 480px) {
  body {
    padding: 45px 16px;
  }
  .username {
    font-size: 1.6rem;
  }
  .btn-content {
    padding: 20px;
  }
  .btn-title {
    font-size: 0.88rem;
  }
  .btn-subtitle {
    font-size: 0.75rem;
  }
  .avatar-container {
    width: 84px;
    height: 84px;
  }
  .age-card {
    padding: 40px 25px;
  }
}
