/*
 * Anacruse Website Styles
 * Core Theme: Cyberpunk / Retrowave / Vaporwave - Dark-only
 * 
 * Developer: André "Tutankhamal" Borba
 * Website: https://tutankhamal.com
 * 
 * Created for Anacruse Band Official Website
 */
:root{
  --bg:#0a0a0f;
  --bg-soft:#0f0f16;
  --glass:rgba(0,0,0,0.5);
  --text:#e5e7eb;
  --muted:#a1a1aa;
  --primary:#a855f7; /* roxo neon */
  --primary-2:#7c3aed; /* hover */
  --accent:#22d3ee; /* ciano apoio */
  --magenta:#f472b6;
  --success:#34d399;
  --danger:#fb7185;
  --shadow:0 10px 30px rgba(168,85,247,0.25);
  --radius:14px;
  --radius-sm:10px;
  --maxw:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #07070b 0%, #0a0a0f 40%, #0b0b12 100%);
  min-height:100vh;
}

/* Background Layers: grid + fog */
.bg-wrap{
  position:fixed; inset:0; pointer-events:none; z-index:-1;
}
.bg-grid, .bg-fog{
  position:absolute; inset:0;
}
.bg-grid{
  background:
    radial-gradient(circle at 50% 10%, rgba(168,85,247,0.12), transparent 60%),
    repeating-linear-gradient( to right, rgba(168,85,247,0.08) 0 1px, transparent 1px 120px),
    repeating-linear-gradient( to bottom, rgba(34,211,238,0.06) 0 1px, transparent 1px 120px);
  transform:translateZ(0);
  transition:transform .4s ease;
}
.bg-fog::before, .bg-fog::after{
  content:""; position:absolute; inset:-20%; filter: blur(60px);
  background:radial-gradient(circle at var(--x,30%) var(--y,70%), rgba(124,58,237,0.25), transparent 40%),
             radial-gradient(circle at calc(100% - var(--x,30%)) calc(100% - var(--y,70%)), rgba(34,211,238,0.2), transparent 45%),
             radial-gradient(circle at 60% 30%, rgba(244,114,182,0.15), transparent 50%);
  opacity:.7; animation:fogMove 18s ease-in-out infinite alternate;
}
@keyframes fogMove{from{transform:translateY(-2%) scale(1)} to{transform:translateY(2%) scale(1.02)}}

/* Pulse when is-playing */
html.is-playing .bg-fog::after{ animation-duration:9s; opacity:.85 }

.container{width:100%; max-width:var(--maxw); margin:0 auto; padding:0 20px}
.section{padding:72px 0}

/* Navbar */
.navbar{ position:fixed; top:0; left:0; right:0; z-index:1000; backdrop-filter: blur(10px); background:rgba(0,0,0,0.9); border-bottom:1px solid rgba(139,69,255,0.2)}
body{ padding-top:80px }
.navbar-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; height:64px }
.brand{ display:flex; align-items:center; font-family:'Oxanium','Orbitron',system-ui; letter-spacing:.5px; font-weight:800; position:relative; color:var(--text); text-decoration:none }
.brand:hover{ color:var(--primary) }
.brand span {
  position: relative;
  display: inline-block;
}
.brand span::before,
.brand span::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.brand:hover span::before {
  left: 2px;
  text-shadow: -2px 0 var(--accent);
  animation: glitchTop 2.5s infinite ease-in-out alternate;
}
.brand:hover span::after {
  left: -2px;
  text-shadow: 2px 0 var(--magenta);
  animation: glitchBot 2.8s infinite ease-in-out alternate;
}
.nav-actions{ display:flex; align-items:center; gap:14px }
.nav-links{ display:flex; gap:10px; align-items:center }
.nav-links a{ color:var(--muted); text-decoration:none; padding:10px 14px; border-radius:var(--radius-sm); position:relative; font-weight:600; transition:all 0.3s ease; border:1px solid transparent }
.nav-links a:hover{ color:var(--text); background:rgba(139,69,255,0.1); border-color:rgba(139,69,255,0.3) }
.nav-links a[aria-current="page"], .nav-links a.active{ color:var(--primary); background:rgba(139,69,255,0.15); border-color:rgba(139,69,255,0.4); box-shadow:0 0 8px rgba(139,69,255,0.3) }
.nav-links a[aria-current="page"]::after, .nav-links a.active::after{ content:''; position:absolute; bottom:-4px; left:14px; right:14px; height:2px; background:var(--primary); border-radius:1px }
.nav-links a::after{ content:""; position:absolute; left:14px; right:14px; bottom:5px; height:2px; background:linear-gradient(90deg,var(--primary),transparent); transform:scaleX(0); transform-origin:left; transition:transform .25s }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ transform:scaleX(1) }

.lang-switch{ gap:8px; display:flex }
.lang-switch a{ color:var(--muted); text-decoration:none; padding:6px 10px; border-radius:10px; border:1px solid rgba(168,85,247,0.25) }
.lang-switch a.active{ color:var(--text); border-color:var(--primary); box-shadow:0 0 0 1px rgba(168,85,247,0.15) inset }

/* Hamburger */
.hamb{ display:none; width:42px; height:42px; border-radius:12px; border:1px solid rgba(168,85,247,0.3); background:linear-gradient(180deg,rgba(124,58,237,0.08),rgba(124,58,237,0.02)); align-items:center; justify-content:center; cursor:pointer; transition:transform .2s }
.hamb:hover{ transform:translateY(-1px) }
.hamb .bar{ position:relative; width:20px; height:2px; background:var(--text); box-shadow:0 0 10px var(--primary); border-radius:2px; transition:all .25s }
.hamb .bar::before, .hamb .bar::after{ content:""; position:absolute; left:0; width:20px; height:2px; background:var(--text); border-radius:2px; box-shadow:0 0 10px var(--primary); transition:all .25s }
.hamb .bar::before{ top:-6px } .hamb .bar::after{ top:6px }
.hamb.active .bar{ background:transparent; box-shadow:none }
.hamb.active .bar::before{ transform:translateY(6px) rotate(45deg) }
.hamb.active .bar::after{ transform:translateY(-6px) rotate(-45deg) }

.mobile-menu{ position:absolute; top:100%; left:0; right:0; background:rgba(0,0,0,0.95); backdrop-filter:blur(20px); border-bottom:1px solid rgba(139,69,255,0.2); padding:20px; display:flex; flex-direction:column; gap:8px; transform:translateY(-100%); opacity:0; visibility:hidden; transition:all 0.3s ease }
.mobile-menu.active{ transform:translateY(0); opacity:1; visibility:visible }
.mobile-menu a{ padding:12px 16px; border-radius:8px; text-decoration:none; color:var(--muted); font-weight:500; transition:all 0.2s; border:1px solid transparent }
.mobile-menu a:hover{ color:var(--text); background:rgba(139,69,255,0.1); border-color:rgba(139,69,255,0.3) }
.mobile-menu a[aria-current="page"],
.mobile-menu a.active {
  color: var(--primary);
  background: rgba(139,69,255,0.15);
  border-color: rgba(139,69,255,0.4);
  box-shadow: 0 0 8px rgba(139,69,255,0.3);
}
@media (max-width: 980px){
  .nav-links{ display:none }
  .hamb{ display:flex }
}

/* Buttons */
.btn{ 
  --g:var(--primary); 
  color:var(--text); 
  padding:14px 24px; 
  border-radius:16px; 
  border:2px solid rgba(168,85,247,0.6); 
  background:rgba(124,58,237,0.3); 
  box-shadow:
    0 0 20px rgba(168,85,247,0.3),
    0 4px 15px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  text-decoration:none; 
  display:inline-flex; 
  align-items:center; 
  gap:12px; 
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  position:relative;
  overflow:hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: btnPulse 4s ease-in-out infinite;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.8s ease-out;
}

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

.btn:hover{ 
  transform:translateY(-3px) scale(1.05); 
  border-color:rgba(168,85,247,1); 
  box-shadow:
    0 0 40px rgba(168,85,247,0.6),
    0 0 60px rgba(34,211,238,0.4),
    0 8px 25px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: btnNeonPulse 1.2s ease-in-out infinite alternate;
}

.btn-ghost{ 
  background:transparent; 
  border-color:rgba(168,85,247,0.5);
  box-shadow:
    0 0 15px rgba(168,85,247,0.2),
    0 2px 10px rgba(0,0,0,0.1);
}

.btn-ghost:hover {
  background:rgba(168,85,247,0.1);
  border-color:rgba(168,85,247,0.8);
  box-shadow:
    0 0 30px rgba(168,85,247,0.5),
    0 0 50px rgba(34,211,238,0.3),
    0 6px 20px rgba(0,0,0,0.2);
}

/* Button Animations */
@keyframes btnPulse {
  0%, 100% { 
    box-shadow:
      0 0 20px rgba(168,85,247,0.3),
      0 4px 15px rgba(0,0,0,0.2),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
  50% { 
    box-shadow:
      0 0 30px rgba(168,85,247,0.5),
      0 4px 15px rgba(0,0,0,0.2),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
}

@keyframes btnNeonPulse {
  0% { 
    box-shadow:
      0 0 40px rgba(168,85,247,0.6),
      0 0 60px rgba(34,211,238,0.4),
      0 8px 25px rgba(0,0,0,0.3),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
  100% { 
    box-shadow:
      0 0 60px rgba(168,85,247,0.8),
      0 0 80px rgba(34,211,238,0.6),
      0 8px 25px rgba(0,0,0,0.3),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
}

/* Cards / Surfaces */
.surface{ background:var(--glass); border:1px solid rgba(168,85,247,0.15); border-radius:var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(4px) }
.surface:hover{ border-color:rgba(168,85,247,0.35) }

/* Hero */
.hero{ display:grid; grid-template-columns: 1fr; gap:28px; align-items:center; margin-top: 100px; }
.hero .avatar{ 
  width:250px; 
  height:250px; 
  border-radius:50%; 
  background: radial-gradient(circle at 50% 50%, rgba(168,85,247,0.35), transparent 60%); 
  border:2px solid rgba(168,85,247,0.6); 
  box-shadow:0 0 30px rgba(168,85,247,0.3); 
  margin: 0 auto; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  overflow:hidden;
  position: relative;
  animation: logoPulse 3s ease-in-out infinite;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero .avatar:hover {
  animation: logoGlitchHover 0.4s ease-in-out, logoZoom 0.3s ease-in-out forwards;
  box-shadow: 
    0 0 40px rgba(168,85,247,0.6),
    0 0 60px rgba(34, 211, 238, 0.4),
    inset 0 0 20px rgba(168,85,247,0.2);
  border: 2px solid rgba(168,85,247,1);
}

/* Efeito Neon Saber na borda - ativado apenas no hover */
.hero .avatar::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(168,85,247,0) 0%,
    rgba(168,85,247,0.8) 25%,
    rgba(34,211,238,0.8) 50%,
    rgba(168,85,247,0.8) 75%,
    rgba(168,85,247,0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
  animation: neonRotate 4s linear infinite;
}

.hero .avatar:hover::after {
  opacity: 1;
  animation: neonRotate 2.5s linear infinite, neonPulse 0.8s ease-in-out infinite alternate;
}

@keyframes neonRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes neonPulse {
  0% { 
    filter: blur(2px);
    transform: rotate(0deg) scale(1);
  }
  100% { 
    filter: blur(4px);
    transform: rotate(360deg) scale(1.02);
  }
}

.hero .avatar img{ 
  width:225px; 
  height:225px; 
  border-radius:50%; 
  object-fit:cover;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}



/* Logo Animations */
@keyframes logoPulse {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(168,85,247,0.3);
    border-color: rgba(168,85,247,0.6);
  }
  50% { 
    box-shadow: 0 0 45px rgba(168,85,247,0.5);
    border-color: rgba(168,85,247,0.8);
  }
}

@keyframes logoGlitchHover {
  0% { transform: translate(0); }
  10% { transform: translate(-2px, 1px) scale(1.02); }
  20% { transform: translate(-1px, -1px) scale(1.01); }
  30% { transform: translate(1px, 2px) scale(1.03); }
  40% { transform: translate(1px, -1px) scale(1.01); }
  50% { transform: translate(-1px, 2px) scale(1.02); }
  60% { transform: translate(-1px, 1px) scale(1.01); }
  70% { transform: translate(2px, 1px) scale(1.03); }
  80% { transform: translate(-2px, -1px) scale(1.01); }
  90% { transform: translate(1px, 2px) scale(1.02); }
  100% { transform: translate(0) scale(1.05); }
}

@keyframes logoZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Glitch overlay effect for logo hover */
.hero .avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 211, 238, 0.1) 25%,
    transparent 50%,
    rgba(168, 85, 247, 0.1) 75%,
    transparent 100%
  );
  border-radius: 50%;
  opacity: 0;
  animation: logoScanLine 2s linear infinite;
  pointer-events: none;
}

.hero .avatar:hover::before {
  opacity: 1;
  animation: logoScanLineHover 0.6s linear infinite;
}

@keyframes logoScanLine {
  0% { transform: translateX(-100%) rotate(0deg); }
  100% { transform: translateX(100%) rotate(360deg); }
}

@keyframes logoScanLineHover {
  0% { transform: translateX(-100%) rotate(0deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%) rotate(180deg); opacity: 0; }
}


.hero h1{ font-family:'Oxanium','Orbitron',system-ui; font-size: clamp(32px, 6vw, 68px); line-height:1.05; letter-spacing: .5px; margin:0; position:relative; text-shadow: 0 0 18px rgba(168,85,247,0.35) }
.hero h1 .glitch{ position:relative; display:inline-block }
.hero h1 .glitch::before, .hero h1 .glitch::after{ content:attr(data-text); position:absolute; left:0; top:0; width:100%; overflow:hidden; clip-path: inset(0 0 0 0); }
.hero h1 .glitch::before{ left:2px; text-shadow:-2px 0 var(--accent); animation:glitchTop 2.5s infinite ease-in-out alternate }
.hero h1 .glitch::after{ left:-2px; text-shadow: 2px 0 var(--magenta); animation:glitchBot 2.8s infinite ease-in-out alternate }
@keyframes glitchTop{ 0%{ clip-path: inset(0 0 85% 0) } 50%{ clip-path: inset(0 0 10% 0) } 100%{ clip-path: inset(0 0 40% 0) } }
@keyframes glitchBot{ 0%{ clip-path: inset(85% 0 0 0) } 50%{ clip-path: inset(10% 0 0 0) } 100%{ clip-path: inset(60% 0 0 0) } }
.hero .ctas{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center }

/* Grids */
.grid{ display:grid; gap:24px }
.grid.cols-3{ grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); justify-items: stretch }
.grid.cols-4{ grid-template-columns: repeat(4, 1fr) }
@media (max-width: 1100px){ .grid.cols-4{ grid-template-columns: repeat(3, 1fr)} }
@media (max-width: 1000px){ .grid.cols-3{ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) } }
@media (max-width: 700px){ .grid.cols-3, .grid.cols-4{ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); justify-items: stretch } }
@media (max-width: 580px){ .grid.cols-3, .grid.cols-4{ grid-template-columns: 1fr; justify-items: stretch } }



/* Timeline */
.timeline{ position:relative; padding-left:24px }
.timeline::before{ content:""; position:absolute; left:8px; top:0; bottom:0; width:2px; background: linear-gradient(var(--primary), transparent) }
.t-item{ position:relative; margin: 20px 0; padding: 12px 14px; border-left:2px solid rgba(168,85,247,0.35) }
.t-item::before{ content:""; position:absolute; left:-3px; top:10px; width:10px; height:10px; border-radius:50%; background:var(--primary); box-shadow:0 0 16px var(--primary) }

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, 
    var(--primary), 
    rgba(139, 69, 255, 0.8),
    rgba(139, 69, 255, 0.4),
    transparent
  );
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(139, 69, 255, 0.5);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 45%;
  opacity: 0;
  transform: translateY(30px);
  animation: timelineSlideIn 0.8s ease forwards;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
  left: 55%;
  text-align: left;
  animation-delay: 0.4s;
}

.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }

.timeline-marker {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 50%;
  border: 4px solid var(--bg);
  box-shadow: 
    0 0 0 4px rgba(139, 69, 255, 0.3),
    0 0 20px rgba(139, 69, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -0.75rem;
  transform: translateY(-50%) translateX(50%);
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -0.75rem;
  transform: translateY(-50%) translateX(-50%);
}

.timeline-item:nth-child(odd) .timeline-marker:hover {
  transform: translateY(-50%) translateX(50%) scale(1.3);
  box-shadow: 
    0 0 0 6px rgba(139, 69, 255, 0.4),
    0 0 30px rgba(139, 69, 255, 0.8);
}

.timeline-item:nth-child(even) .timeline-marker:hover {
  transform: translateY(-50%) translateX(-50%) scale(1.3);
  box-shadow: 
    0 0 0 6px rgba(139, 69, 255, 0.4),
    0 0 30px rgba(139, 69, 255, 0.8);
}

.timeline-content {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 69, 255, 0.6);
  box-shadow: 
    0 10px 30px rgba(139, 69, 255, 0.3),
    0 0 20px rgba(139, 69, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -20px;
  border-left-color: rgba(139, 69, 255, 0.3);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -20px;
  border-right-color: rgba(139, 69, 255, 0.3);
}

.timeline-content h3 {
  color: var(--primary);
  margin: 0 0 0.75rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(139, 69, 255, 0.5);
  position: relative;
}

.timeline-content h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.timeline-item:nth-child(odd) .timeline-content h3::after {
  right: 0;
}

.timeline-item:nth-child(even) .timeline-content h3::after {
  left: 0;
}

.timeline-content p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes timelineSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 2rem;
    transform: none;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: 3rem;
  }
  
  .timeline-marker {
    left: 1.25rem !important;
    right: auto !important;
  }
  
  .timeline-content::before {
    left: -20px !important;
    right: auto !important;
    border-right-color: rgba(139, 69, 255, 0.3) !important;
    border-left-color: transparent !important;
  }
  
  .timeline-content h3::after {
    left: 0 !important;
    right: auto !important;
  }
}

/* Modern Gallery Styles - Completely Rebuilt */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(168, 85, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.1),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.carousel:hover::before {
  left: 100%;
}

.carousel:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  position: relative;
  z-index: 2;
}

.carousel-item {
  flex: 0 0 300px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(168, 85, 247, 0.2);
  background: rgba(0, 0, 0, 0.3);
}

.carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 69, 255, 0.1),
    rgba(168, 85, 247, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.carousel-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 
    0 15px 35px rgba(168, 85, 247, 0.3),
    0 0 25px rgba(168, 85, 247, 0.2);
}

.carousel-item:hover::after {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  position: relative;
  z-index: 0;
}

.carousel-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(168, 85, 247, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 20px rgba(168, 85, 247, 0.4),
    0 0 15px rgba(168, 85, 247, 0.3);
}

.carousel-btn:hover {
  background: rgba(168, 85, 247, 1);
  border-color: rgba(168, 85, 247, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 
    0 12px 30px rgba(168, 85, 247, 0.6),
    0 0 25px rgba(168, 85, 247, 0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

/* Mobile Gallery */
@media (max-width: 768px) {
  .carousel {
    padding: 1rem;
    margin: 1rem;
  }
  
  .carousel-track {
    gap: 1rem;
  }
  
  .carousel-item {
    flex: 0 0 250px;
    height: 180px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .carousel-btn.prev {
    left: 0.5rem;
  }
  
  .carousel-btn.next {
    right: 0.5rem;
  }
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 80%;
  max-height: 675px;
  background: #0a0a0a;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

body.modal-view {
    background: #000000 !important;
}

/* Override all modal background conflicts */
body.modal-view div[style*="position: fixed"],
body.modal-view div[style*="z-index"],
body.modal-view .mercadopago-checkout-wrapper,
body.modal-view div[class*="checkout-wrapper"] {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

.video-modal-close:hover {
  background: rgba(168, 85, 247, 0.1);
  transform: scale(1.1);
}

.video-modal-body {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 250px;
  }
  
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .video-modal-content {
    width: 95%;
    height: 70%;
  }
  
  .video-modal-close {
    top: 5px;
    right: 10px;
    font-size: 25px;
    width: 35px;
    height: 35px;
  }
}

/* Mercado Pago Button Override */
.cho-container {
  display: inline-block !important;
  width: 100% !important;
}

.cho-container .cho-button {
  background: linear-gradient(135deg, #a855f7, #3b82f6) !important;
  border: 2px solid rgba(168, 85, 247, 0.5) !important;
  border-radius: 8px !important;
  color: white !important;
  font-family: 'Orbitron', monospace !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 12px 24px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  width: 100% !important;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}

.cho-container .cho-button:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6), 0 0 40px rgba(59, 130, 246, 0.4) !important;
  border-color: rgba(168, 85, 247, 0.8) !important;
}

.cho-container .cho-button:before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: left 0.5s !important;
}

.cho-container .cho-button:hover:before {
  left: 100% !important;
}

/* Mercado Pago Button Styles */
.mercadopago-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(168, 85, 247, 0.3);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 16px;
  border: 2px solid rgba(168, 85, 247, 0.6);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: mercadoPagoPulse 2.5s ease-in-out infinite;
}

.mercadopago-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.mercadopago-button:hover::before {
  left: 100%;
}

.mercadopago-button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: rgba(168, 85, 247, 0.6);
  border-radius: 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: mercadoPagoNeonBorder 2.5s linear infinite;
}

.mercadopago-button:hover::after {
  opacity: 1;
}

.mercadopago-button:hover {
  background: rgba(168, 85, 247, 0.5);
  border-color: rgba(168, 85, 247, 1);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.6),
    0 0 60px rgba(34, 211, 238, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: mercadoPagoNeonPulse 0.8s ease-in-out infinite alternate;
  color: white;
  text-decoration: none;
}

.mercadopago-button:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 30px rgba(168, 85, 247, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.3);
}

.mercadopago-button i {
  font-size: 18px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.5));
}

.mercadopago-button:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
  animation: mercadoPagoIconGlow 1s ease-in-out infinite alternate;
}

/* Mercado Pago Button Animations */
@keyframes mercadoPagoPulse {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(168, 85, 247, 0.3),
      0 4px 15px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow:
      0 0 30px rgba(168, 85, 247, 0.5),
      0 4px 15px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

@keyframes mercadoPagoNeonPulse {
  0% {
    box-shadow:
      0 0 40px rgba(168, 85, 247, 0.6),
      0 0 60px rgba(34, 211, 238, 0.4),
      0 8px 25px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow:
      0 0 60px rgba(168, 85, 247, 0.8),
      0 0 80px rgba(34, 211, 238, 0.6),
      0 8px 25px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

@keyframes mercadoPagoNeonBorder {
  0%, 100% {
    background: rgba(168, 85, 247, 0.6);
  }
  50% {
    background: rgba(34, 211, 238, 0.6);
  }
}

@keyframes mercadoPagoIconGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.8));
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mercadopago-button {
    padding: 12px 24px;
    font-size: 13px;
    gap: 10px;
  }
  
  .mercadopago-button i {
    font-size: 16px;
  }
}

/* Mercado Pago Modal Customization */
.mp-mercadopago-checkout-wrapper > iframe {
    z-index: 2 !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Legacy Mercado Pago Button Styles - Removed duplicate styles */

/* Additional modal styling */
.mp-mercadopago-checkout-wrapper {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Custom close button */
.mp-mercadopago-checkout-wrapper::before {
    content: '✕';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.8);
    color: #00ffff;
    border: 2px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.mp-mercadopago-checkout-wrapper::before:hover {
    background: rgba(138, 43, 226, 1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Legacy compatibility */
.mercadopago-checkout-wrapper,
div[style*="position: fixed"][style*="z-index"],
div[style*="position: fixed"][style*="background"],
iframe[src*="mercadopago"] + div,
div[class*="checkout"][style*="position: fixed"],
div[id*="mercadopago"][style*="position: fixed"] {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Target any modal overlay with high z-index */
div[style*="z-index: 999"],
div[style*="z-index: 9999"],
div[style*="z-index: 99999"] {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.mercadopago-checkout-container,
div[class*="checkout-container"],
div[class*="modal-container"] {
  position: relative !important;
}

/* Custom close button for Mercado Pago modal */
.mercadopago-checkout-container::before,
div[class*="checkout-container"]::before {
  content: '✕' !important;
  position: absolute !important;
  top: 10px !important;
  right: 15px !important;
  z-index: 99999 !important;
  background: rgba(168, 85, 247, 0.9) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5) !important;
  font-family: Arial, sans-serif !important;
}

.mercadopago-checkout-container::before:hover,
div[class*="checkout-container"]::before:hover {
  background: rgba(168, 85, 247, 1) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.8) !important;
}

/* Override default modal styles */
.mercadopago-checkout-wrapper .mercadopago-checkout-container,
div[class*="checkout-wrapper"] div[class*="checkout-container"] {
  border-radius: 12px !important;
  border: 2px solid rgba(168, 85, 247, 0.3) !important;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4) !important;
}

/* Ensure modal can be closed by clicking overlay */
.mercadopago-checkout-wrapper,
div[style*="position: fixed"][style*="z-index"] {
  cursor: pointer !important;
}

.mercadopago-checkout-container,
div[class*="checkout-container"] {
  cursor: default !important;
}

/* Force override any white background */
div[style*="background-color: white"],
div[style*="background-color: #fff"],
div[style*="background-color: #ffffff"],
div[style*="background: white"],
div[style*="background: #fff"],
div[style*="background: #ffffff"] {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  backdrop-filter: blur(10px);
}

.footer .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer h4 i {
  color: var(--accent);
  font-size: 1.1em;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer .footer-link {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  border-radius: 4px;
}

.footer .footer-link:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer .footer-link i {
  width: 18px;
  text-align: center;
  opacity: 0.8;
}

.footer .footer-link:hover i {
  opacity: 1;
  color: var(--accent);
}

.footer a{ color:var(--text); text-decoration:none; opacity:.9 }
.footer a:hover{ color:#fff }

.copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.copy i {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer .cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer {
    padding: 2rem 0 1.5rem;
  }
}

.footer .copy{ margin-top:16px; color:var(--muted); font-size:14px }
@media (max-width: 760px){ .footer .cols{ grid-template-columns:1fr } }

/* Lite YouTube (custom lightweight component) */
lite-youtube{ display:block; position:relative; background: #111; border-radius:14px; overflow:hidden; border:1px solid rgba(168,85,247,0.2) }
lite-youtube::before{ content:""; display:block; padding-top:56.25% }
lite-youtube > .lyt-inner{ position:absolute; inset:0; background-size:cover; background-position:center; display:grid; place-items:center }
.lit-btn{ width:68px; height:48px; border:0; border-radius:14px; background: rgba(0,0,0,.5); backdrop-filter: blur(3px); display:grid; place-items:center; cursor:pointer; transition: transform .2s, box-shadow .25s; border:1px solid rgba(168,85,247,0.4) }
.lit-btn:hover{ transform:translateY(-1px); box-shadow:0 0 24px rgba(168,85,247,0.35) }
.lit-icon{ width:0; height:0; border-left:18px solid #fff; border-top:12px solid transparent; border-bottom:12px solid transparent; margin-left:4px }

/* Featured Video Centering */
#featured-video{ 
  max-width: 800px; 
  margin: 0 auto; 
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#featured-video lite-youtube{ 
  box-shadow: var(--shadow); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
}
#featured-video lite-youtube:hover{ 
  transform: translateY(-2px); 
  box-shadow: 0 15px 40px rgba(168,85,247,0.4);
}

/* Desabilitar reprodução inline do player principal */
.featured-video-player {
  pointer-events: auto !important;
}

.featured-video-player .lyt-playbtn,
.featured-video-player .lty-playbtn {
  pointer-events: none !important;
}

.featured-video-player::before {
  pointer-events: none !important;
}

/* Desabilitar reprodução inline para vídeos do grid */
.video-card lite-youtube {
  pointer-events: none;
}

.video-card lite-youtube > .lyt-playbtn,
.video-card lite-youtube::before {
  pointer-events: none;
}

/* Content Centering */
.section h1, .section h2{ 
  text-align: center;
  font-family:'Oxanium','Orbitron',system-ui; 
  font-size: clamp(28px, 5vw, 48px); 
  line-height:1.1; 
  letter-spacing: .5px; 
  margin:0 0 2rem 0; 
  position:relative; 
  text-shadow: 0 0 18px rgba(168,85,247,0.35);
}

.section h1 .glitch, .section h2 .glitch{ 
  position:relative; 
  display:inline-block;
}

.section h1 .glitch::before, .section h1 .glitch::after,
.section h2 .glitch::before, .section h2 .glitch::after{ 
  content:attr(data-text); 
  position:absolute; 
  left:0; 
  top:0; 
  width:100%; 
  overflow:hidden; 
  clip-path: inset(0 0 0 0);
}

.section h1 .glitch::before, .section h2 .glitch::before{ 
  left:2px; 
  text-shadow:-2px 0 var(--accent); 
  animation:glitchTop 2.5s infinite ease-in-out alternate;
}

.section h1 .glitch::after, .section h2 .glitch::after{ 
  left:-2px; 
  text-shadow: 2px 0 var(--magenta); 
  animation:glitchBot 2.8s infinite ease-in-out alternate;
}

/* Disable glitch effect for titles inside specific containers */
.highlight-card .glitch::before,
.highlight-card .glitch::after,
.product .glitch::before,
.product .glitch::after,
.contact-card .glitch::before,
.contact-card .glitch::after,
.footer .glitch::before,
.footer .glitch::after {
  display: none;
}

.highlight-card .glitch,
.product .glitch,
.contact-card .glitch,
.footer .glitch {
  position: static;
  display: inline;
}
.section > .container > p.muted{ text-align: center; max-width: 600px; margin-left: auto; margin-right: auto }

/* Contact Page Styles */
.contact-card{ background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(168, 85, 247, 0.05) 100%); border: 1px solid rgba(168, 85, 247, 0.2); border-radius: 16px; padding: 32px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden }
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.contact-card:hover::before {
  opacity: 1;
}
.contact-card:hover{ border-color: rgba(168,85,247,0.6); transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 40px rgba(168,85,247,0.3), 0 0 20px rgba(168,85,247,0.1); background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(168, 85, 247, 0.1) 100%) }
.contact-btn {
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid rgba(168,85,247,0.6);
  background: rgba(124,58,237,0.3);
  box-shadow:
    0 0 20px rgba(168,85,247,0.3),
    0 4px 15px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: btnPulse 4s ease-in-out infinite;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.8s ease-out;
}

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

.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(168,85,247,1);
  box-shadow:
    0 0 40px rgba(168,85,247,0.6),
    0 0 60px rgba(34,211,238,0.4),
    0 8px 25px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: btnNeonPulse 1.2s ease-in-out infinite alternate;
}

.contact-btn i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.contact-btn.primary {
  background: rgba(124,58,237,0.3);
  border-color: rgba(168,85,247,0.6);
  color: white;
  font-weight: 700;
}

.contact-btn.primary:hover {
  background: rgba(124,58,237,0.4);
  border-color: rgba(168,85,247,1);
}
.contact-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin-top: 48px; align-items: stretch }
.contact-section{ margin-bottom: 48px; margin-top: 40px }
.contact-section h2{ color: white; margin-bottom: 24px; font-size: 24px; font-weight: 700; text-align: center; position: relative; padding-bottom: 12px }
.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent);
}
.contact-grid .contact-card h2{ color: white; font-size: 20px; margin-bottom: 20px; font-weight: 600; text-align: center; position: relative; padding-bottom: 8px }
.contact-grid .contact-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: rgba(168, 85, 247, 0.5);
}
.contact-grid .contact-card h2 i { display: none; }
.contact-info{ background: rgba(34,211,238,0.05); border: 1px solid rgba(34,211,238,0.2); border-radius: var(--radius); padding: 20px; margin-top: 16px }
.contact-info p{ margin-bottom: 12px; line-height: 1.6 }

/* Developer Credit Styles */
.developer-credit {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  animation: developerPulse 3s ease-in-out infinite;
}

.developer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.3);
}

.developer-credit a:hover {
  color: var(--accent);
  text-shadow: 
    0 0 5px rgba(34, 211, 238, 0.8),
    0 0 10px rgba(34, 211, 238, 0.6),
    0 0 15px rgba(34, 211, 238, 0.4);
  transform: scale(1.05);
}

.developer-credit a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: calc(100% + 4px);
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
  opacity: 0;
  animation: techScan 2s ease-in-out infinite;
}

.developer-credit a:hover::before {
  animation: techScanHover 0.6s ease-in-out;
}

@keyframes developerPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

@keyframes techScan {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

@keyframes techScanHover {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Glitch effect for developer credit on hover */
.developer-credit a:hover {
  animation: developerGlitch 0.3s ease-in-out;
}

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

/* Highlight Cards - Removed buggy animations */

/* Video cards */
.video-card{ background: rgba(0, 0, 0, 0.3); border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1) }
.video-card a{ color: white; text-decoration: none }
.video-card a:hover{ color: #bb86fc; text-decoration: none }

/* Highlight Cards */
.highlight-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(168, 85, 247, 0.15), inset 0 0 5px rgba(168, 85, 247, 0.08);
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.4), 
                0 0 15px rgba(168, 85, 247, 0.3),
                inset 0 0 10px rgba(168, 85, 247, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
                rgba(168, 85, 247, 0.1), 
                rgba(139, 69, 255, 0.2), 
                rgba(168, 85, 247, 0.1));
    border-radius: 19px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(1px);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 8px;
}

.highlight-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.highlight-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.highlight-btn {
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid rgba(168, 85, 247, 0.5);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    box-shadow:
        0 0 15px rgba(168, 85, 247, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: highlightPulse 3s ease-in-out infinite;
}

.highlight-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
}

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

.highlight-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(168, 85, 247, 0.6);
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: neonBorder 2s linear infinite;
}

.highlight-btn:hover::after {
    opacity: 1;
}

.highlight-btn:hover {
    background: rgba(168, 85, 247, 0.4);
    border-color: rgba(168, 85, 247, 0.8);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 30px rgba(168, 85, 247, 0.6),
        0 0 50px rgba(34, 211, 238, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: highlightNeonPulse 0.8s ease-in-out infinite alternate;
}

.highlight-btn i {
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.5));
}

.highlight-btn:hover i {
    transform: translateX(6px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
    animation: iconGlow 1s ease-in-out infinite alternate;
}

/* Highlight Button Animations */
@keyframes highlightPulse {
    0%, 100% {
        box-shadow:
            0 0 15px rgba(168, 85, 247, 0.3),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 25px rgba(168, 85, 247, 0.5),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes highlightNeonPulse {
    0% {
        box-shadow:
            0 0 30px rgba(168, 85, 247, 0.6),
            0 0 50px rgba(34, 211, 238, 0.4),
            0 8px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow:
            0 0 50px rgba(168, 85, 247, 0.8),
            0 0 70px rgba(34, 211, 238, 0.6),
            0 8px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes neonBorder {
    0%, 100% {
        background: rgba(168, 85, 247, 0.6);
    }
    50% {
        background: rgba(34, 211, 238, 0.6);
    }
}

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.8));
    }
}

/* Store/Product Styles */
.product {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 280px;
    max-width: 400px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(168, 85, 247, 0.15), inset 0 0 5px rgba(168, 85, 247, 0.08);
}

.product:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.4), 
                0 0 15px rgba(168, 85, 247, 0.3),
                inset 0 0 10px rgba(168, 85, 247, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.product .thumb {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.product .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 1;
}

.product .body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product .title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.product .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0 16px 0;
}

.product .btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.product .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
}

/* Utilities */
.m-0{margin:0} .mt-1{margin-top:6px} .mt-2{margin-top:12px} .mt-3{margin-top:50px} .mt-4{margin-top:28px}
.text-center{text-align:center}
.muted{color:var(--muted)}
.icon{display:inline-grid; place-items:center}
.w-full{width:100%}
.space-y-3 > * + *{margin-top:12px}
.p-3{padding:18px}
.mb-3{margin-bottom:18px}
.gap-2{gap:8px}
.gap-4{gap:20px}

/* Interactive Gallery Effects */
.carousel.reverse-scroll .carousel-track {
  animation-direction: reverse !important;
}

.carousel.fast-scroll .carousel-track {
  animation-duration: 15s !important;
}

.carousel.slow-scroll .carousel-track {
  animation-duration: 45s !important;
}

.carousel:hover .carousel-track {
  animation-play-state: running;
}

.carousel-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel:hover .carousel-item {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.carousel-item:hover {
  transform: scale(1.08) !important;
  filter: brightness(1.2) !important;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
}

/* Bio Section Enhancements */
.surface {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(168, 85, 247, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.surface::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.surface:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

.surface:hover::before {
  left: 100%;
}

.surface img {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.surface:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 24px rgba(168, 85, 247, 0.3));
}

/* Enhanced Biography Text */
.muted {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.muted:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Mobile responsive adjustments for interactive effects */
@media (max-width: 768px) {
  .carousel.fast-scroll .carousel-track {
    animation-duration: 20s !important;
  }
  
  .carousel.slow-scroll .carousel-track {
    animation-duration: 50s !important;
  }
  
  .carousel-item:hover {
    transform: scale(1.05) !important;
  }
  
  .surface {
    padding: 16px;
  }
  
  .surface:hover {
    transform: translateY(-2px);
  }
}

/* Accessibility and reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important }
  
  .carousel.reverse-scroll .carousel-track,
  .carousel.fast-scroll .carousel-track,
  .carousel.slow-scroll .carousel-track {
    animation: none !important;
  }
}