body {
    font-family: 'Inter', sans-serif;
    background-color: #111827; /* bg-gray-900 */
}

.font-mono {
    font-family: 'Source Code Pro', monospace;
}

.section-bg-light {
    background-color: #F9FAFB; /* bg-gray-50 */
}

.section-bg-dark {
    background-color: #111827; /* bg-gray-900 */
}

.hero-bg {
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 2rem 2rem;
}

.cta-btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.2);
}

.table-highlight {
    background-color: rgba(59, 130, 246, 0.1);
}

.tab-button.active {
    border-color: #3B82F6; /* border-blue-500 */
    color: #3B82F6;
    background-color: rgba(59, 130, 246, 0.1);
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.json-key {
    color: #9CDCFE;
}

.json-string {
    color: #CE9178;
}

.json-number {
    color: #B5CEA8;
}

.json-brace {
    color: #D1D5DB;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #374151;
    border-radius: 0.75rem;
    background-color: rgba(17, 24, 39, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__text {
    margin: 0;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-banner__text a {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
}

.cookie-btn--primary {
    background-color: #111827;
    border-color: #4b5563;
    color: #f9fafb;
}

.cookie-btn--primary:hover {
    background-color: #1f2937;
}

.cookie-btn--ghost {
    background-color: transparent;
    border-color: #4b5563;
    color: #d1d5db;
}

.cookie-btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.faq-item {
    overflow: hidden;
}

.faq-summary {
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-chevron {
    color: #3B82F6;
    transform: rotate(180deg);
}

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
