body {
    background-color: #0F0A08;
    color: #FAF5F0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.inner-glow {
    box-shadow: inset 0 1px 1px 0 rgba(255, 191, 0, 0.1);
}

.accent-gradient {
    background: linear-gradient(to right, #f59e0b, #f97316, #f43f5e);
}

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

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.icon-amber {
    filter: invert(68%) sepia(85%) saturate(1500%) hue-rotate(1deg) brightness(103%) contrast(105%);
}

.icon-secondary {
    filter: invert(70%) sepia(10%) saturate(200%) hue-rotate(350deg) brightness(90%) contrast(85%);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Small hack to make hover work on IMG with filter */
a:hover img.icon-secondary {
    filter: invert(68%) sepia(85%) saturate(1500%) hue-rotate(1deg) brightness(103%) contrast(105%);
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* Custom Professional List Dots */
ul li {
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 2px;
    background-color: #f59e0b;
    border-radius: 2px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.group:hover ul li::before {
    opacity: 1;
    width: 10px;
}
