:root {
  --bg: #121212;
  --text: #ffffff;
  --muted: #d0d0d0;
  --accent: #5e17eb;
}
/* Hide Create Account link on tablet and mobile */
@media (max-width: 1024px) {
    .footer-create-account {
        display: none !important;
    }
}
.center-text {
    text-align: center;
}

/* WOW MULTI-LAYER 3D STARFIELD */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  background: 
    radial-gradient(1px 1px at 20px 30px, #ffffff, transparent),
    radial-gradient(0.8px 0.8px at 40px 70px, #f0f0ff, transparent),
    radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
    radial-gradient(0.7px 0.7px at 130px 80px, #e0e0ff, transparent),
    radial-gradient(1px 1px at 160px 30px, #ffffff, transparent);
  background-repeat: repeat;
  background-size: 200px 140px;
  will-change: transform, filter, background-position;
  transform: translateZ(0);
  animation: 
    sparkle-fast 20s linear infinite,
    drift1 60s ease-in-out infinite alternate,
    twinkle 3s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 10px 90px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 70px 110px, rgba(120,200,255,0.4), transparent),
    radial-gradient(3px 3px at 120px 50px, rgba(255,200,255,0.3), transparent),
    radial-gradient(1px 1px at 180px 120px, rgba(255,255,255,0.5), transparent);
  background-repeat: repeat;
  background-size: 240px 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  will-change: transform, filter, background-position;
  transform: translateZ(0);
  animation: 
    sparkle-medium 35s linear infinite reverse,
    nebula-float 80s ease-in-out infinite;
}

/* STARFIELD ANIMATIONS */
@keyframes sparkle-fast {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1); 
    filter: brightness(1) drop-shadow(0 0 2px #ffffff);
  }
  25% { 
    transform: translateX(-50px) translateY(-35px) scale(1.1); 
    filter: brightness(1.4) drop-shadow(0 0 4px #ffffff);
  }
  50% { 
    transform: translateX(-100px) translateY(-70px) scale(0.9); 
    filter: brightness(1.2) drop-shadow(0 0 3px #a0d0ff);
  }
  75% { 
    transform: translateX(-150px) translateY(-105px) scale(1.15); 
    filter: brightness(1.6) drop-shadow(0 0 6px #ffffff);
  }
}

@keyframes sparkle-medium {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1); 
    filter: brightness(0.8) blur(0.5px);
  }
  33% { 
    transform: translateX(60px) translateY(-40px) scale(1.2); 
    filter: brightness(1.3) blur(0.3px);
  }
  66% { 
    transform: translateX(-80px) translateY(-90px) scale(0.85); 
    filter: brightness(1.1) blur(0.7px);
  }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

@keyframes drift1 {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 10% 8%; }
}

@keyframes nebula-float {
  0%, 100% { background-position: 100% 100%; }
  50% { background-position: 95% 92%; }
}

/* Mobile performance optimization */
@media (max-width: 768px) {
  body::before, body::after {
    background-size: 160px 120px !important;
    animation-duration: 15s, 45s !important;
  }
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* FAQ Container - Desktop (75% Width & Centered) */
.faq-container {
    width: 75%;            
    max-width: 1440px;
    margin: 0 auto;        
    padding: 60px 0;       
}

.faq-item {
    border-bottom: 1px solid rgba(94, 23, 235, 0.3);
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-icon {
    color: var(--accent);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-top: 16px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-container {
        width: 100%;        
        padding: 40px 24px; 
    }
    
    .faq-question h3 { 
        font-size: 1rem; 
        padding-right: 10px; 
    }
}

.bottom-hero-button {
  display: inline-block;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  will-change: transform;
}

.bottom-hero-button:hover {
  background: #fff;
  color: #000;
  border: none;
  animation: bounceUpDown 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

img[src="images/knowledge_demo.webp"].cast-card {
    border-radius: 5px;
    border: 1px solid rgba(94, 23, 235, 0.5);
    transition: border-color 0.25s ease-out;
}

img[src="images/knowledge_demo.webp"].cast-card:hover {
    border-color: #fff;
}

@media (max-width: 767px) {
    .mob-demo-image {
        width: 95% !important;
        max-width: 95% !important;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .desk-demo-image {
        max-width: 45% !important;
        width: 45% !important;
        margin: 0 auto;
    }
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-wrapper main {
    flex: 1;
}

.page-active .site-footer {
    display: none !important;
}

.hero-video {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  margin: 18px auto 40px;
  border-radius: 5px;
  border-style: solid;
  border-color: rgba(94, 23, 235, 0.5);
  object-fit: cover;
}

.hero-wallet-link {
  display: none;
}

@media (min-width: 1024px) {
  .hero-wallet-link {
    display: block;
    margin-top: 20px;
  }

  .hero-wallet-link a {
    color: #fab515;
    text-decoration: none;
    font-weight: 500;
    font-size: 9px;
    position: relative;
  }

  .hero-wallet-link a::after {
    content: "›";
    margin-left: 6px;
    color: inherit;
    font-size: 0.95em;
  }

  .hero-wallet-link a:hover {
    text-decoration: underline;
  }
}

.solana-text {
  color: #5e17eb;
}

.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@font-face {
  font-family: "CloneCast";
  src: url(clonecastfont.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.demo-image {
  width: 80%;
  max-width: 80%;
  display: block;
  margin: 10px auto;
}

@media (max-width: 768px) {
  .demo-image {
    width: 100%;
    max-width: 100%;
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.header-cta:hover {
  background: #fff;
  color: #000;
  border: none;
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
  z-index: 1000;
}

.site-header.scrolled {
  background: rgba(18, 18, 18) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #181818;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 16px 48px;
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
  }
  .site-header.scrolled {
    padding: 14px 20px;
  }

  .header-cta {
    font-size: 8px;
  }
}

.site-logo img {
  height: 30px;
  width: auto;
}

.site-logo-link {
  display: contents;
  text-decoration: none;
}

.site-logo-link:hover .site-logo {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.loader-logo {
  width: 400px;
  height: 400px;
}

@media (max-width: 768px) {
  .loader-logo {
    width: 250px;
    height: 250px;
  }
  
  .site-logo img {
    height: 28px;
    margin-top: 10px;
    width: auto;
  }
}

main {
  width: 100%;
  min-width: 1200px;
  flex: 1;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  main {
    min-width: 0;
  }
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-heading {
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 150px 48px 108px;
  text-align: center;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.08;
}

.hero-vision {
  color: #5e17eb;
}

.hero-anytime {
  color: #5e17eb;
}

.hero-anywhere {
  color: #fff;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 768px) {
  .hero-subtitle {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--muted);
  }
}

/* MOUSE GLOW TRAIL */
.hero::before {
  content: '';
  position: fixed;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(94,23,235,0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 10;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  left: 50vw;
  top: 50vh;
  opacity: 0;
}
.hero:hover::before { opacity: 1; 
}
.hero-img-desktop, .hero-img-mobile {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: block;
  margin: 8px auto 40px;
  border-radius: 8px;
}

.hero-img-mobile { display: none; }

.section { width: 100%; }

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 48px 96px;
  display: flex;
  gap: 48px;
  align-items: center;
}

/* PARALLAX 3D SETUP */
.section-image {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}

.section-image img.bg-card {
  width: 100%;
  min-height: 340px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(94, 23, 235, 0.5);
  transition: border-color 0.2s ease;
}

.section-image img.cast-card {
  position: absolute;
  max-height: 290px;
  max-width: 70%;
  width: auto;
  height: auto;
  display: block;
  pointer-events: none;
  transition: transform 0.25s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

@media (min-width: 769px) {
  .section-image:hover img.cast-card {
    transform: scale(1.1) rotateX(10deg) rotateY(10deg);
  }
}

.section-image img.bg-card:hover {
  border-color: #fff;
}

.section-text {
  flex: 1 1 50%;
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-body {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .section-body {
    font-size: 0.90rem;
  }
}

.bottom-hero {
  max-width: 1440px;
  margin: 0 auto 60px;
  padding: 60px 24px 60px;
  text-align: center;
}

.bottom-hero-title {
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: none;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.bottom-hero-subtitle {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--muted);
}

.bottom-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  cursor: pointer;
}

.bottom-hero-button:hover {
  background: #fff !important;
  color: #000 !important;
  border: none !important;
  animation: bounceUpDown 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  transform: none !important;
}

.back-to-top {
  position: fixed;
  bottom: 72px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.back-to-top .caret-up {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #fff;
}

.back-to-top:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .back-to-top {
    display: none!important;
  }
}

.site-footer {
  width: 100%;
  height: 50px;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 8px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left { font-size: 8px; }

.footer-right a {
  color: #fff;
  text-decoration: none;
  font-size: 8px;
}

.footer-right a:hover { text-decoration: underline; }

.footer-separator { margin: 0 6px; }

@media (max-width: 1024px) {
  .hero { padding: 124px 32px 90px; }
  .hero-title { font-size: 2.4rem; }
  .section-inner { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 140px 15px 86px; }
  .hero-title { font-size: 32px; }

  .hero-img-desktop { display: none; }
  .hero-img-mobile { display: block; }

  .section-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 15px 56px;
    gap: 8px;
  }

  .section-text, .section-image { width: 100%; }
  .section-text { order: 1; }
  .section-image { order: 2; }
  
  .section-image img.bg-card { 
    transform: scale(0.9); 
    transform-origin: center; 
    margin-top: 6px; 
  }
  
  .section-image img.cast-card { max-height: 250px; }

  .footer-inner {
    padding: 0 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .site-footer {
    height: 90px;
  }

  .footer-left { font-size: 10px; }
  .bottom-hero-title { font-size: 24px; }
  .section-heading { font-size: 24px; }
}

@media (max-width: 768px) {
  .hero-anytime { color: #ffffff !important; }
  .hero-anywhere { color: #5e17eb !important; }
}

@media (max-width: 767px) {
  .solana-text { display: none !important; }
}

/* PRICING SECTION WITH FLASH EFFECT + PULSE (UPDATED) */
.pricing-section {
  width: 100%;
}

.pricing-inner {
  flex-direction: column;
  text-align: center;
  padding: 80px 48px 116px;
}

.pricing-header {
  max-width: 640px;
  margin: 0 auto 60px;
}

.pricing-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 380px));
  gap: 32px;
  justify-content: center;
}

.pricing-card {
  position: relative;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(94, 23, 235, 0.2);
  padding: 40px 32px 60px;
  text-align: center;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 540px; 
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #a855f7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* FLASH EFFECT LAYER */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(94, 23, 235, 0.4),
    rgba(255, 255, 255, 0.2),
    rgba(94, 23, 235, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  pointer-events: none;
}

/* ⚡️ PRO PLAN LIGHT PULSE + BORDER ANIMATION (UPDATED) */
.pricing-card-featured {
  border-color: rgba(255, 255, 255, 0.4); /* Brighter base */
  box-shadow: 
    0 35px 70px rgba(94, 23, 235, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-20px);
  animation: 
    pulse-glow 4s ease-in-out infinite alternate,
    light-outline 2s ease-in-out infinite alternate; /* ALWAYS-ON PULSE */
}

.pricing-card-featured::before {
  opacity: 1;
}

.pricing-card-featured::after {
  left: -80%;
  opacity: 0.3;
  transition: none;
  animation: inner-glow 2s ease-in-out infinite alternate-reverse;
}

.pricing-card:hover {
  border-color: rgba(94, 23, 235, 0.6);
  transform: translateY(-12px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(94, 23, 235, 0.3),
    inset 0 0 20px rgba(94, 23, 235, 0.1);
  animation-play-state: paused; /* Pause pulse on hover */
}

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

.pricing-card:hover::after {
  left: 100%;
}

.pricing-card-featured:hover::after {
  left: 100%;
  opacity: 1;
}

/* ANIMATION KEYFRAMES */
@keyframes pulse-glow {
  0% {
    box-shadow: 
      0 35px 70px rgba(94, 23, 235, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.2),
      inset 0 0 20px rgba(94, 23, 235, 0.1);
  }
  100% {
    box-shadow: 
      0 50px 100px rgba(94, 23, 235, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.3),
      inset 0 0 40px rgba(94, 23, 235, 0.2),
      0 0 60px rgba(94, 23, 235, 0.15);
  }
}

@keyframes inner-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

/* NEW: LIGHT PULSE OUTLINE */
@keyframes light-outline {
  0% {
    box-shadow: 
      0 0 0 2px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(255, 255, 255, 0.1),
      0 0 40px rgba(94, 23, 235, 0.2);
  }
  100% {
    box-shadow: 
      0 0 0 2px rgba(255, 255, 255, 0.5),
      0 0 30px rgba(255, 255, 255, 0.3),
      0 0 60px rgba(94, 23, 235, 0.4);
  }
}

.pricing-title {
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-tagline {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start; 
  text-align: left; 
}

.pricing-features li {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: #10b981;
  font-weight: 900;
  font-size: 16px;
}

.pricing-price {
  margin-bottom: 28px;
}

.pricing-amount {
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(94, 23, 235, 0.4);
  position: relative;
  overflow: hidden;
}

.pricing-button:hover {
  background: linear-gradient(135deg, #fff, #f8fafc);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(94, 23, 235, 0.5);
}

.pricing-button:active {
  transform: translateY(0);
}

/* Add-ons Section */
.addons-section {
  width: 100%;
}

.addons-inner {
  flex-direction: column;
  text-align: center;
  padding: 60px 48px 80px;
}

.addons-header {
  max-width: 560px;
  margin: 0 auto 48px;
}

.addons-grid {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 340px));
  gap: 24px;
  justify-content: center;
}

.addons-card {
  position: relative;
  background: rgba(15, 15, 25, 0.9);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(94, 23, 235, 0.3);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  height: 360px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.addons-card-featured {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 30px 60px rgba(94, 23, 235, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: translateY(-12px);
}

.addons-card:hover {
  border-color: rgba(94, 23, 235, 0.5);
  transform: translateY(-6px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(94, 23, 235, 0.25);
}

.addons-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.addons-title {
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}

.addons-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.addons-price {
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1;
}

.addons-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  opacity: 0.8;
}

.addons-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  font-family: "CloneCast", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(94, 23, 235, 0.3);
  flex-grow: 0;
  margin-top: auto;
}

.addons-button:hover {
  background: linear-gradient(135deg, #fff, #f8fafc);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(94, 23, 235, 0.4);
}

/* Responsive pricing */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
  }
  
  .pricing-card-featured {
    transform: translateY(-12px);
  }
  
  .pricing-card {
    height: 500px;
  }

  .addons-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 20px;
    max-width: 700px;
  }
  
  .addons-card-featured {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-inner {
    padding: 60px 24px 100px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 380px;
  }
  
  .pricing-card {
    height: 520px;
    padding: 32px 24px 52px;
  }
  
  .pricing-card-featured,
  .pricing-card:hover {
    transform: translateY(-8px);
  }
  
  .pricing-title {
    font-size: 24px;
  }
  
  .pricing-amount {
    font-size: 40px;
  }
  
  .pricing-features li {
    font-size: 13px;
    padding-left: 20px;
  }

  .addons-inner {
    padding: 48px 24px 60px;
  }
  
  .addons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 340px;
  }
  
  .addons-card {
    height: 380px;
    padding: 28px 20px;
  }
  
  .addons-card-featured,
  .addons-card:hover {
    transform: translateY(-4px);
  }

  .pricing-card::after {
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 28px 20px 48px;
    height: 520px;
  }

  .addons-card {
    padding: 24px 18px;
    height: 360px;
  }
}


/* =========================================================
   FIXES ADDED (do not remove other code)
   ========================================================= */

/* Disable purple mouse glow trail on hero */
.hero::before,
.hero:hover::before{
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}

/* Disable hover over section image thing (3D tilt/scale + border change) */
.section-image:hover img.cast-card{
  transform: none !important;
}

.section-image img.bg-card:hover{
  border-color: rgba(94, 23, 235, 0.5) !important;
}
