
:root {
    --sh-height: var(--fe-header-height);
    --sh-height-shrink: 48px;
    --sh-bg: #0f172a;
    --sh-bg-blur: rgba(15,23,42,0.92);
    --sh-text: #e2e8f0;
    --sh-text-muted: #94a3b8;
    --sh-border: rgba(255,255,255,0.06);
    --sh-hover: rgba(255,255,255,0.08);
    --sh-logo-h: 32px;
    --sh-logo-h-shrink: 24px;
    --sh-nav-active: var(--fe-color-primary);
    --sh-z: 300;
    --sh-ticker-bg: #1e293b;
    --sh-ticker-accent: var(--fe-color-primary);
    --sh-ticker-text: #cbd5e1;
    --sh-ticker-h: 36px;
    
    --sh-total-height: calc(var(--sh-ticker-h) + var(--sh-height) + 42px);
    --sh-search-bg: rgba(15,23,42,0.97);
    --sh-mobile-bg: #0f172a;
    --sh-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --sh-shadow-shrink: 0 2px 12px rgba(0,0,0,0.18);
    --sh-transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
    --sh-bg: #0b1120;
    --sh-bg-blur: rgba(11,17,32,0.94);
    --sh-text: #e2e8f0;
    --sh-text-muted: #94a3b8;
    --sh-border: rgba(255,255,255,0.05);
    --sh-hover: rgba(255,255,255,0.06);
    --sh-ticker-bg: #0f172a;
    --sh-ticker-text: #94a3b8;
    --sh-search-bg: rgba(11,17,32,0.98);
    --sh-mobile-bg: #0b1120;
    --sh-shadow: 0 1px 3px rgba(0,0,0,0.3);
    --sh-shadow-shrink: 0 2px 12px rgba(0,0,0,0.4);
}

.sh-sticky-wrap {
    position: sticky;
    top: 0;
    z-index: var(--sh-z);
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-bottom: -1px;
}
.sh-sticky-wrap > * {
    margin: 0;
    flex-shrink: 0;
}

.sh-top-header {
    margin: 0;
    display: flex;
    align-items: center;
    height: var(--sh-ticker-h);
    background: var(--sh-ticker-bg);
    border-bottom: 1px solid transparent;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.sh-top-header .sh-ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: var(--fe-main-max);
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 var(--fe-spacing-lg);
}

.sh-top-header .sh-ticker-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--sh-ticker-accent);
    border-radius: 4px;
    margin-right: 0.75rem;
    white-space: nowrap;
    line-height: 1;
}
.sh-top-header .sh-ticker-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: sh-ticker-pulse 1.5s ease-in-out infinite;
}

.sh-ticker-badge--short { display: none; }
@media (max-width: 768px) {
    .sh-ticker-badge--full { display: none !important; }
    .sh-ticker-badge--short { display: inline-flex !important; }
}
@media (min-width: 769px) {
    .sh-ticker-badge--short { display: none !important; }
}

.sh-top-header .sh-ticker-track {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
    mask-image: linear-gradient(to right, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
}

.sh-top-header .sh-ticker-items {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: sh-ticker-scroll var(--sh-ticker-speed, 30s) linear infinite;
    will-change: transform;
}

.sh-top-header:hover .sh-ticker-items {
    animation-play-state: paused;
}

.sh-top-header .sh-ticker-items a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--sh-ticker-text);
    text-decoration: none;
    transition: color 0.15s;
}
.sh-top-header .sh-ticker-items a:hover {
    color: #fff;
}
.sh-top-header .sh-ticker-items a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--sh-ticker-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.sh-main-header {
    margin: 0;
    background: var(--sh-bg);
    border-bottom: 1px solid var(--sh-border);
    transition: background var(--sh-transition), box-shadow var(--sh-transition), height var(--sh-transition);
}

.sh-main-header.sh-topbar--shrink {
    background: var(--sh-bg-blur);
    -webkit-backdrop-filter: blur(12px) saturate(1.5);
    backdrop-filter: blur(12px) saturate(1.5);
    box-shadow: var(--sh-shadow-shrink);
}

.sh-main-header .sh-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: var(--fe-main-max);
    margin: 0 auto;
    padding: 0 var(--fe-spacing-lg);
    height: var(--sh-height);
    transition: height var(--sh-transition), padding var(--sh-transition);
}

.sh-main-header.sh-topbar--shrink .sh-inner {
    height: var(--sh-height-shrink);
}

.sh-main-header .sh-logo-img {
    height: var(--sh-logo-h);
    transition: transform var(--sh-transition);
    transform-origin: left center;
    will-change: transform;
    transform: scale(1);
}
.sh-main-header.sh-topbar--shrink .sh-logo-img {
    transform: scale(0.75);
}

.sh-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: var(--fe-main-max);
    margin: 0 auto;
    padding: 0 var(--fe-spacing-lg);
    height: var(--sh-height);
    transition: height var(--sh-transition), padding var(--sh-transition);
}

.sh-topbar--shrink .sh-inner {
    height: var(--sh-height-shrink);
}

.sh-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.15s;
}
.sh-logo:hover { opacity: 0.85; }
.sh-logo:focus-visible { outline: 2px solid var(--sh-text); outline-offset: 4px; border-radius: 2px; }

.sh-logo::before,
.sh-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--sh-logo-url);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}
.sh-logo::before {
    filter: hue-rotate(195deg) saturate(2.5) brightness(1.15);
    animation: sh-logo-glitch-1 2.2s infinite linear alternate;
}
.sh-logo::after {
    filter: hue-rotate(300deg) saturate(1.8) brightness(1.1);
    animation: sh-logo-glitch-2 2.2s infinite linear alternate;
}
@keyframes sh-logo-glitch-1 {
    0%, 80%   { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
    82%       { clip-path: inset(15% 0 55% 0); transform: translate(-4px, 2px); }
    84%       { clip-path: inset(55% 0 15% 0); transform: translate(4px, -2px); }
    86%       { clip-path: inset(10% 0 65% 0); transform: translate(-3px, 3px); }
    88%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
}
@keyframes sh-logo-glitch-2 {
    0%, 82%   { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
    84%       { clip-path: inset(55% 0 10% 0); transform: translate(4px, -2px); }
    86%       { clip-path: inset(25% 0 45% 0); transform: translate(-4px, 2px); }
    88%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .sh-logo::before,
    .sh-logo::after {
        animation: none;
        display: none;
    }
}

.sh-logo-img {
    position: relative;
    z-index: 1;
    height: var(--sh-logo-h);
    width: auto;
    display: block;
    transition: transform var(--sh-transition);
    transform-origin: left center;
    will-change: transform;
    transform: scale(1);
}

.sh-topbar--shrink .sh-logo-img {
    transform: scale(0.75);
}

.sh-nav {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.sh-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sh-text-muted);
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--fe-radius);
    transition: color 0.15s, background 0.15s;
}
.sh-nav a:hover {
    color: var(--sh-text);
    background: var(--sh-hover);
}
.sh-nav a:focus-visible {
    outline: 2px solid var(--sh-text);
    outline-offset: 2px;
}

.sh-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sh-nav-active);
    border-radius: 1px;
    transition: width 0.2s ease, left 0.2s ease;
}
.sh-nav a:hover::after,
.sh-nav a[aria-current="page"]::after {
    width: calc(100% - 1.25rem);
    left: 0.625rem;
}
.sh-nav a[aria-current="page"] {
    color: #fff;
}

.sh-nav-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4px;
    height: 4px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--fe-color-primary, #ef4444);
    margin: 0 0.15rem;
    opacity: 0.85;
}

.sh-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sh-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--sh-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--fe-radius);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.sh-dropdown-trigger:hover {
    color: var(--sh-text);
    background: var(--sh-hover);
}
.sh-dropdown-trigger:focus-visible {
    outline: 2px solid var(--sh-text);
    outline-offset: 2px;
}

.sh-dropdown-arrow {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}
.sh-dropdown[aria-expanded="true"] .sh-dropdown-arrow,
.sh-dropdown.is-open .sh-dropdown-arrow {
    transform: rotate(180deg);
}

.sh-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 180px;
    background: var(--sh-bg);
    border: 1px solid var(--sh-border);
    border-radius: var(--fe-radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    padding: 0.375rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
    z-index: 300;
}

@media (hover: hover) and (min-width: 769px) {
    .sh-dropdown:hover .sh-dropdown-menu,
    .sh-dropdown:focus-within .sh-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .sh-dropdown:hover .sh-dropdown-arrow,
    .sh-dropdown:focus-within .sh-dropdown-arrow {
        transform: rotate(180deg);
    }
}

.sh-dropdown.is-open .sh-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sh-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sh-text-muted);
    text-decoration: none;
    transition: color 0.12s, background 0.12s;
    white-space: nowrap;
}
.sh-dropdown-menu a::after { display: none; }
.sh-dropdown-menu a:hover {
    color: #fff;
    background: var(--sh-hover);
}
.sh-dropdown-menu a[aria-current="page"] {
    color: #fff;
    background: var(--sh-hover);
}
[data-theme="dark"] .sh-dropdown-menu {
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.sh-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.sh-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--sh-text-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: color 0.15s, background 0.15s;
}
.sh-icon-btn:hover {
    color: var(--sh-text);
    background: var(--sh-hover);
}
.sh-icon-btn:focus-visible {
    outline: 2px solid var(--sh-accent, var(--sh-text));
    outline-offset: 2px;
}
.sh-icon-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Diğer sh-icon-btn ile aynı: daima dolu daire görünmesin */
.sh-theme-btn {
    background: transparent;
    color: var(--sh-text-muted);
}
.sh-theme-btn:hover {
    color: var(--sh-text);
    background: var(--sh-hover);
}
[data-theme="dark"] .sh-theme-btn {
    background: transparent;
    color: var(--sh-text-muted);
}
[data-theme="dark"] .sh-theme-btn:hover {
    color: var(--sh-text);
    background: var(--sh-hover);
}
.sh-theme-btn .sh-icon-sun { display: none; }
.sh-theme-btn .sh-icon-moon { display: block; }
[data-theme="dark"] .sh-theme-btn .sh-icon-sun { display: block; }
[data-theme="dark"] .sh-theme-btn .sh-icon-moon { display: none; }
.sh-theme-label {
    font-size: 0.8125rem;
    color: var(--sh-text-muted);
}

.sh-action-link {
    display: inline-flex;
    align-items: center;
    padding: 0.3125rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sh-text-muted);
    text-decoration: none;
    border-radius: var(--fe-radius);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.sh-action-link:hover {
    color: var(--sh-text);
    background: var(--sh-hover);
}
.sh-action-link--admin {
    color: #93c5fd;
    font-weight: 600;
}
.sh-action-link--admin:hover {
    color: #bfdbfe;
}

.sh-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15vh var(--fe-spacing-lg) 5rem;
    background: var(--sh-search-bg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.sh-search-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.sh-search-overlay-inner {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.sh-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0;
    transform: translateY(12px);
    transition: transform 0.25s ease;
}
.sh-search-overlay[aria-hidden="false"] .sh-search-form {
    transform: translateY(0);
}

.sh-search-input {
    flex: 1;
    height: 56px;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: inherit;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--fe-radius-lg);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.sh-search-input::placeholder { color: var(--sh-text-muted); }
.sh-search-input:focus {
    border-color: var(--fe-color-primary);
    box-shadow: 0 0 0 3px rgba(226,27,51,0.25);
}

.sh-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--fe-color-primary);
    border: none;
    border-radius: var(--fe-radius-lg);
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.sh-search-submit:hover { background: var(--fe-color-primary-hover); }

.sh-search-close {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255,255,255,0.06);
    color: var(--sh-text-muted);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    transition: background 0.15s, color 0.15s;
}
.sh-search-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.sh-search-close svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.sh-search-hint {
    position: absolute;
    bottom: 15vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8125rem;
    color: var(--sh-text-muted);
    pointer-events: none;
}
.sh-search-hint kbd {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    font-family: inherit;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    margin: 0 0.125rem;
}

.sh-search-suggestions {
    transform: translateY(12px);
    transition: transform 0.25s ease;
}
.sh-search-overlay[aria-hidden="false"] .sh-search-suggestions {
    transform: translateY(0);
}
.sh-search-suggestions__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}
.sh-search-suggestions__col {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--fe-radius-lg);
    padding: 1rem 1.25rem;
}
.sh-search-suggestions__title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sh-text-muted);
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sh-search-suggestions__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sh-search-suggestions__list li {
    margin: 0;
    padding: 0;
}
.sh-search-suggestions__list li + li { margin-top: 0.375rem; }
.sh-search-suggestions__link {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.35rem 0;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    line-height: 1.35;
}
.sh-search-suggestions__link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
    .sh-search-hint { display: none; }
    .sh-search-suggestions__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .sh-search-overlay {
        padding: 5rem var(--fe-spacing-md) 2rem;
        align-items: flex-start;
    }
    .sh-search-overlay-inner {
        padding-top: 0.5rem;
    }
}

.sh-ad-slot {
    
}
.sh-ad-slot .ad-slot { margin: 0; padding: 0.5rem var(--fe-spacing-lg); max-width: var(--fe-main-max); margin: 0 auto; }

@keyframes sh-ticker-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes sh-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sh-alt-header {
    margin: 0;
    position: relative;
    z-index: calc(var(--sh-z) - 1);
    background: var(--sh-ticker-bg);
    border-bottom: 1px solid var(--sh-border);
    height: 42px;
    min-height: 42px;
    width: 100%;
    overflow: visible;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: height 0.22s ease-out, min-height 0.22s ease-out, border-width 0.18s ease-out;
}

.sh-alt-header.is-scroll-hidden {
    height: 0;
    min-height: 0;
    border-bottom-width: 0;
    overflow: hidden;
    pointer-events: none;
}

.sh-alt-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: var(--fe-main-max);
    margin: 0 auto;
    padding: 0 var(--fe-spacing-lg);
    height: 100%;
}

.sh-alt-nav {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.sh-alt-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.35rem 0.6rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sh-ticker-text);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}
.sh-alt-nav a:hover,
.sh-alt-nav-link:hover {
    color: #fff;
    background: var(--sh-hover);
}
.sh-alt-nav a[aria-current="page"],
.sh-alt-nav-link[aria-current="page"] {
    color: var(--sh-nav-active);
}

.sh-alt-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sh-alt-nav-icon svg {
    display: block;
    vertical-align: middle;
}

.sh-alt-header .sh-dropdown--alt .sh-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.35rem 0.6rem;
    font-size: 0.8125rem;
    color: var(--sh-ticker-text);
}
.sh-alt-header .sh-dropdown--alt .sh-dropdown-trigger .sh-alt-nav-icon {
    margin-right: 0;
}
.sh-alt-header .sh-dropdown--alt .sh-dropdown-trigger .sh-dropdown-arrow {
    margin-left: 0.15rem;
}
.sh-alt-header .sh-dropdown--alt .sh-dropdown-trigger:hover {
    color: #fff;
    background: var(--sh-hover);
}

.sh-alt-date {
    font-size: 0.75rem;
    color: var(--sh-text-muted);
    white-space: nowrap;
}

.sh-mobile-btn {
    display: none; 
}

.sh-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 16px;
    position: relative;
}
.sh-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    position: absolute;
    left: 0;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.sh-hamburger span:nth-child(1) { top: 0; }
.sh-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.sh-hamburger span:nth-child(3) { bottom: 0; }

.sh-mobile-btn[aria-expanded="true"] .sh-hamburger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.sh-mobile-btn[aria-expanded="true"] .sh-hamburger span:nth-child(2) {
    opacity: 0;
}
.sh-mobile-btn[aria-expanded="true"] .sh-hamburger span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.sh-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    z-index: 310;
    background: var(--sh-mobile-bg);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sh-mobile-panel[aria-hidden="false"] {
    transform: translateX(0);
    pointer-events: auto;
}
.sh-mobile-panel[aria-hidden="true"] {
    pointer-events: none;
}

.sh-mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 309;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.sh-mobile-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    right: min(300px, 85vw);
}

.sh-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 1.25rem;
    border-bottom: 1px solid var(--sh-border);
    margin-bottom: 0.5rem;
}
.sh-mobile-logo {
    display: block;
    height: 24px;
    width: auto;
    object-fit: contain;
    align-self: center;
}

.sh-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--sh-text-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}
.sh-mobile-close:hover { background: var(--sh-hover); color: var(--sh-text); }
.sh-mobile-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.sh-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
}

.sh-mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    padding-left: calc(1.25rem + 3px);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sh-text-muted);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
    border-left: 3px solid transparent;
}
.sh-mobile-nav-link:hover {
    color: #fff;
    background: var(--sh-hover);
}
.sh-mobile-nav-link[aria-current="page"] {
    color: #fff;
    background: var(--sh-hover);
    border-left-color: var(--sh-nav-active);
}

.sh-mobile-nav-link--sub {
    padding-left: 1.75rem;
    font-size: 0.875rem;
}

.sh-mobile-divider {
    height: 1px;
    background: var(--sh-border);
    margin: 0.75rem 1.25rem;
    flex-shrink: 0;
}

.sh-mobile-section-label {
    display: block;
    padding: 0.5rem 1.25rem 0.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sh-text-muted);
    pointer-events: none;
}
.sh-mobile-section-label--sub {
    padding-top: 0.625rem;
    padding-left: 1.5rem;
    font-size: 0.625rem;
    opacity: 0.9;
}

.sh-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    flex-shrink: 0;
    border-top: 1px solid var(--sh-border);
}

body.sh-no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .sh-main-header.sh-topbar--shrink {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .sh-logo::before,
    .sh-logo::after {
        display: none;
        animation: none;
    }
    .sh-inner {
        padding: 0 var(--fe-spacing);
    }

    .sh-nav { display: none; }

    .sh-actions { margin-left: auto; }

    .sh-action-link { display: none; }

    .sh-mobile-btn { display: inline-flex; }

    .sh-top-header .sh-ticker-inner { padding: 0 var(--fe-spacing); }
    .sh-top-header .sh-ticker-badge { padding: 0.2rem 0.5rem; font-size: 0.625rem; margin-right: 0.5rem; }

    .sh-alt-header { height: auto; min-height: 32px; padding: 0; }
    .sh-alt-header.is-scroll-hidden { height: 0; min-height: 0; }
    .sh-alt-inner { flex-wrap: wrap; padding: 0.22rem 0.5rem; min-height: 0; }
    .sh-alt-date { display: none; }

    .sh-search-form { padding: 0 var(--fe-spacing); }
    .sh-search-input { height: 48px; font-size: 1rem; }
    .sh-search-submit { height: 48px; padding: 0 1rem; }
}

@media (max-width: 480px) {
    .sh-inner { gap: 0.5rem; }
    .sh-logo-img { height: 26px; }
    .sh-topbar--shrink .sh-logo-img { transform: scale(0.846); }
}

.sh-no-transition,
.sh-no-transition * {
    transition: none !important;
}
