body {
    font-family: 'Noto Sans HK', sans-serif;
    scroll-behavior: smooth;
}

.brand-logo {
    font-weight: 900; /* Extra bold for brand */
}

.hero-bg-image {
    background-size: cover;
    background-position: center;
    filter: contrast(1.1) saturate(1.2);
}

.neon-pink-text {
    color: #fff;
    text-shadow:
        0 0 5px #ff00e0,
        0 0 0px #ff00e0,
        0 0 10px #ff00e0,
        0 0 10px #f09,
        0 0 5px #f09,
        0 0 15px #f09;
}
.neon-pink-text-subtle {
    color: #fcc;
    text-shadow:
        0 0 3px #ff00e0,
        0 0 5px #ff00e0;
}

.neon-blue-text {
    color: #fff;
    text-shadow:
        0 0 5px #00f2ff,
        0 0 0px #00f2ff,
        0 0 10px #00f2f5,
        0 0 10px #0AF,
        0 0 5px #0AF,
        0 0 15px #0AF;
}

.neon-yellow-text {
    color: #fff;
    text-shadow:
        0 0 5px #ffe100,
        0 0 0px #faff00,
        0 0 5px #faff00,
        0 0 0px #ff0,
        0 0 0px #ff0,
        0 0 0px #ff0;
}
.neon-yellow-text-subtle {
    color: #ffc;
     text-shadow:
        0 0 3px #faff00,
        0 0 5px #faff00;
}

.neon-cyan-text {
    color: #ccffff;
     text-shadow:
        0 0 5px #00f2ff,
        0 0 0px #00f2ff,
        0 0 10px #00f2ff,
        0 0 10px #0CF,
        0 0 5px #0CF,
        0 0 15px #0CF;
}


.neon-green-text {
    color: #dfd;
     text-shadow:
        0 0 0px #39FF14,
        0 0 0px #39FF14,
        0 0 5px #39FF14,
        0 0 0px #39FF14,
        0 0 0px #39FF14,
        0 0 5px #39FF14;
}

.neon-button-pink_cta {
    border: 2px solid #ff00e0;
    box-shadow: 0 0 5px #ff00e0, 0 0 10px #ff00e0, 0 0 15px #ff00e0, inset 0 0 5px #ff00e0;
    color: white;
    background-color: #d53f8c; /* Tailwind pink-600 */
}
.neon-button-pink_cta:hover {
    box-shadow: 0 0 10px #ff00e0, 0 0 20px #ff00e0, 0 0 30px #ff00e0, inset 0 0 10px #ff00e0;
    background-color: #c5307c; /* Darker pink */
}


.neon-blue-glow-strong {
    box-shadow: 0 0 15px #00f2ff, 0 0 30px #00f2ff, 0 0 45px #00aaff;
}

.neon-cyan-glow-strong {
     box-shadow: 0 0 15px #00f2ff, 0 0 30px #00f2ff, 0 0 45px #00ccee;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #faff00;
    transition: width 0.3s ease-in-out;
    box-shadow: 0 0 5px #faff00, 0 0 10px #faff00;
}
.nav-links a:hover::after {
    width: 100%;
}

.benefit-card {
    background-color: rgba(15, 23, 42, 0.7); /* slate-900 with opacity */
    border: 1px solid rgba(255, 0, 224, 0.3); /* Neon pink subtle border */
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    backdrop-filter: blur(5px);
}
.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 15px rgba(255, 0, 224, 0.5), 0 0 30px rgba(255, 0, 224, 0.3);
}

.trust-item {
    background-color: rgba(30, 41, 59, 0.5); /* slate-800 with opacity */
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #00f2ff; /* Neon cyan accent */
    transition: background-color 0.3s;
}
.trust-item:hover {
    background-color: rgba(51, 65, 85, 0.7); /* slate-700 with opacity */
}

.scroll-mt-20 {
  scroll-margin-top: 5rem; /* 80px, assuming header height */
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

.animate-bounce {
  animation: bounce 2s infinite;
}
