*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #cc1a25;
    --red-dark: #a8141d;
    --navy: #0c1a2e;
    --navy-2: #142036;
    --navy-3: #1c2d47;
    --gold: #c8952a;
    --bg: #f5f4f0;
    --bg-card: #ffffff;
    --text: #111111;
    --text-2: #3a3a3a;
    --text-3: #6b6b6b;
    --border: #e0ddd6;
    --fh: 'Merriweather', Georgia, serif;
    --fb: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --r: 4px;
    --sh: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.07);
    --sh2: 0 8px 32px rgba(0,0,0,.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fb);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
}

svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
}

/* SON DAKİKA BANDI */
.breaking-bar {
    background: var(--navy);
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.breaking-shell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.breaking-label {
    height: 100%;
    background: linear-gradient(135deg, var(--red), #ef233c);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 12px 0 24px rgba(0,0,0,.18);
    z-index: 2;
}

.breaking-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: breakingBlink 1.1s infinite;
}

@keyframes breakingBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .25;
        transform: scale(.75);
    }
}

.breaking-track-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.breaking-track-wrap::before,
.breaking-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
}

.breaking-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.breaking-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
}

.breaking-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: breakingScroll 45s linear infinite;
}

.breaking-track:hover {
    animation-play-state: paused;
}

@keyframes breakingScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.breaking-item {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.84);
    font-size: 12px;
    font-weight: 600;
    padding: 0 34px;
    height: 36px;
    transition: color .2s;
}

.breaking-item:hover {
    color: #fff;
}

.breaking-item::after {
    content: "•";
    color: var(--red);
    margin-left: 34px;
    font-size: 18px;
    line-height: 1;
}

/* HEADER */
.top-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.top-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-only-logo {
    gap: 0;
}

.brand-logo-only {
    width: auto;
    height: 64px;
    max-width: 310px;
    object-fit: contain;
    display: block;
}

.brand-mark {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: var(--r);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-size: 24px;
    font-weight: 900;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

/* HAVA DURUMU */
.header-weather {
    display: none;
    align-items: center;
    gap: 11px;
    width: 350px;
    max-width: 350px;
    min-height: 58px;
    padding: 8px 15px 8px 10px;
    border-radius: 999px;
    color: var(--navy);
    border: 1px solid rgba(12, 26, 46, .12);
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 193, 7, .30), transparent 34%),
        radial-gradient(circle at 92% 78%, rgba(37, 99, 235, .15), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,246,241,.98));
    box-shadow:
        0 10px 28px rgba(12,26,46,.08),
        inset 0 1px 0 rgba(255,255,255,.9);
    white-space: nowrap;
    overflow: hidden;
}

.weather-visual {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7d6, #e8f2ff);
    border: 1px solid rgba(12,26,46,.08);
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(12,26,46,.10);
}

.weather-loading-icon {
    animation: weatherPulse 1.1s ease-in-out infinite;
}

@keyframes weatherPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(.92);
        opacity: .72;
    }
}

.weather-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.16;
}

.weather-info strong {
    display: block;
    max-width: 265px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.weather-info small {
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: 270px;
    margin-top: 5px;
    color: var(--text-3);
    font-size: 11px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.weather-info small span {
    color: #d97706;
    font-weight: 950;
}

.weather-info small b {
    color: var(--red);
    font-weight: 950;
}

.weather-info small em {
    color: #475569;
    font-style: normal;
    font-weight: 800;
}

.weather-icon {
    font-size: 16px;
    line-height: 1;
}

.weather-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-date {
    font-size: 11px;
    color: var(--text-3);
    text-align: right;
    line-height: 1.45;
    white-space: nowrap;
}

.header-date strong {
    display: block;
    font-size: 12px;
    color: var(--text-2);
    font-weight: 800;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.search-box:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(204,26,37,.08);
}

.search-box input {
    width: 210px;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 9px 14px;
    font-family: var(--fb);
    font-size: 13px;
    color: var(--text);
}

.search-box button {
    background: var(--red);
    border: 0;
    color: #fff;
    height: 38px;
    width: 42px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.search-box button:hover {
    background: var(--red-dark);
}

/* NAV */
.main-nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.nav-inner {
    display: flex;
    align-items: stretch;
    overflow: visible;
}

.nav-item {
    position: relative;
    overflow: visible;
}

.nav-link {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,.76);
    letter-spacing: .045em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all .18s;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    border-bottom-color: var(--red);
    background: rgba(255,255,255,.055);
}

.nav-link .arr {
    font-size: 8px;
    opacity: .42;
    margin-left: 2px;
    transition: transform .18s;
}

.nav-item:hover .arr {
    transform: rotate(180deg);
}

.nav-dd {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--bg-card);
    border-top: 2px solid var(--red);
    box-shadow: var(--sh2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: all .2s;
    z-index: 1100;
}

.nav-item:hover .nav-dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dd a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    font-size: 12px;
    font-weight: 650;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    transition: all .15s;
}

.nav-dd a:last-child {
    border-bottom: 0;
}

.nav-dd a:hover {
    background: var(--bg);
    color: var(--red);
    padding-left: 20px;
}

.rss-link {
    color: #f97316 !important;
    font-weight: 900 !important;
}

.nav-mega {
    position: absolute;
    top: 100%;
    left: 0;
    width: 620px;
    background: var(--bg-card);
    border-top: 2px solid var(--red);
    box-shadow: var(--sh2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: all .2s;
    z-index: 1100;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 7px 0;
}

.nav-item:hover .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mega a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 650;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    transition: all .15s;
}

.nav-mega a::before {
    content: "›";
    color: var(--red);
    font-size: 16px;
    font-weight: 900;
}

.nav-mega a:hover {
    background: var(--bg);
    color: var(--red);
}

/* MOBILE NAV */
.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    gap: 10px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #fff;
    font-family: var(--fh);
    font-weight: 900;
    font-size: 16px;
}

.mobile-logo img {
    height: 38px;
    width: auto;
    max-width: 145px;
    object-fit: contain;
}

.mobile-weather {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 145px;
    min-height: 34px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
}

.mobile-weather small {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 900;
}

.mob-search {
    flex: 1;
    max-width: 210px;
    display: flex;
    background: rgba(255,255,255,.09);
    border-radius: 999px;
    overflow: hidden;
}

.mob-search input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
}

.mob-search input::placeholder {
    color: rgba(255,255,255,.45);
}

.mob-search button {
    background: transparent;
    border: 0;
    color: #fff;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.ham-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 7px;
    -webkit-tap-highlight-color: transparent;
}

.ham-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .28s;
}

.ham-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ham-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
    display: flex;
    flex-direction: column;
    background: var(--navy-2);
    height: 0;
    overflow: hidden;
    transition: height .3s cubic-bezier(.4,0,.2,1);
}

.mob-menu.open {
    height: auto;
    max-height: 75vh;
    overflow-y: auto;
}

.mob-menu a {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 650;
    border-bottom: 1px solid rgba(255,255,255,.06);
    -webkit-tap-highlight-color: transparent;
}

.mob-menu a.mob-sub {
    padding-left: 30px;
}

.mob-cat {
    padding: 7px 18px;
    font-size: 10px;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .13em;
    background: rgba(0,0,0,.24);
}

/* RESPONSIVE */
@media (min-width: 1200px) {
    .container {
        max-width: 1360px;
    }

    .brand-logo-only {
        height: 68px;
        max-width: 320px;
    }

    .nav-link {
        padding: 0 16px;
    }
}

@media (max-width: 1240px) {
    .header-weather {
        width: 310px;
        max-width: 310px;
    }

    .weather-info strong {
        max-width: 220px;
    }

    .weather-info small {
        max-width: 225px;
    }

    .weather-info small em {
        display: none;
    }
}

@media (max-width: 1120px) {
    .header-weather {
        width: 245px;
        max-width: 245px;
        min-height: 48px;
        padding: 6px 12px 6px 8px;
    }

    .weather-visual {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 18px;
    }

    .weather-info strong {
        max-width: 175px;
        font-size: 12px;
    }

    .weather-info small {
        max-width: 175px;
        font-size: 10px;
    }

    .weather-info small span {
        display: none;
    }

    .search-box input {
        width: 160px;
    }

    .nav-link {
        padding: 0 10px;
        font-size: 11px;
    }
}

@media (max-width: 980px) {
    .header-weather {
        display: none !important;
    }

    .search-box input {
        width: 150px;
    }
}

@media (max-width: 860px) {
    .top-header-inner {
        min-height: 72px;
    }

    .brand-logo-only {
        height: 52px;
        max-width: 220px;
    }

    .header-date {
        display: none;
    }
}

@media (max-width: 680px) {
    .breaking-bar {
        height: 34px;
    }

    .breaking-label {
        font-size: 9px;
        padding: 0 12px;
    }

    .breaking-item {
        font-size: 11px;
        padding: 0 24px;
    }

    .top-header-inner {
        justify-content: center;
        padding: 11px 0;
    }

    .brand-logo-only {
        height: 48px;
        max-width: 200px;
    }

    .header-right {
        display: none;
    }

    .nav-inner {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-weather {
        display: none;
    }
}

@media (max-width: 460px) {
    .brand-logo-only {
        height: 44px;
        max-width: 180px;
    }

    .mobile-logo img {
        height: 34px;
        max-width: 115px;
    }

    .mobile-weather {
        font-size: 11px;
        min-width: 30px;
        height: 30px;
        padding: 0 7px;
    }

    .mob-search {
        max-width: 145px;
    }
}

@media (max-width: 380px) {
    .mob-search {
        display: none;
    }

    .mobile-logo img {
        max-width: 150px;
    }
}

/* MEMBER AREA */
.member-area {
    position: relative;
    flex-shrink: 0;
}

.member-trigger {
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 4px 12px 4px 5px;
    cursor: pointer;
    color: var(--text);
    transition: all .2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.member-trigger:hover {
    border-color: rgba(204,26,37,.35);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ef233c);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    overflow: hidden;
    flex-shrink: 0;
}

.member-avatar.large {
    width: 42px;
    height: 42px;
    font-size: 16px;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
    max-width: 110px;
}

.member-info strong {
    font-size: 12px;
    font-weight: 900;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-info small {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-3);
    margin-top: 3px;
}

.member-arrow {
    font-size: 8px;
    color: var(--text-3);
}

.member-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 255px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--sh2);
    padding: 8px;
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .18s ease;
}

.member-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.member-dropdown-head {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
}

.member-dropdown-head strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--text);
}

.member-dropdown-head small {
    display: block;
    max-width: 165px;
    font-size: 11px;
    color: var(--text-3);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-dropdown a,
.member-dropdown button {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-2);
    cursor: pointer;
    text-align: left;
    transition: all .16s ease;
    font-family: var(--fb);
}

.member-dropdown a:hover,
.member-dropdown button:hover {
    background: var(--bg);
    color: var(--red);
}

.member-primary-link {
    background: rgba(204,26,37,.08) !important;
    color: var(--red) !important;
}

.member-dropdown-line {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

.member-logout {
    color: var(--red) !important;
}

.guest-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.guest-actions button {
    height: 38px;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: all .18s ease;
}

.guest-login {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border) !important;
}

.guest-login:hover {
    border-color: var(--red) !important;
    color: var(--red);
}

.guest-register {
    background: var(--red);
    color: #fff;
}

.guest-register:hover {
    background: var(--red-dark);
}

/* AUTH MODAL */
.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12,26,46,.55);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: none;
}

.auth-modal-backdrop.open {
    display: block;
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 3010;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.auth-modal.open {
    display: flex;
}

.auth-modal-card {
    width: 100%;
    max-width: 410px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(0,0,0,.28);
    padding: 24px;
    position: relative;
}

.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--bg);
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
}

.auth-head {
    margin-bottom: 18px;
    padding-right: 30px;
}

.auth-head strong {
    display: block;
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
}

.auth-head span {
    display: block;
    margin-top: 5px;
    color: var(--text-3);
    font-size: 13px;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-2);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.auth-form input {
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: 13px;
    padding: 0 13px;
    outline: 0;
    font-size: 14px;
    color: var(--text);
}

.auth-form input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(204,26,37,.08);
}

.auth-submit {
    height: 44px;
    border: 0;
    border-radius: 13px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.auth-submit:disabled {
    opacity: .7;
    cursor: wait;
}

.auth-switch {
    border: 0;
    background: transparent;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.auth-message {
    display: none;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 800;
}

.auth-message.success {
    display: block;
    background: #ecfdf5;
    color: #047857;
}

.auth-message.error {
    display: block;
    background: #fef2f2;
    color: #b91c1c;
}

/* MOBILE MEMBER */
.mobile-member-box {
    padding: 12px;
    background: rgba(0,0,0,.16);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-member-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px 12px;
}

.mobile-member-head strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.mobile-member-head small {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 700;
}

.mobile-member-box a,
.mobile-member-box button {
    width: 100%;
    display: flex;
    border: 0;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.84);
    padding: 11px 12px;
    margin-top: 6px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--fb);
    cursor: pointer;
}

.mobile-logout {
    color: #fecaca !important;
}

.mobile-guest-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mobile-guest-actions button {
    border: 0;
    border-radius: 13px;
    height: 40px;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,.10);
    font-family: var(--fb);
}

.mobile-guest-actions button:last-child {
    background: var(--red);
}

@media (max-width: 1180px) {
    .member-info {
        display: none;
    }

    .member-trigger {
        padding-right: 8px;
    }
}

@media (max-width: 980px) {
    .member-area {
        display: none;
    }
}