body {
    font-family: "Roboto", sans-serif;
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.material-symbols-outlined.fill {
    font-variation-settings:
        "FILL" 1,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.browser-frame {
    border: 1px solid #e0e3e3;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: white;
    overflow: hidden;
}

.browser-header {
    background: #f1f3f4;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0e3e3;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dadce0;
}

.browser-dot.red {
    background-color: #ff5f57;
}
.browser-dot.yellow {
    background-color: #febc2e;
}
.browser-dot.green {
    background-color: #28c840;
}

.grid-bg {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, #eef2f6 1px, transparent 1px),
        linear-gradient(to bottom, #eef2f6 1px, transparent 1px);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
    padding-bottom: 0;
}

.faq-item.open .faq-content {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* 404 page */
.key-cap {
    box-shadow: 0 4px 0 #e2e8f0;
    transition: all 0.1s;
}

.key-cap:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #e2e8f0;
}

.floating-key {
    animation: float 6s ease-in-out infinite;
}

.floating-key-2 {
    animation: float 8s ease-in-out infinite reverse;
}

.floating-key-3 {
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}
