body {
      font-family: 'Poppins', sans-serif;
      background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #0b0f19 70%);
    }
    
    .glow-text {
      text-shadow: 0 0 12px rgba(0, 229, 255, 0.6), 0 0 25px rgba(168, 85, 247, 0.4);
    }

    .glow-box {
      box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
    }
    
    .neon-border {
      box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
      border: 1px solid rgba(0, 229, 255, 0.3);
    }

    .progress-ring__circle {
      transition: stroke-dashoffset 0.1s linear;
      transform: rotate(-90deg);
      transform-origin: 50% 50%;
    }

    .tab-active {
      background: linear-gradient(135deg, rgba(0,229,255,0.2) 0%, rgba(168,85,247,0.2) 100%);
      border-color: #00e5ff;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(0, 229, 255, 0.15);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease;
    }

    .faq-answer.open {
      max-height: 250px;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }
