html {
    overflow-y: scroll;
}

.wrap {
    max-width: 900px;
    margin: 0 auto;
}

.dashboard {
    background-color: #f4f6f9;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 500;
}

h5 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.body-text,
.verses {
    font-family: "Inter", system-ui, sans-serif;
}

.body-text {
    background: whitesmoke;
}

.hero-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #0b0f14;
    background-image: url("/images/node.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 60%;
}

.hero-text {
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    animation: heroFadeUp 0.5s ease-out both;
}

.hero-subtle {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

@media (prefers-reduced-motion: reduce) {
    .hero-text {
        animation: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 16px;
        background-position: center 50%;
    }
}

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

.nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.nav-links a {
    flex: 1 1 45%;
    max-width: 200px;
    padding: 10px 20px;
}

.verse-of-day {
    margin-top: 20px;
    font-style: italic;
}

.card {
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 20px 25px -5px rgba(0, 0, 0, 0.35),
        0 10px 10px -5px rgba(0, 0, 0, 0.05);
}

.shadow-hover {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.shadow-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.api-key-box {
    background: #0b0f14;
    color: #4af626;
    border-radius: 8px;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    word-break: break-all;
}

.api-key-box code {
    color: inherit;
}

.btn-tech {
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.dropdown-item:hover {
    background-color: #bcc6cc;
}

.dropdown-item:active {
    color: #000;
}

#bookmarksMenu {
    width: auto !important;
    min-width: fit-content !important;
    padding-right: 0.5rem;
}

#bookmarksMenu .text-muted.disabled {
    text-align: center;
    padding: 0 1rem;
}

.footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.3);
}

.sublime-card {
    max-width: 720px;
    margin: 0 auto;
}

.sublime-card__label {
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

.sublime-card__panel {
    padding: 20px 24px;
    border-radius: 12px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.35),
        0 10px 10px -5px rgba(0, 0, 0, 0.05);
}

.sublime-card__panel pre {
    margin: 0;
    overflow: hidden;
}

.sublime-card__panel pre + pre {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sublime-card__panel code {
    font-family: "JetBrains Mono", "Fira Code", "Menlo", monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e5e7eb;
    white-space: pre-wrap;
    word-break: break-word;
}

.cmd { color: #38bdf8; font-weight: 600; }
.param { color: #e5e7eb; }
.placeholder { color: #c084fc; }
.string { color: #86efac; }
.key { color: #9ca3af; }
.number { color: #e5e7eb; }

.sublime-card__note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
}

.tm {
    font-size: 0.65em;
    vertical-align: super;
    margin-left: 1px;
}
