/* ========================================
   HOME PAGE - Premium Dark Theme
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --bg-dark: #1a0a1f;
  --bg-purple: #2d1b69;
  --accent-red: #c41e3a;
  --accent-pink: #ff6b9d;
  --accent-gold: #d4af37;
  --accent-rose: #b76e79;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Expand container for desktop 2-column layout */
@media (min-width: 900px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }
}

/* ========================================
   HEADER - Glassmorphism
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 10, 31, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand .logo {
  width: 44px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand .logo:hover {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.8));
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-link:hover {
  background: rgba(255, 107, 157, 0.15);
  color: var(--accent-pink);
}

/* ========================================
   LANGUAGE SELECTOR
   ======================================== */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-arrow {
  transition: transform 0.3s ease;
}

.lang-globe-icon {
  opacity: 0.8;
}

.lang-selector.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(30, 25, 50, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 6px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-option.active {
  background: rgba(196, 30, 58, 0.3);
  color: #fff;
}

/* ========================================
   BIO HERO - Animated Background
   ======================================== */
.bio-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  overflow: hidden;
  /* Static gradient background - optimized for performance */
  background: linear-gradient(135deg, #1a0a1f 0%, #2d1b69 35%, #3d1a4a 65%, #1a0a1f 100%);
}

/* Static Overlay Pattern - no animation for better performance */
.bio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196, 30, 58, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(183, 110, 121, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(45, 27, 105, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* Static subtle particles - decorative dots without animation */
.bio-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(255, 107, 157, 0.5), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(183, 110, 121, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 157, 0.4), transparent),
    radial-gradient(1px 1px at 200px 50px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 300px 30px, rgba(255, 107, 157, 0.4), transparent);
  background-repeat: repeat;
  background-size: 350px 150px;
  opacity: 0.6;
  pointer-events: none;
}

/* ========================================
   BIO CONTAINER - Glassmorphism Card
   ======================================== */
.bio-container {
  position: relative;
  z-index: 10;
  padding: 2.5rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px var(--shadow-dark), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  /* Expand max-width for desktop */
  max-width: 1100px;
  width: 100%;
}

/* Two Column Grid Layout */
.home-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home-column {
  display: flex;
  flex-direction: column;
}

.home-column-left {
  text-align: center;
  align-items: center;
}

.home-column-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Desktop Layout: 2 Columns */
@media (min-width: 900px) {
  .bio-container {
    padding: 3rem;
  }

  .home-grid {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .home-column-left {
    flex: 0 0 320px;
    position: sticky;
    top: 100px;
  }

  .home-column-right {
    flex: 1;
    min-width: 0;
  }
}

/* Avatar/Logo */
.avatar-wrapper {
  margin-bottom: 1rem;
}

.avatar-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 30px rgba(255, 107, 157, 0.5)) drop-shadow(0 0 60px rgba(196, 30, 58, 0.3)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  /* Static glow effect - no animation for performance */
  filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5)) drop-shadow(0 0 60px rgba(196, 30, 58, 0.3)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

@keyframes logoGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5)) drop-shadow(0 0 60px rgba(196, 30, 58, 0.3)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transform: translateY(0);
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.7)) drop-shadow(0 0 80px rgba(196, 30, 58, 0.5)) drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
    transform: translateY(-8px);
  }
}

/* Bio Text */
.bio-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.bio-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   CUSTOM ORDERS CTA SECTION
   ======================================== */
.custom-orders-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(45, 27, 105, 0.2));
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 157, 0.25);
  /* Static glow - no animation for performance */
  box-shadow: 0 0 25px rgba(255, 107, 157, 0.15), inset 0 0 30px rgba(196, 30, 58, 0.05);
}

@keyframes ctaGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.15), inset 0 0 30px rgba(196, 30, 58, 0.05);
  }

  100% {
    box-shadow: 0 0 35px rgba(255, 107, 157, 0.25), inset 0 0 40px rgba(196, 30, 58, 0.1);
  }
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Standard CTA Button */
.cta-standard {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.25), rgba(183, 110, 121, 0.2));
  border: 2px solid rgba(255, 107, 157, 0.4);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.cta-standard:hover {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.4), rgba(183, 110, 121, 0.3));
  border-color: rgba(255, 107, 157, 0.7);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.35);
}

/* Adult CTA Button */
.cta-adult {
  background: linear-gradient(135deg, rgba(255, 100, 0, 0.3), rgba(255, 45, 0, 0.2));
  border: 2px solid rgba(255, 138, 0, 0.5);
  box-shadow: 0 8px 25px rgba(255, 100, 0, 0.2);
}

.cta-adult:hover {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.45), rgba(255, 45, 0, 0.3));
  border-color: rgba(255, 138, 0, 0.8);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 100, 0, 0.4);
}

/* CTA Icon */
.cta-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cta-btn:hover .cta-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* CTA Content */
.cta-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.adult-highlight {
  background: linear-gradient(135deg, #ff6b6b, #ff2d2d);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-left: 6px;
  box-shadow: 0 2px 10px rgba(255, 45, 45, 0.4);
  animation: pulseRed 2s ease-in-out infinite;
}

@keyframes pulseRed {

  0%,
  100% {
    box-shadow: 0 2px 10px rgba(255, 45, 45, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(255, 45, 45, 0.6);
  }
}

.cta-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* CTA Arrow */
.cta-arrow {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.cta-btn:hover .cta-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* Shine Effect */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

/* ========================================
   FEATURED VIDEO SECTION
   ======================================== */
.featured-video-section {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(45, 27, 105, 0.15));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-align: center;
}

/* Responsive 16:9 Video Container */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ========================================
   LINK BUTTONS - Premium Style
   ======================================== */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Shine effect */
.link-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.link-btn:hover::before {
  left: 100%;
}

.link-btn:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 107, 157, 0.4);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.25);
}

.link-btn:active {
  transform: translateY(-2px) scale(0.98);
}

/* Button Icons */
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.link-btn:hover .btn-icon svg {
  transform: scale(1.15);
}

/* Adult Button - Special Style */
.adult-btn {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.25), rgba(255, 45, 0, 0.15));
  border-color: rgba(255, 100, 0, 0.4);
}

.adult-btn:hover {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.35), rgba(255, 45, 0, 0.25));
  border-color: rgba(255, 138, 0, 0.6);
  box-shadow: 0 15px 40px rgba(255, 100, 0, 0.3);
}

/* Flame Animation */
.flame-base,
.flame-inner {
  transform-origin: center bottom;
  animation: flameFlicker 1s infinite ease-in-out;
}

@keyframes flameFlicker {
  0% {
    transform: translateY(0) scale(1);
  }

  25% {
    transform: translateY(-2px) scale(1.04);
  }

  50% {
    transform: translateY(0) scale(1);
  }

  75% {
    transform: translateY(-1px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* ========================================
   SOCIAL ROW
   ======================================== */
.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social:hover {
  background: rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 107, 157, 0.4);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.social svg {
  display: block;
}

/* ========================================
   INSTAGRAM HIGHLIGHT BANNER
   ======================================== */
.instagram-highlight-banner {
  margin-top: 1.5rem;
  position: relative;
  padding: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(255, 107, 157, 0.15),
      rgba(196, 30, 58, 0.2));
  border: 2px solid rgba(255, 107, 157, 0.4);
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 107, 157, 0.2);
}

.instagram-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      rgba(255, 107, 157, 0.2) 0%,
      transparent 70%);
  animation: instaBannerPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes instaBannerPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.instagram-banner-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.instagram-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: iconFloat 2.5s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.instagram-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.instagram-banner-alert {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instagram-banner-message {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.instagram-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
}

.instagram-banner-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
}

.instagram-banner-btn svg {
  transition: transform 0.3s ease;
}

.instagram-banner-btn:hover svg {
  transform: translateX(4px);
}

/* ========================================
   FOOTER - Premium Compact
   ======================================== */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 10, 31, 0.95), rgba(45, 27, 105, 0.95));
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
}

/* Footer Particles */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 30px 20px, rgba(255, 107, 157, 0.5), transparent),
    radial-gradient(2px 2px at 80px 40px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(2px 2px at 150px 25px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 220px 45px, rgba(183, 110, 121, 0.4), transparent);
  background-repeat: repeat;
  background-size: 300px 80px;
  animation: particleFloat 30s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

.footer-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-cherry {
  width: 36px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.5));
  animation: cherryBounce 3s ease-in-out infinite;
}

@keyframes cherryBounce {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-4px) rotate(-5deg);
  }

  75% {
    transform: translateY(-4px) rotate(5deg);
  }
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.footer-text .heart {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 600px) {
  .bio-hero {
    padding: 90px 15px 40px;
  }

  .bio-container {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .avatar-img {
    max-width: 200px;
  }

  .bio-title {
    font-size: 0.9rem;
  }

  .bio-desc {
    font-size: 0.85rem;
  }

  /* Custom Orders CTA - Mobile */
  .custom-orders-section {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 14px 16px;
    gap: 12px;
  }

  .cta-icon {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .cta-title {
    font-size: 1rem;
  }

  .cta-subtitle {
    font-size: 0.75rem;
  }

  .link-btn {
    padding: 14px 18px;
    font-size: 14px;
  }

  .nav {
    display: none;
  }
}

/* Hide decorative image - using CSS particles instead */
.hero-aside {
  display: none;
}

/* ========================================
   TELEGRAM VIP BUTTON
   ======================================== */
.telegram-vip-btn {
  background: linear-gradient(135deg, #27A1DB 0%, #0088cc 50%, #1e90ff 100%);
  border: 2px solid rgba(39, 161, 219, 0.5);
  box-shadow: 0 8px 30px rgba(39, 161, 219, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: telegramGlow 2s ease-in-out infinite alternate;
}

@keyframes telegramGlow {
  0% {
    box-shadow: 0 8px 30px rgba(39, 161, 219, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 12px 40px rgba(39, 161, 219, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.telegram-vip-btn:hover {
  background: linear-gradient(135deg, #1e90ff 0%, #27A1DB 50%, #0088cc 100%);
  border-color: rgba(39, 161, 219, 0.8);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 45px rgba(39, 161, 219, 0.5);
}

.telegram-vip-btn .vip-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   TELEGRAM VIP CARD
   ======================================== */
.telegram-vip-card {
  background: linear-gradient(135deg, rgba(39, 161, 219, 0.2), rgba(0, 136, 204, 0.15));
  border: 2px solid rgba(39, 161, 219, 0.4);
  border-radius: 24px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(39, 161, 219, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  /* Static glow - no animation for performance */
  box-shadow: 0 10px 40px rgba(39, 161, 219, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes vipCardGlow {
  0% {
    box-shadow: 0 10px 40px rgba(39, 161, 219, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 15px 50px rgba(39, 161, 219, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.telegram-vip-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(39, 161, 219, 0.7);
  box-shadow: 0 20px 60px rgba(39, 161, 219, 0.4);
}

.vip-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vip-icon {
  filter: drop-shadow(0 0 20px rgba(39, 161, 219, 0.6));
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.vip-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vip-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(39, 161, 219, 0.5);
}

.vip-badge-gold {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.5px;
}

.vip-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.vip-benefit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: all 0.3s ease;
}

.vip-benefit:hover {
  background: rgba(39, 161, 219, 0.15);
  border-color: rgba(39, 161, 219, 0.3);
}

.vip-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.vip-price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #27A1DB;
  text-shadow: 0 0 15px rgba(39, 161, 219, 0.5);
}

.vip-price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.vip-enter-btn {
  background: linear-gradient(135deg, #27A1DB, #0088cc);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(39, 161, 219, 0.4);
}

.vip-enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(39, 161, 219, 0.5);
}

/* VIP Card Secondary Action */
.vip-secondary-action {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.vip-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 20%,
      rgba(39, 161, 219, 0.3) 50%,
      rgba(255, 255, 255, 0.15) 80%,
      transparent 100%);
}

.vip-lookup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vip-lookup-btn:hover {
  background: rgba(39, 161, 219, 0.1);
  border-color: rgba(39, 161, 219, 0.4);
  color: #27A1DB;
}

/* ========================================
   TELEGRAM PAYMENT MODAL
   ======================================== */
#telegramPaymentModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tg-modal-container {
  position: relative;
  max-width: 480px;
  margin: 5vh auto;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 24px;
  border: 1px solid rgba(39, 161, 219, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(39, 161, 219, 0.2);
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Header */
.tg-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(39, 161, 219, 0.2), rgba(0, 136, 204, 0.1));
  border-bottom: 1px solid rgba(39, 161, 219, 0.2);
  border-radius: 24px 24px 0 0;
}

.tg-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 20px rgba(39, 161, 219, 0.5);
}

.tg-close-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-close-btn:hover {
  background: rgba(255, 107, 157, 0.3);
  transform: rotate(90deg);
}

.tg-back-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tg-back-btn:hover {
  color: #27A1DB;
}

/* Modal Body */
.tg-modal-body {
  padding: 1.5rem;
}

/* Info Box */
.tg-info-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(39, 161, 219, 0.1);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(39, 161, 219, 0.2);
}

.tg-icon {
  margin-bottom: 1rem;
}

.tg-icon svg {
  filter: drop-shadow(0 0 20px rgba(39, 161, 219, 0.5));
}

.tg-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Price Display */
.tg-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}

.tg-price-badge {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tg-price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #27A1DB;
  text-shadow: 0 0 20px rgba(39, 161, 219, 0.5);
}

.tg-price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Benefits List */
.tg-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 1rem 0;
}

.tg-benefit-item {
  background: rgba(39, 161, 219, 0.08);
  border: 1px solid rgba(39, 161, 219, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: all 0.3s ease;
}

.tg-benefit-item:hover {
  background: rgba(39, 161, 219, 0.15);
  border-color: rgba(39, 161, 219, 0.3);
  transform: translateY(-2px);
}

/* Icon Glow Effect */
.tg-icon-glow {
  animation: iconGlow 2s ease-in-out infinite alternate;
}

.tg-icon-glow svg {
  filter: drop-shadow(0 0 25px rgba(39, 161, 219, 0.6));
}

@keyframes iconGlow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/* Button Icon */
.tg-btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  object-fit: contain;
  vertical-align: middle;
}

/* Payment Method Icon Display - Shows the payment method icon above the button */
.tg-payment-icon-display {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.tg-payment-method-icon {
  width: 104px;
  height: auto;
  object-fit: contain;
}

/* Secure Note */
.tg-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.tg-secure-note svg {
  opacity: 0.6;
}

/* Form Styles */
.tg-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tg-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tg-form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.tg-form-group input {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tg-form-group input:focus {
  outline: none;
  border-color: #27A1DB;
  background: rgba(39, 161, 219, 0.1);
  box-shadow: 0 0 20px rgba(39, 161, 219, 0.2);
}

.tg-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.tg-input-with-prefix {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tg-input-with-prefix:focus-within {
  border-color: #27A1DB;
  background: rgba(39, 161, 219, 0.1);
  box-shadow: 0 0 20px rgba(39, 161, 219, 0.2);
}

.tg-input-prefix {
  padding: 14px;
  padding-right: 0;
  color: #27A1DB;
  font-weight: 600;
  font-size: 1.1rem;
}

.tg-input-with-prefix input {
  flex: 1;
  padding: 14px;
  padding-left: 4px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
}

.tg-input-with-prefix input:focus {
  outline: none;
  box-shadow: none;
}

.tg-form-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Contact Type Selector (Username / Phone toggle) */
.tg-contact-type-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.tg-contact-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-contact-type-btn:hover {
  background: rgba(39, 161, 219, 0.1);
  border-color: rgba(39, 161, 219, 0.3);
}

.tg-contact-type-btn.active {
  background: rgba(39, 161, 219, 0.2);
  border-color: #27A1DB;
  color: #fff;
}

.tg-contact-type-btn.active .tg-contact-icon {
  color: #27A1DB;
}

.tg-contact-icon {
  font-size: 1rem;
  font-weight: 600;
}

.tg-contact-input-wrapper {
  position: relative;
}

.tg-input-hint {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-style: italic;
}

.tg-continue-btn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #27A1DB, #0088cc);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(39, 161, 219, 0.4);
}

/* Customer Summary */
.tg-customer-summary {
  background: rgba(39, 161, 219, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(39, 161, 219, 0.2);
}

.tg-customer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.tg-customer-name {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.tg-customer-email {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.tg-customer-telegram {
  color: #27A1DB;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Success telegram */
.tg-success-telegram {
  background: rgba(39, 161, 219, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tg-success-telegram span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.tg-success-telegram strong {
  color: #27A1DB;
}

/* Payment Methods */
.tg-payment-methods h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.tg-payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tg-payment-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-payment-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(39, 161, 219, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(39, 161, 219, 0.2);
}

.tg-payment-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tg-payment-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.tg-payment-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* PIX Screen */
.tg-pix-screen {
  text-align: center;
}

.tg-pix-total {
  background: linear-gradient(135deg, #00c853, #00e676);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tg-pix-total-label {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tg-pix-total-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
}

.tg-pix-qr-container {
  background: #fff;
  padding: 1rem;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 1rem;
}

.tg-pix-qr-container img {
  display: block;
}

.tg-pix-code-box {
  margin-bottom: 1rem;
}

.tg-pix-code-box label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.tg-pix-code-wrapper {
  display: flex;
  gap: 8px;
}

.tg-pix-code-wrapper input {
  flex: 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 0.75rem;
  font-family: monospace;
}

.tg-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #27A1DB, #0088cc);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 161, 219, 0.4);
}

.tg-copy-btn.copied {
  background: linear-gradient(135deg, #00c853, #00e676);
}

.tg-pix-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tg-pix-timer.warning {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
}

.tg-pix-timer.expired {
  background: rgba(255, 59, 59, 0.3);
  color: #ff3b3b;
}

.tg-confirm-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #00c853, #00e676);
  border: none;
  border-radius: 12px;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.tg-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
}

.tg-pix-info {
  background: rgba(39, 161, 219, 0.1);
  border: 1px solid rgba(39, 161, 219, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 15px;
  text-align: left;
}

.tg-pix-info p {
  margin: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.tg-pix-info strong {
  color: #27A1DB;
}

.tg-pix-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.tg-pix-note svg {
  fill: rgba(39, 161, 219, 0.7);
}

/* PayPal Screen */
.tg-paypal-screen {
  text-align: center;
}

.tg-paypal-qr-container {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tg-paypal-qr {
  width: 180px;
  height: 180px;
  display: block;
}

.tg-paypal-total {
  background: linear-gradient(135deg, #ffc439, #ffaa00);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tg-paypal-total-label {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tg-paypal-total-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
}

.tg-paypal-options {
  text-align: left;
}

.tg-paypal-option {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.tg-paypal-option h4 {
  color: #fff;
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
}

.tg-paypal-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.tg-paypal-email span {
  color: #27A1DB;
  font-weight: 600;
}

.tg-copy-btn-small {
  padding: 6px 12px;
  background: rgba(39, 161, 219, 0.3);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
}

.tg-paypal-instructions {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.tg-paypal-instructions h4 {
  color: #fff;
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
}

.tg-paypal-instructions ol {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.tg-paypal-confirm {
  background: linear-gradient(135deg, #ffc439, #ffaa00);
  color: #000;
}

.tg-paypal-confirm:hover {
  box-shadow: 0 10px 30px rgba(255, 196, 57, 0.4);
}

.tg-cancel-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Success Screen */
.tg-success-screen {
  text-align: center;
  padding: 2rem 1.5rem;
}

.tg-success-header {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 230, 118, 0.1));
  border-color: rgba(0, 200, 83, 0.3);
}

.tg-success-animation {
  margin-bottom: 1.5rem;
}

.tg-success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.tg-check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #00c853;
  background: rgba(0, 200, 83, 0.1);
}

.tg-icon-line {
  height: 5px;
  background-color: #00c853;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.tg-line-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
  animation: checkTip 0.75s;
}

.tg-line-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
  animation: checkLong 0.75s;
}

@keyframes checkTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  70% {
    width: 50px;
    left: 8px;
    top: 46px;
  }

  84% {
    width: 17px;
    left: 21px;
    top: 46px;
  }

  100% {
    width: 25px;
    left: 14px;
    top: 46px;
  }
}

@keyframes checkLong {
  0% {
    width: 0;
    right: 46px;
    top: 35px;
  }

  65% {
    width: 0;
    right: 46px;
    top: 35px;
  }

  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }

  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.tg-success-title {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.tg-success-message {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tg-success-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  background: rgba(39, 161, 219, 0.1);
  border-radius: 12px;
  border-left: 4px solid #27A1DB;
  margin-bottom: 1.5rem;
  text-align: left;
}

.tg-success-note svg {
  fill: #27A1DB;
  flex-shrink: 0;
}

.tg-success-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.tg-success-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #27A1DB, #0088cc);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(39, 161, 219, 0.4);
}

.tg-access-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #00c853 0%, #00e676 50%, #00c853 100%);
  background-size: 200% 200%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 25px rgba(0, 200, 83, 0.5),
    0 0 20px rgba(0, 230, 118, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  animation: accessBtnPulse 2s ease-in-out infinite, accessBtnGradient 3s ease infinite;
  position: relative;
  overflow: hidden;
}

.tg-access-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: accessBtnShine 2.5s ease-in-out infinite;
}

.tg-access-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(0, 200, 83, 0.6),
    0 0 30px rgba(0, 230, 118, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

@keyframes accessBtnPulse {

  0%,
  100% {
    box-shadow:
      0 8px 25px rgba(0, 200, 83, 0.5),
      0 0 20px rgba(0, 230, 118, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow:
      0 8px 25px rgba(0, 200, 83, 0.7),
      0 0 35px rgba(0, 230, 118, 0.5),
      0 0 50px rgba(0, 230, 118, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes accessBtnGradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes accessBtnShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.tg-success-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.tg-success-warning svg {
  flex-shrink: 0;
  fill: #ffc107;
  margin-top: 2px;
}

.tg-success-warning strong {
  color: #ffc107;
}

/* Responsive */
@media (max-width: 600px) {
  .tg-modal-container {
    margin: 2vh 15px;
    max-height: 96vh;
  }

  .tg-payment-options {
    grid-template-columns: 1fr;
  }

  .tg-pix-code-wrapper {
    flex-direction: column;
  }

  .tg-price-value {
    font-size: 1.5rem;
  }
}

/* ========================================
   TELEGRAM LOOKUP MODAL
   ======================================== */

.tg-lookup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.tg-lookup-modal.active {
  display: flex;
}

.tg-lookup-modal-container {
  background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(39, 161, 219, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes lookupModalIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tg-lookup-header {
  background: linear-gradient(135deg, #27a1db 0%, #1e88c8 100%);
  padding: 20px 24px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.tg-lookup-header h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.tg-lookup-header p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.tg-lookup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.tg-lookup-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.tg-lookup-body {
  padding: 24px;
}

.tg-lookup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tg-lookup-type-selector {
  display: flex;
  gap: 8px;
}

.tg-lookup-type-btn {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-lookup-type-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.tg-lookup-type-btn.active {
  background: rgba(39, 161, 219, 0.2);
  border-color: rgba(39, 161, 219, 0.6);
  color: #fff;
}

.tg-lookup-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tg-lookup-input-group label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.tg-lookup-input-group input {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tg-lookup-input-group input:focus {
  outline: none;
  border-color: rgba(39, 161, 219, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.tg-lookup-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.tg-lookup-search-btn {
  background: linear-gradient(135deg, #27a1db 0%, #1e88c8 100%);
  border: none;
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-lookup-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 161, 219, 0.4);
}

.tg-lookup-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.tg-lookup-loading {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.tg-lookup-loading.active {
  display: block;
}

.tg-lookup-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #27a1db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.tg-lookup-results {
  display: none;
}

.tg-lookup-results.active {
  display: block;
}

.tg-lookup-empty {
  text-align: center;
  padding: 20px;
}

.tg-lookup-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.tg-lookup-empty h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.tg-lookup-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.tg-lookup-result-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  border-left: 4px solid #27a1db;
}

.tg-lookup-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tg-lookup-result-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.tg-lookup-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tg-lookup-status.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.tg-lookup-status.paid {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.tg-lookup-status.access_granted {
  background: rgba(39, 161, 219, 0.2);
  color: #27a1db;
}

.tg-lookup-status.expired {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.tg-lookup-result-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.tg-lookup-result-row {
  display: flex;
  justify-content: space-between;
}

.tg-lookup-result-row span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.tg-lookup-back-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tg-lookup-back-btn:hover {
  border-color: rgba(39, 161, 219, 0.5);
  color: #27a1db;
}

.tg-lookup-access-btn {
  display: block;
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, #27A1DB, #0088cc);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(39, 161, 219, 0.4);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  animation: pulseBlue 2s infinite;
}

.tg-lookup-access-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(39, 161, 219, 0.6);
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 161, 219, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(39, 161, 219, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(39, 161, 219, 0);
  }
}