:root {
    --color-primary: #345db4;
    --color-primary-light: #35bded;
    --color-primary-hover: #1565a1;
    --color-accent: #79d8f4;

    --color-background: #121212;
    --color-surface: #1e1e1e;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b3b3b3;
    --color-border: #333333;

    --header-height: 70px;
    --nav-width: 70px;
    --nav-width-expanded: 250px;
    --border-radius-sm: 0.25rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

[data-theme="light"] {
    --color-background: #f5f5f5;
    --color-surface: #e6e6e6;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #333333;
    --color-border: #b3b3b3;

    --color-primary: #345db4;
    --color-primary-light: #35bded;
    --color-primary-hover: #1565a1;
    --color-accent: #79d8f4;
}

/* *,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color var(--transition);
}

/* a {
    text-decoration: none;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
} */

#main-content {
    margin-left: 4rem;
    transition: margin-left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#app-layout #navbar.expanded ~ #main-content {
    margin-left: 10rem;
}

#app-layout {
    margin-top: 4rem;
}
.hidden {
    display: none !important;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

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

.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

.faq-question[data-active="true"] i {
    transform: rotate(180deg);
}
