/* ===== LYUEX HOMEPAGE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e0e0e0;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #6c5ce7, #a29bfe); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #5a4bd1, #8b83f7); }

/* --- Preloader --- */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 20px;
}
.loader-wrapper .loader {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(108,92,231,0.15);
  border-top-color: #6c5ce7;
  border-right-color: #a29bfe;
  border-radius: 50%;
  animation: spin 0.7s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  position: relative;
}
.loader-wrapper .loader::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid transparent;
  border-top-color: #a29bfe;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}
.loader-wrapper .loader .loader-inner { display: none; }
.loader-text {
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* --- Floating Particles --- */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(108,92,231,0.3);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* --- Hero / Banner --- */
.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 20% 50%, rgba(108,92,231,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(162,155,254,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(0,184,148,0.04) 0%, transparent 40%),
              #0a0a0f;
  overflow: hidden;
}

.banner .overlay { display: none; }

.banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(108,92,231,0.05) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(0,184,148,0.03) 0%, transparent 40%);
  animation: float 25s ease-in-out infinite;
}
.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #0a0a0f, transparent);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -25px) rotate(0.5deg); }
  50% { transform: translate(-10px, 15px) rotate(-0.5deg); }
  75% { transform: translate(20px, -10px) rotate(0.3deg); }
}

.banner .content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 30px;
}

.banner .content h2 {
  font-size: 4.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.banner .content h2 span {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe, #00b894);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradient 4s ease infinite;
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.banner .content p {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.banner .content a {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: #5865F2;
  color: #fff !important;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  position: relative;
  overflow: hidden;
}
.banner .content a::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: rotate(45deg);
  transition: all 500ms;
}
.banner .content a:hover::after {
  animation: shimmer 1.5s infinite;
}

.banner .content a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(88,101,242,0.4), 0 0 60px rgba(88,101,242,0.15);
}

.banner .content a.btn-login {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}
.banner .content a.btn-login:hover {
  box-shadow: 0 12px 40px rgba(108,92,231,0.4), 0 0 60px rgba(108,92,231,0.15);
}

@keyframes shimmer {
  0% { left: -200%; }
  100% { left: 200%; }
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator i {
  font-size: 1.2rem;
  color: #6c5ce7;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6c5ce7;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Navigation --- */
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0 40px;
  transition: all 400ms;
}
#navigation.scrolled {
  background: rgba(10,10,15,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

#navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 6px;
  padding: 14px 0;
  margin: 0;
}

#navigation ul li a {
  color: #888;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

#navigation ul li a:hover,
#navigation ul li a.colored {
  color: #fff;
  background: rgba(108,92,231,0.1);
}
#navigation ul li.nav-right {
  margin-left: auto;
}
#navigation ul li a.colored::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: #6c5ce7;
  border-radius: 2px;
}

/* --- Services / About Section --- */
.services {
  padding: 100px 40px;
  text-align: center;
  position: relative;
}

.services > h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.services > h1 span {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services > p.section-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.services .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.services .service {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.services .service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.2), transparent);
  opacity: 0;
  transition: opacity 400ms;
}

.services .service:hover {
  transform: translateY(-10px);
  border-color: rgba(108,92,231,0.25);
  box-shadow: 0 20px 60px rgba(108,92,231,0.1), 0 0 0 1px rgba(108,92,231,0.08);
}
.services .service:hover::before {
  opacity: 1;
}

.services .service .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(162,155,254,0.08));
  border: 1px solid rgba(108,92,231,0.15);
}

.services .service i {
  font-size: 2rem;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services .service h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.services .service p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
}

.p-t-30 { padding-top: 30px; }

/* --- Discord CTA Section --- */
.discord {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(88,101,242,0.08) 0%, transparent 60%);
  gap: 80px;
  flex-wrap: wrap;
  margin: 0;
  min-height: auto;
  overflow: visible;
}

.discord .overlay { display: none; }

.discord .text {
  position: relative;
  z-index: 2;
  text-align: left;
  flex: none;
  padding: 0;
}

.discord .text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.discord .text p {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 400px;
  line-height: 1.7;
}

.discord .text a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #5865F2;
  color: #fff !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1rem;
}

.discord .text a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(88,101,242,0.4), 0 0 60px rgba(88,101,242,0.12);
}

.discord .discordImg {
  position: relative;
  z-index: 2;
  flex: none;
  text-align: center;
  padding: 0;
}

.discord .discordImg svg {
  filter: drop-shadow(0 0 50px rgba(88,101,242,0.2));
  transition: all 400ms;
}
.discord .discordImg:hover svg {
  transform: scale(1.05);
  filter: drop-shadow(0 0 60px rgba(88,101,242,0.3));
}

.discord .discordImg img {
  width: 280px;
  max-width: 100%;
  opacity: 0.8;
  filter: drop-shadow(0 0 40px rgba(88,101,242,0.2));
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 48px 20px 32px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.04);
  height: auto;
  margin-top: 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.3), transparent);
}

.footer h2 {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer .footerLinks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer .footerLinks a {
  color: #777;
  text-decoration: none;
  font-weight: 500;
  transition: all 300ms;
  font-size: 0.95rem;
  padding: 4px 8px;
  border-radius: 6px;
}

.footer .footerLinks a:hover,
.footer .footerLinks a.colored {
  color: #a29bfe;
  background: rgba(108,92,231,0.06);
}

.footer .copyright {
  color: #444;
  font-size: 0.85rem;
}

.footer .copyright span {
  color: #a29bfe;
  font-weight: 600;
}

.credits {
  text-align: center;
  padding: 16px;
  color: #333;
  font-size: 0.8rem;
}

.credits span {
  color: #6c5ce7;
  font-weight: 600;
}

/* --- Back to Top Button --- */
#back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 90;
  box-shadow: 0 4px 24px rgba(108,92,231,0.3);
}

#back-to-top-btn.show {
  display: flex;
  animation: fadeUp 0.3s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#back-to-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(108,92,231,0.5);
}

/* --- Stats Counter (homepage) --- */
.stats-counter {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 48px 0 0;
}
.stats-counter .stat-item {
  text-align: center;
}
.stats-counter .stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stats-counter .stat-item .stat-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .banner {
    min-height: 85vh;
  }
  .banner .content {
    padding: 0 20px;
    text-align: center;
  }
  .banner .content h2 {
    font-size: 2.4rem;
    line-height: 1.1;
  }
  .banner .content p {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }
  .banner .content a {
    padding: 12px 28px;
    font-size: 0.92rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .services {
    padding: 60px 16px;
  }
  .services > h1 {
    font-size: 1.8rem;
  }
  .services > p.section-desc {
    font-size: 0.88rem;
  }
  .services .container {
    gap: 16px;
  }
  .discord {
    flex-direction: column;
    text-align: center;
    padding: 60px 16px;
    gap: 32px;
  }
  .discord .text {
    text-align: center;
  }
  .discord .text h1 {
    font-size: 1.8rem;
  }
  .discord .text p {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
  }
  .discord .text a {
    padding: 12px 28px;
    font-size: 0.92rem;
  }
  .discord .discordImg svg,
  .discord .discordImg img {
    width: 200px !important;
    max-width: 60vw;
  }
  #navigation {
    padding: 0 16px;
  }
  #navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 10px 0;
  }
  #navigation ul li a {
    font-size: 0.82rem;
    padding: 6px 12px;
  }
  .services .service {
    min-width: 100%;
    max-width: 100%;
    padding: 28px 20px;
  }
  .services .service h2 {
    font-size: 0.95rem;
  }
  .services .service p {
    font-size: 0.82rem;
  }
  .scroll-indicator {
    display: none;
  }
  .stats-counter {
    gap: 20px;
  }
  .stats-counter .stat-item .stat-number {
    font-size: 1.8rem;
  }
  .stats-counter .stat-item .stat-label {
    font-size: 0.72rem;
  }
  .footer {
    padding: 32px 16px 24px;
  }
  .footer h2 {
    font-size: 1.3rem;
  }
  .footer .footerLinks {
    gap: 12px;
  }
  .footer .footerLinks a {
    font-size: 0.85rem;
  }
  #back-to-top-btn {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .quick-access-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .banner .content h2 {
    font-size: 1.8rem;
  }
  .banner .content p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .banner .content a {
    padding: 11px 24px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .services > h1 {
    font-size: 1.5rem;
  }
  .services .service .service-icon {
    width: 48px;
    height: 48px;
  }
  .services .service i {
    font-size: 1.6rem;
  }
  .discord .text h1 {
    font-size: 1.5rem;
  }
  .discord .text a {
    width: 100%;
    justify-content: center;
  }
  .footer h2 {
    font-size: 1.15rem;
  }
  .footer .copyright {
    font-size: 0.78rem;
  }
  .credits {
    font-size: 0.72rem;
  }
}

@media (max-width: 400px) {
  .banner .content h2 {
    font-size: 1.5rem;
  }
  .banner .content p {
    font-size: 0.82rem;
  }
  .services {
    padding: 40px 12px;
  }
  .services .service {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .discord {
    padding: 40px 12px;
  }
  .discord .text h1 {
    font-size: 1.3rem;
  }
  .footer .footerLinks {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- Quick Access Buttons --- */
.quick-access-btn {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 14px;
  background: rgba(var(--accent-rgb, 108,92,231), 0.08);
  border: 1px solid rgba(var(--accent-rgb, 108,92,231), 0.15);
  color: var(--accent, #a29bfe);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.quick-access-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108,92,231,0.15);
  border-color: rgba(108,92,231,0.3);
  color: #fff;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PROMO TOAST NOTIFICATION ===== */
.promo-toast {
  position: fixed;
  top: 80px;
  right: -440px;
  z-index: 200;
  transition: right 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.promo-toast.show {
  right: 24px;
  pointer-events: auto;
}
.promo-toast-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(14,14,22,0.95), rgba(30,25,60,0.95));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(108,92,231,0.35);
  border-radius: 18px;
  padding: 18px 22px;
  max-width: 400px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.5),
    0 0 0 1px rgba(108,92,231,0.1),
    0 0 60px rgba(108,92,231,0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 300ms;
  animation: promoFloat 3s ease-in-out infinite;
}
@keyframes promoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.promo-toast-inner:hover {
  border-color: rgba(108,92,231,0.55);
  box-shadow:
    0 12px 50px rgba(0,0,0,0.6),
    0 0 0 1px rgba(108,92,231,0.2),
    0 0 80px rgba(108,92,231,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-6px) scale(1.02);
  animation: none;
}

/* Shimmer sweep */
.promo-toast-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.08), rgba(255,255,255,0.05), transparent);
  z-index: 0;
  animation: promoShimmer 3s ease-in-out infinite;
}
@keyframes promoShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.promo-toast-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e17055, #fdcb6e, #e17055);
  background-size: 200% 200%;
  animation: promoIconGlow 2s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(225,112,85,0.35);
}
@keyframes promoIconGlow {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 4px 20px rgba(225,112,85,0.35); }
  50% { background-position: 100% 50%; box-shadow: 0 4px 28px rgba(253,203,110,0.5); }
}
.promo-toast-icon i {
  color: #fff;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.promo-toast-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.promo-toast-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fdcb6e;
  background: rgba(253,203,110,0.1);
  border: 1px solid rgba(253,203,110,0.2);
  padding: 2px 8px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.promo-toast-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.3;
}
.promo-toast-content p {
  font-size: 0.76rem;
  color: #aaa;
  line-height: 1.5;
  margin: 0 0 6px;
}
.promo-toast-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #a29bfe;
  transition: all 250ms;
}
.promo-toast-cta i {
  font-size: 0.65rem;
  transition: transform 250ms;
}
.promo-toast-inner:hover .promo-toast-cta {
  color: #fff;
}
.promo-toast-inner:hover .promo-toast-cta i {
  transform: translateX(4px);
}

.promo-toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: none;
  background: rgba(255,255,255,0.06);
  border-radius: 7px;
  color: #666;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
  z-index: 2;
}
.promo-toast-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.promo-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #e17055, #fdcb6e, #6c5ce7, #a29bfe);
  border-radius: 0 0 18px 18px;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 2;
}
.promo-toast.show .promo-toast-progress {
  animation: promoProgress 6s linear forwards;
}
@keyframes promoProgress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* Toast Responsive */
@media (max-width: 480px) {
  .promo-toast {
    top: 70px;
    right: -100%;
    left: 12px;
    right: auto;
    transform: translateX(calc(100% + 32px));
  }
  .promo-toast.show {
    transform: translateX(0);
    right: auto;
  }
  .promo-toast-inner {
    max-width: calc(100vw - 24px);
    padding: 14px 16px;
    gap: 12px;
  }
  .promo-toast-icon {
    width: 42px;
    height: 42px;
  }
  .promo-toast-icon i { font-size: 1.1rem; }
  .promo-toast-content strong { font-size: 0.82rem; }
}

/* --- Gradient Divider --- */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.4), transparent);
  margin: 40px 0;
  border: none;
}

/* ===== PACKAGES / PAKETLERİMİZ ===== */
.pkg-section {
  padding: 120px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pkg-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(108,92,231,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Header */
.pkg-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.pkg-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6c5ce7;
  background: rgba(108,92,231,0.08);
  border: 1px solid rgba(108,92,231,0.15);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.pkg-header h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.pkg-header h1 span {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe, #00b894);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradient 4s ease infinite;
}
.pkg-header p {
  color: #777;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Period Toggle */
.pkg-toggle-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}
.pkg-toggle {
  display: inline-flex;
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 5px;
  gap: 2px;
}
.pkg-toggle-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  border-radius: 12px;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  box-shadow: 0 4px 20px rgba(108,92,231,0.35);
}
.pkg-toggle-btn {
  position: relative;
  z-index: 1;
  padding: 11px 24px;
  border: none;
  background: transparent;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 12px;
  cursor: pointer;
  transition: color 300ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pkg-toggle-btn:hover { color: #ccc; }
.pkg-toggle-btn.active { color: #fff; }
.pkg-toggle-label { display: block; }
.pkg-toggle-save {
  font-size: 0.62rem;
  font-weight: 700;
  color: #00b894;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.pkg-toggle-btn.active .pkg-toggle-save {
  color: #55efc4;
}

/* Cards Grid */
.pkg-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

/* Card */
.pkg-card {
  flex: 1;
  min-width: 310px;
  max-width: 380px;
  position: relative;
  border-radius: 24px;
  transition: all 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pkg-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  z-index: 0;
  transition: all 450ms;
}
.pkg-card:hover .pkg-card-glow {
  background: linear-gradient(135deg, rgba(108,92,231,0.12), rgba(162,155,254,0.06));
  box-shadow: 0 24px 80px rgba(108,92,231,0.1);
}
.pkg-card-inner {
  position: relative;
  z-index: 1;
  background: rgba(14,14,22,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-12px);
}
.pkg-card:hover .pkg-card-inner {
  border-color: rgba(108,92,231,0.2);
}

/* Featured Card */
.pkg-featured {
  transform: scale(1.04);
}
.pkg-featured .pkg-card-glow {
  background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(162,155,254,0.08));
  box-shadow: 0 8px 40px rgba(108,92,231,0.08);
}
.pkg-featured .pkg-card-inner {
  border-color: rgba(108,92,231,0.18);
  background: rgba(14,14,22,0.9);
}
.pkg-featured:hover {
  transform: scale(1.04) translateY(-12px);
}
.pkg-featured:hover .pkg-card-glow {
  box-shadow: 0 30px 90px rgba(108,92,231,0.15);
}

/* Ribbon */
.pkg-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  z-index: 3;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 40px;
  transform: rotate(35deg);
  box-shadow: 0 4px 16px rgba(108,92,231,0.3);
}

/* Card Head */
.pkg-card-head {
  text-align: center;
  margin-bottom: 24px;
}
.pkg-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--pkg-clr) 15%, transparent), color-mix(in srgb, var(--pkg-clr2) 8%, transparent));
  border: 1px solid color-mix(in srgb, var(--pkg-clr) 20%, transparent);
  transition: all 400ms;
}
.pkg-card:hover .pkg-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--pkg-clr) 20%, transparent);
}
.pkg-icon-wrap i {
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--pkg-clr), var(--pkg-clr2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-tier {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.pkg-card-head h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.pkg-tagline {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* Price Block */
.pkg-price-block {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px 0 0;
}
.pkg-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
.pkg-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6c5ce7;
  margin-top: 8px;
}
.pkg-amount {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 350ms;
}
.pkg-featured .pkg-amount {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pkg-per {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  align-self: flex-end;
  margin-bottom: 6px;
}
.pkg-total {
  font-size: 0.78rem;
  color: #555;
  font-weight: 500;
  transition: all 300ms;
}

/* Divider */
.pkg-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 0 0 20px;
}

/* Feature List */
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  flex: 1;
}
.pkg-list li {
  font-size: 0.84rem;
  color: #aaa;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pkg-list li + li {
  border-top: 1px solid rgba(255,255,255,0.025);
}
.pkg-list li i {
  color: #00b894;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.pkg-featured .pkg-list li i {
  color: #a29bfe;
}

/* CTA Button */
.pkg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.2);
  color: #a29bfe !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: auto;
}
.pkg-btn:hover {
  background: linear-gradient(135deg, #5865F2, #6c5ce7);
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(88,101,242,0.3);
}
.pkg-featured .pkg-btn {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(108,92,231,0.25);
}
.pkg-featured .pkg-btn:hover {
  box-shadow: 0 14px 50px rgba(108,92,231,0.4);
  transform: translateY(-3px);
}

/* Ticket CTA Box */
.pkg-cta {
  max-width: 960px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}
.pkg-cta-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(88,101,242,0.06), rgba(108,92,231,0.04));
  border: 1px solid rgba(88,101,242,0.12);
  border-radius: 22px;
  padding: 32px 36px;
  text-align: left;
  transition: all 400ms;
}
.pkg-cta-inner:hover {
  border-color: rgba(88,101,242,0.22);
  box-shadow: 0 12px 50px rgba(88,101,242,0.08);
}
.pkg-cta-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(88,101,242,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-cta-icon svg {
  width: 32px;
  height: 32px;
}
.pkg-cta-text {
  flex: 1;
}
.pkg-cta-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}
.pkg-cta-text p {
  font-size: 0.84rem;
  color: #777;
  line-height: 1.65;
  margin: 0;
}
.pkg-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #5865F2;
  color: #fff !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}
.pkg-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(88,101,242,0.35);
}

/* Packages Responsive */
@media (max-width: 768px) {
  .pkg-section { padding: 80px 16px 60px; }
  .pkg-header h1 { font-size: 1.9rem; }
  .pkg-header p { font-size: 0.92rem; }
  .pkg-cards { gap: 20px; }
  .pkg-card {
    min-width: 100%;
    max-width: 100%;
  }
  .pkg-featured { transform: none; }
  .pkg-featured:hover { transform: translateY(-12px); }
  .pkg-ribbon { display: none; }
  .pkg-featured::after {
    content: 'En Popüler';
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 8px;
  }
  .pkg-toggle-btn {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
  .pkg-toggle-save { font-size: 0.58rem; }
  .pkg-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 18px;
  }
  .pkg-cta-text p { text-align: center; }
  .pkg-cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
  .pkg-header h1 { font-size: 1.5rem; }
  .pkg-card-inner { padding: 28px 20px 24px; border-radius: 18px; }
  .pkg-card, .pkg-card-glow { border-radius: 18px; }
  .pkg-amount { font-size: 3rem; }
  .pkg-card-head h2 { font-size: 1.1rem; }
}

@media (max-width: 400px) {
  .pkg-section { padding: 50px 12px 40px; }
  .pkg-card-inner { padding: 24px 16px 20px; border-radius: 16px; }
  .pkg-card, .pkg-card-glow { border-radius: 16px; }
  .pkg-toggle { padding: 4px; gap: 1px; }
  .pkg-toggle-btn { padding: 8px 12px; font-size: 0.75rem; }
}
