 :root {
    --jonime-bg: #06080d;
    --jonime-panel: rgba(9, 14, 24, 0.76);
    --jonime-panel-strong: rgba(12, 18, 31, 0.9);
    --jonime-border: rgba(117, 144, 176, 0.2);
    --jonime-blue: #19b7ff;
    --jonime-blue-strong: #0077ff;
    --jonime-amber: #ffb000;
    --jonime-orange: #ff4a1c;
}

body {
    background-color: var(--jonime-bg);
    color: #f1f5f9;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 72px),
        linear-gradient(180deg, rgba(255,176,0,0.08) 0%, transparent 28%),
        linear-gradient(125deg, rgba(25,183,255,0.16) 0%, rgba(7,10,16,0) 42%),
        linear-gradient(245deg, rgba(255,74,28,0.11) 0%, rgba(7,10,16,0) 34%),
        linear-gradient(180deg, #111820 0%, #06080d 44%, #04060a 100%);
    background-attachment: fixed;
    min-height: 100vh;
}
::selection { background: rgba(25, 183, 255, 0.35); color: #ffffff; }
a, button { -webkit-tap-highlight-color: transparent; }
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid rgba(25, 183, 255, 0.85);
    outline-offset: 3px;
}
.glass {
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(10, 14, 22, 0.94), rgba(5, 8, 14, 0.88));
    border: 1px solid var(--jonime-border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26), inset 0 -1px 0 rgba(25,183,255,0.1);
}
.brand-logo,
.footer-logo {
    display: block;
    background-image: url("/logo.png");
    background-repeat: no-repeat;
    background-position: 50% 46%;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));
}
.brand-logo {
    width: 216px;
    height: 56px;
    flex: 0 0 auto;
    background-size: 350px auto;
}
.footer-logo {
    width: 190px;
    height: 48px;
    background-size: 306px auto;
    opacity: 0.78;
}
.card-hover {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.32);
    border-color: rgba(25, 183, 255, 0.72);
}
.loader { border: 3px solid rgba(255,255,255,0.1); border-top: 3px solid var(--jonime-blue); border-right-color: var(--jonime-amber); border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
iframe { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.nav-link { position: relative; padding-bottom: 0.35rem; }
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--jonime-blue), var(--jonime-amber));
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 180ms ease, transform 180ms ease;
}
.nav-link.active { color: var(--jonime-blue); font-weight: 800; }
.nav-link.active::after,
.nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}
.custom-check:checked + label { background: linear-gradient(135deg, var(--jonime-blue), var(--jonime-amber)); color: #06111e; border-color: rgba(255, 176, 0, 0.85); box-shadow: 0 10px 22px rgba(25, 183, 255, 0.18); }
.custom-check { display: none; }

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: clamp(1.35rem, 2vw, 1.875rem);
    font-weight: 900;
    letter-spacing: 0;
}

.content-panel {
    background: linear-gradient(180deg, rgba(11, 17, 28, 0.82), rgba(7, 10, 17, 0.72));
    border: 1px solid var(--jonime-border);
    border-radius: 1rem;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.empty-state {
    min-height: 18rem;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(148, 163, 184, 0.24);
    border-radius: 1rem;
    background: rgba(9, 14, 24, 0.54);
    color: #94a3b8;
    text-align: center;
    padding: 2rem;
}

img {
    background: rgba(7, 10, 16, 0.92);
}

@media (max-width: 767px) {
    .brand-logo {
        width: 176px;
        height: 48px;
        background-size: 292px auto;
    }

    .card-hover:hover {
        transform: none;
        box-shadow: none;
    }
}
