@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bricolage+Grotesque:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --bg-card: #ffffff;
    --text: #0d0d0c;
    --text-muted: #6a6a66;
    --text-faint: #a5a5a0;
    --text-hero: rgba(255, 255, 255, 0.65);
    --accent: #22c55e;
    --border: #e6e6e2;
    --border-strong: #ccccc8;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max: 1160px;
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font: 'Inter', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.18s;
    --t-mid: 0.32s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 999;
    border-radius: 8px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.wrap {
    width: min(100% - 2.5rem, var(--max));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 8, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
}

.header-end {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-mark img,
.logo-mark svg {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.logo-text {
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.03em;
}

.nav {
    position: relative;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: transparent;
    color: #ffffff;
    border-radius: 8px;
    padding: 0.58rem 0.88rem;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t-fast) ease;
}

.nav-toggle:hover {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.87rem;
    font-weight: 500;
    padding: 0.44rem 0.75rem;
    border-radius: 6px;
    transition: color var(--t-fast) ease, background var(--t-fast) ease;
    letter-spacing: -0.01em;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus-visible {
    color: #ffffff;
    background: rgba(34, 197, 94, 0.12);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.52);
    font: inherit;
    font-size: 0.87rem;
    font-weight: 500;
    padding: 0.44rem 0.75rem;
    border-radius: 6px;
    transition: color var(--t-fast) ease, background var(--t-fast) ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
    color: #ffffff;
    background: rgba(34, 197, 94, 0.12);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    width: 260px;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: rgba(17, 17, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--t-fast) ease, transform var(--t-fast) ease, visibility var(--t-fast) ease;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: #22c55e;
    transition: color var(--t-fast) ease;
}

.resources-dropdown .nav-dropdown-menu {
    width: 260px;
    padding: 0.4rem;
    gap: 0.15rem;
}

.resources-dropdown .nav-dropdown-menu a {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background var(--t-fast) ease;
    transform: none;
}

.resources-dropdown .nav-dropdown-menu a:hover {
    background: rgba(34, 197, 94, 0.08);
    transform: none;
}

.resources-dropdown .nav-dropdown-menu a:hover .menu-icon {
    background: none;
    color: #4ade80;
}

.resources-dropdown .menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    flex: 1;
    min-width: 0;
}

.resources-dropdown .menu-icon {
    align-self: center;
    flex-shrink: 0;
    margin-top: 0;
    color: #22c55e !important;
}

.resources-dropdown .menu-content strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.resources-dropdown .menu-content .menu-description {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    line-height: 1.45;
    font-weight: 400;
}

.lang-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: transparent;
    color: rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    min-height: 2.25rem;
    padding: 0.42rem 0.82rem;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t-fast) ease;
    letter-spacing: 0.02em;
}

.lang-btn:hover,
.lang-btn:focus-visible {
    color: #ffffff;
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: 178px;
    background: #111110;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 0.38rem;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.lang-dropdown.is-open .lang-dropdown-menu {
    display: flex;
}

.lang-dropdown-menu .lang-btn {
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.52);
    padding: 0.6rem 0.88rem;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-align: left;
}

.lang-dropdown-menu .lang-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #ffffff;
}

.login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: color var(--t-fast) ease, border-color var(--t-fast) ease, background var(--t-fast) ease;
}

.login-link:hover,
.login-link:focus-visible {
    color: var(--accent);
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.08);
}

.blog-hero {
    background: #080808;
    padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    position: relative;
    overflow: hidden;
}

.blog-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.blog-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.5rem;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(34, 197, 94, 0.32);
    background: rgba(34, 197, 94, 0.10);
}

.blog-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
    flex-shrink: 0;
    animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

.blog-hero-title {
    margin: 0 0 1.2rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #ffffff;
    white-space: pre-line;
}

.blog-hero-lead {
    margin: 0;
    max-width: 520px;
    color: var(--text-hero);
    font-size: 1.05rem;
    line-height: 1.68;
}

.blog-controls {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 61px;
    z-index: 80;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
}

.blog-controls-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-faint);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--bg-soft);
    font: inherit;
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--t-fast) ease;
}

.search-input:focus {
    outline: none;
    border-color: #22c55e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.filter-tabs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-tab {
    padding: 0.44rem 0.88rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: all var(--t-fast) ease;
    font-family: inherit;
}

.filter-tab:hover {
    border-color: rgba(34, 197, 94, 0.35);
    color: var(--text);
    background: rgba(34, 197, 94, 0.06);
}

.filter-tab.active {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.blog-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.blog-layout {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr 320px;
        gap: 3.5rem;
    }
}

.post-featured {
    display: grid;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
    text-decoration: none;
    color: inherit;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .post-featured {
        grid-template-columns: 1.2fr 1fr;
    }
}

.post-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
    border-color: rgba(34, 197, 94, 0.22);
}

.post-featured-img {
    background: linear-gradient(135deg, #080808 0%, #0f2d1a 100%);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-featured-img .img-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.post-featured-img .img-icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.post-featured-body {
    padding: 2.25rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.post-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
    margin-bottom: 1rem;
}

.badge-security {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-guide {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-privacy {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-news {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-tech {
    background: rgba(20, 184, 166, 0.1);
    color: #0f766e;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.post-featured-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
}

.post-featured-excerpt {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 1.25rem;
    transition: gap var(--t-fast) ease;
}

.post-featured:hover .post-read-more {
    gap: 0.65rem;
}

.posts-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(34, 197, 94, 0.22);
}

.post-card:hover::before {
    opacity: 1;
}

.post-card-img {
    height: 170px;
    background: linear-gradient(135deg, #080808 0%, #0f1f2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-card-img .img-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 22px 22px;
}

.post-card-img-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.post-card-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-title {
    margin: 0.65rem 0 0.6rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: var(--text);
}

.post-card-excerpt {
    margin: 0 0 1.1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
    margin-top: auto;
}

.post-card-arrow {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--t-fast) ease;
}

.post-card:hover .post-card-arrow {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.sidebar-card-title {
    margin: 0 0 1.1rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: color var(--t-fast) ease;
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-item:hover .popular-title {
    color: var(--accent);
}

.popular-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--border-strong);
    line-height: 1;
    flex-shrink: 0;
    min-width: 28px;
}

.popular-title {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text-muted);
    transition: all var(--t-fast) ease;
    text-decoration: none;
}

.tag-pill:hover {
    border-color: rgba(34, 197, 94, 0.35);
    color: var(--accent);
    background: rgba(34, 197, 94, 0.06);
}

.site-footer {
    padding: 2.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #080808;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2.5rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--t-fast) ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--t-fast) ease, transform var(--t-fast) ease;
}

.social-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.84rem;
}

@media (max-width: 640px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-width: 180px;
        padding: 0.4rem;
        border-radius: 14px;
        background: #111110;
        border: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }

    .nav-list.is-open {
        display: flex;
    }

    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 2.6rem;
        padding: 0.65rem 0.9rem;
        border-radius: 8px;
    }

    .nav-list a:hover,
    .nav-list a:focus-visible {
        color: #ffffff;
        background: rgba(34, 197, 94, 0.12);
        box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.22);
    }
}