body {
    margin: 0;
    background: #0e0e0e;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    overflow-x: hidden;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 10% 20%, rgba(145, 242, 22, 0.02) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(145, 242, 22, 0.01) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(145, 242, 22, 0.015) 0%, transparent 50%),
      radial-gradient(circle at 80% 10%, rgba(145, 242, 22, 0.008) 0%, transparent 40%),
      radial-gradient(circle at 20% 90%, rgba(145, 242, 22, 0.012) 0%, transparent 45%);
    z-index: -1;
    animation: aniccaBackground 30s ease-in-out infinite;
    pointer-events: none;
  }
  
  @keyframes aniccaBackground {
    0%, 100% {
      background: 
        radial-gradient(circle at 10% 20%, rgba(145, 242, 22, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(145, 242, 22, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(145, 242, 22, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(145, 242, 22, 0.008) 0%, transparent 40%),
        radial-gradient(circle at 20% 90%, rgba(145, 242, 22, 0.012) 0%, transparent 45%);
      transform: scale(1);
    }
    25% {
      background: 
        radial-gradient(circle at 85% 15%, rgba(145, 242, 22, 0.018) 0%, transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(145, 242, 22, 0.012) 0%, transparent 45%),
        radial-gradient(circle at 60% 40%, rgba(145, 242, 22, 0.016) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(145, 242, 22, 0.009) 0%, transparent 35%),
        radial-gradient(circle at 70% 70%, rgba(145, 242, 22, 0.014) 0%, transparent 50%);
      transform: scale(1.01);
    }
    50% {
      background: 
        radial-gradient(circle at 30% 70%, rgba(145, 242, 22, 0.015) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(145, 242, 22, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 20% 40%, rgba(145, 242, 22, 0.01) 0%, transparent 30%),
        radial-gradient(circle at 80% 60%, rgba(145, 242, 22, 0.018) 0%, transparent 55%),
        radial-gradient(circle at 50% 10%, rgba(145, 242, 22, 0.006) 0%, transparent 25%);
      transform: scale(0.99);
    }
    75% {
      background: 
        radial-gradient(circle at 60% 80%, rgba(145, 242, 22, 0.017) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(145, 242, 22, 0.013) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(145, 242, 22, 0.019) 0%, transparent 60%),
        radial-gradient(circle at 10% 50%, rgba(145, 242, 22, 0.007) 0%, transparent 30%),
        radial-gradient(circle at 75% 90%, rgba(145, 242, 22, 0.011) 0%, transparent 45%);
      transform: scale(1.005);
    }
  }
  
  /* Heading animation styles */
  h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    overflow: hidden;
    letter-spacing: 0.2em; 
  }
  
  /* ANICCA word styling */
  .anicca-word {
    color: #91f216;
    font-weight: 600;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: subtleReveal 1.5s ease-out forwards;
    animation-delay: 0.3s;
  }
  
  /* LABS word styling */
  .labs-word {
    color: #ffffff;
    font-weight: 400;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: subtleReveal 1.5s ease-out forwards;
    animation-delay: 0.9s;
    margin-left: 0.3rem;
  }
  
  /* ANICCA word hover effect */
  .anicca-word:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease-out;
    text-shadow: 0 0 15px rgba(145, 242, 22, 0.4);
  }
  
  /* LABS hover effect */
  .labs-word:hover {
    transform: translateY(-1px);
    transition: transform 0.3s ease-out;
  }
  
  /* Simple, compatible reveal animation */
  @keyframes subtleReveal {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }
  em {
    font-style: italic;
  }

  .anicca-text {
    color: #91f216;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .logo-section {
    margin: 4rem 0 4rem;
  }
  .logo-section img {
    width: 160px;
    height: 160px;
    background: #91f216;
    border-radius: 20px;
    animation: rotateClockwise 2s linear forwards, pauseThenRotateReverse 12s linear infinite;
  }

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

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

  .play-button {
    background: #ffffff;
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    margin: auto;
  }
  
  .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  }
  
  .play-button.playing {
    background: #91f216;
    color: #000;
  }
  
  .play-button.playing:hover {
    box-shadow: 0 4px 12px rgba(145, 242, 22, 0.4);
  }
  
  .play-icon {
    transition: all 0.3s ease;
  }
  
  .pause-icon {
    display: none;
    transition: all 0.3s ease;
  }
  
  .play-button.playing .play-icon {
    display: none;
  }
  
  .play-button.playing .pause-icon {
    display: block;
  }
  
  /* Section title with transparent card background */
  .section-title {
    color: #91f216;
    margin-top: 4rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    display: block;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: subtleFloat 6s ease-in-out infinite;
  }
  
  .section-title::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: 
      radial-gradient(circle at 20% 50%, rgba(145, 242, 22, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(145, 242, 22, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 40% 80%, rgba(145, 242, 22, 0.06) 0%, transparent 50%);
    border-radius: 14px;
    z-index: -1;
    animation: subtleMorph 8s ease-in-out infinite;
  }
  
  @keyframes subtleFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-3px);
    }
  }
  
  @keyframes subtleMorph {
    0%, 100% {
      background: 
        radial-gradient(circle at 20% 50%, rgba(145, 242, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(145, 242, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(145, 242, 22, 0.06) 0%, transparent 50%);
      transform: scale(1);
    }
    50% {
      background: 
        radial-gradient(circle at 80% 30%, rgba(145, 242, 22, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(145, 242, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 10%, rgba(145, 242, 22, 0.04) 0%, transparent 50%);
      transform: scale(1.02);
    }
  }
  
  h2 {
    margin-top: 1rem;
    font-weight: 800;
  }
  .footer {
    background: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4rem;
    font-size: 0.9rem;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  
  .footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-logo {
    width: 45px;
    height: 45px;
    background: #91f216;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .footer-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(145, 242, 22, 0.3);
    filter: drop-shadow(0 0 15px rgba(145, 242, 22, 0.6));
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .footer-text {
    text-align: left;
    line-height: 0.7;
  }
  
  .footer-text span {
    display: block;
  }
  
  .social-icons {
    display: flex;
    gap: 0.8rem;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .social-icons svg {
    width: 24px;
    height: 24px;
    background: #91f216;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
  }
  
  .social-icons svg:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(145, 242, 22, 0.3);
  }

  /* Enhanced FAQ with neon effects and centered content */
  .faq {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 3rem;
  }
  
  .faq::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
      radial-gradient(ellipse at 25% 25%, rgba(145, 242, 22, 0.08) 0%, transparent 60deg),
      radial-gradient(ellipse at 75% 75%, rgba(145, 242, 22, 0.06) 0%, transparent 40%),
      radial-gradient(ellipse at 50% 10%, rgba(145, 242, 22, 0.04) 0%, transparent 30%),
      radial-gradient(ellipse at 10% 60%, rgba(145, 242, 22, 0.05) 0%, transparent 35%),
      radial-gradient(ellipse at 90% 30%, rgba(145, 242, 22, 0.07) 0%, transparent 45%);
    border-radius: 20px;
    z-index: -1;
    animation: aniccaMorph 20s ease-in-out infinite;
  }
  
  .faq::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: 
      conic-gradient(from 0deg at 50% 50%, 
        transparent 0deg, 
        rgba(145, 242, 22, 0.02) 60deg, 
        transparent 120deg, 
        rgba(145, 242, 22, 0.03) 180deg, 
        transparent 240deg, 
        rgba(145, 242, 22, 0.01) 300deg, 
        transparent 360deg);
    border-radius: 18px;
    z-index: -2;
  }
  
  @keyframes aniccaMorph {
    0%, 100% {
      background: 
        radial-gradient(ellipse at 25% 25%, rgba(145, 242, 22, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 75%, rgba(145, 242, 22, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 10%, rgba(145, 242, 22, 0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 10% 60%, rgba(145, 242, 22, 0.05) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 30%, rgba(145, 242, 22, 0.07) 0%, transparent 45%);
      transform: scale(1);
    }
    50% {
      background: 
        radial-gradient(ellipse at 75% 25%, rgba(145, 242, 22, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 25% 75%, rgba(145, 242, 22, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 90%, rgba(145, 242, 22, 0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 90% 60%, rgba(145, 242, 22, 0.05) 0%, transparent 35%),
        radial-gradient(ellipse at 10% 30%, rgba(145, 242, 22, 0.07) 0%, transparent 45%);
      transform: scale(1.01);
    }
  }
  
  .faq-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  
  .faq-item:hover {
    border-color: rgba(145, 242, 22, 0.4);
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.6),
      0 0 20px rgba(145, 242, 22, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
  
  .faq-question {
    padding: 1.5rem 2rem;
    font-weight: 400;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #91f216;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    letter-spacing: 1px;
  }
  
  .faq-question:hover {
    background: rgba(0, 0, 0, 0.4);
  }
  
  .faq-answer {
    padding: 2rem;
    display: none;
    color: #e0e0e0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.3px;
  }
  
  .faq-answer p {
    margin: 0.8rem 0;
    text-align: center;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-item.active {
    border-color: rgba(145, 242, 22, 0.5);
    box-shadow: 
      0 15px 45px rgba(0, 0, 0, 0.7),
      0 0 30px rgba(145, 242, 22, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
  }
  
  .faq-item.active .faq-question {
    background: rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(145, 242, 22, 0.3);
  }

  /* Responsive Design for Mobile */
  @media (max-width: 768px) {
    /* Make "ANICCA" and "LABS" appear on separate lines */
    h1 {
      font-size: 2.5rem;
      display: block;
      text-align: center;
    }
    
    /* Stack ANICCA and LABS vertically on mobile */
    .anicca-word,
    .labs-word {
      display: block;
      width: 100%;
      text-align: center;
    }
    
    /* Remove margin between words on mobile */
    .labs-word {
      margin-left: 0;
    }
    
    /* Left-align third FAQ question */
    .faq-question:nth-child(3) {
      text-align: left;
      justify-content: flex-start;
    }
    
    .faq-question:nth-child(3) span {
      margin-left: auto;
    }
    
    /* Stack footer elements vertically and center */
    .footer {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
      padding: 2rem 1rem;
    }
    
    .footer-logo-section {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    .footer-text {
      text-align: center;
    }
    
    .social-icons {
      justify-content: center;
    }
  }

  /* Additional mobile optimizations */
  @media (max-width: 480px) {
    .container {
      padding: 2rem 0.5rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    .section-title {
      padding: 1rem 1.5rem;
      font-size: 0.9rem;
      letter-spacing: 2px;
    }
    
    .faq-question {
      padding: 1rem 1.5rem;
      font-size: 0.9rem;
    }
    
    .faq-answer {
      padding: 1.5rem;
    }
  }