:root {
    --bg: #f5f7fb;
    --card: #ffffff;
    --text: #101828;
    --muted: #667085;
    --line: #e5e7eb;
    --soft: #f9fafb;
    --primary: #111827;
    --primary-2: #2563eb;
    --green: #16a34a;
    --red: #dc2626;
    --amber: #f59e0b;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.05);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body::selection {
    background: #111827;
    color: #fff;
}

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

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #f5f7fb 100%);
}

.orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(20px);
    opacity: .22;
}

.orb-one {
    left: -120px;
    top: 120px;
    background: #2563eb;
}

.orb-two {
    right: -110px;
    top: 260px;
    background: #f59e0b;
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 40px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #111827, #2563eb);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
    font-weight: 900;
}

.brand strong {
    display: block;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topnav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: #475467;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.topnav a:hover {
    background: #f2f4f7;
    color: #111827;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    gap: 22px;
    margin-bottom: 22px;
}

.hero-content,
.hero-panel,
.market-card,
.risk-box,
.stat-card {
    border: 1px solid rgba(229, 231, 235, 0.88);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-content {
    min-height: 360px;
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.hero-content::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 68%);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.hero p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn,
.header-action,
.small-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.header-action:hover,
.small-action:hover {
    transform: translateY(-1px);
}

.btn-primary,
.header-action,
.small-action {
    background: #111827;
    color: #fff;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16);
}

.btn-primary:hover,
.header-action:hover,
.small-action:hover {
    background: #0b1220;
}

.btn-light {
    background: #fff;
    color: #111827;
    border: 1px solid var(--line);
}

.btn-light:hover {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.hero-panel {
    border-radius: var(--radius);
    padding: 22px;
}

.hero-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.hero-panel-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-panel-head strong {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--green);
    background: rgba(22, 163, 74, 0.08);
    font-size: 12px;
    text-transform: uppercase;
}

.hero-metric {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.hero-metric span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
}

.hero-metric strong {
    display: block;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.hero-panel-foot {
    padding-top: 16px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.stat-card {
    border-radius: var(--radius);
    padding: 22px;
}

.stat-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.stat-card strong {
    display: block;
    font-size: 30px;
    letter-spacing: -0.05em;
}

.stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.stat-date {
    font-size: 17px !important;
    letter-spacing: -0.02em !important;
}

.text-up {
    color: var(--green);
}

.text-down {
    color: var(--red);
}

.market-card {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 22px;
}

.market-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #fcfcfd);
}

.market-card-head h2 {
    margin: 0 0 6px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.market-card-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

th,
td {
    text-align: left;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    vertical-align: middle;
}

th {
    background: #f8fafc;
    color: #667085;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
}

tbody tr {
    transition: background .2s ease;
}

tbody tr:hover {
    background: #fcfcfd;
}

tbody tr:last-child td {
    border-bottom: 0;
}

.coin-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
}

.coin-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, #fef3c7, #dbeafe);
    border: 1px solid rgba(229, 231, 235, 0.9);
    font-weight: 900;
}

.coin-cell strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.coin-cell small,
.date-text {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.symbol-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f2f4f7;
    color: #344054;
    font-size: 12px;
    font-weight: 900;
}

.price-cell {
    font-weight: 900;
    color: #111827;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.badge.is-up {
    color: var(--green);
    background: rgba(22, 163, 74, 0.08);
}

.badge.is-down {
    color: var(--red);
    background: rgba(220, 38, 38, 0.08);
}

.badge.is-flat {
    color: var(--muted);
    background: #f2f4f7;
}

.risk-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-radius: var(--radius);
    padding: 22px 24px;
    border-color: rgba(245, 158, 11, 0.28);
    background: linear-gradient(180deg, #fffbeb, rgba(255, 255, 255, 0.9));
}

.risk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid rgba(245, 158, 11, 0.28);
    font-weight: 900;
}

.risk-box h3 {
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.risk-box p {
    margin: 0;
    color: #78350f;
    line-height: 1.75;
    font-size: 14px;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar {
        align-items: flex-start;
        border-radius: var(--radius);
        flex-direction: column;
    }

    .topnav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
        padding: 14px 0 28px;
    }

    .hero-content {
        min-height: auto;
        padding: 26px 22px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn,
    .small-action {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .market-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .risk-box {
        flex-direction: column;
    }
}
.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
        #f5f7fb;
}

.auth-card {
    width: min(100%, 430px);
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.auth-brand strong {
    display: block;
    font-size: 16px;
}

.auth-brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.auth-card h1 {
    margin: 0 0 8px;
    font-size: 30px;
    letter-spacing: -0.05em;
}

.auth-card p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.auth-form,
.admin-form {
    display: grid;
    gap: 16px;
}

.auth-form label,
.admin-form label {
    display: grid;
    gap: 8px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.auth-form input,
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    padding: 0 14px;
    outline: none;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.auth-form input:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.alert {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
}

.alert-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.alert-success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.admin-hero {
    grid-template-columns: 1fr;
}

.admin-code-box {
    margin: 24px;
    padding: 18px;
    border-radius: 16px;
    border: 1px dashed rgba(37, 99, 235, 0.35);
    background: #f8fafc;
    color: #111827;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-all;
    font-weight: 800;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.action-row a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f2f4f7;
    color: #344054;
    font-size: 12px;
    font-weight: 900;
}

.action-row a:hover {
    background: #e5e7eb;
}

.action-row .danger-link {
    color: #b42318;
    background: #fef3f2;
}

.form-card {
    border: 1px solid rgba(229, 231, 235, 0.88);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: 26px;
}

.form-card-head {
    margin-bottom: 24px;
}

.form-card-head h1 {
    margin: 0 0 8px;
    font-size: 32px;
    letter-spacing: -0.05em;
}

.form-card-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.check-label {
    align-self: end;
    min-height: 46px;
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.check-label input {
    width: 16px !important;
    min-height: auto !important;
    height: 16px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .auth-card,
    .form-card {
        padding: 22px;
    }
}
.coin-name-link {
    display: inline-block;
}

.coin-name-link:hover strong {
    color: var(--primary-2);
}

.coin-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 22px;
    margin-bottom: 22px;
}

.coin-detail-main,
.coin-side-card,
.chart-shell {
    border: 1px solid rgba(229, 231, 235, 0.88);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
}

.coin-detail-main {
    padding: clamp(26px, 4vw, 44px);
}

.coin-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.coin-avatar-lg {
    width: 62px;
    height: 62px;
    font-size: 24px;
}

.coin-title-row h1 {
    margin: 0 0 8px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.coin-title-row p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.coin-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.coin-price-row strong {
    display: block;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.065em;
}

.coin-detail-text {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.coin-side-card {
    padding: 22px;
}

.side-metric {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.side-metric:first-child {
    padding-top: 0;
}

.side-metric:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.side-metric span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.side-metric strong {
    display: block;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.side-metric .small-strong {
    font-size: 15px;
    letter-spacing: -0.02em;
}

.chart-shell {
    margin: 24px;
    padding: 16px;
    overflow: hidden;
}

.chart-shell canvas {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (max-width: 980px) {
    .coin-detail-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .coin-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .coin-price-row strong {
        font-size: 34px;
    }

    .chart-shell {
        margin: 16px;
        padding: 10px;
    }
}
.reason-cell {
    max-width: 360px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.signal-note {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.side-metric strong .badge {
    min-width: 92px;
}
.auth-bottom-link {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.auth-bottom-link a {
    color: var(--primary-2);
    font-weight: 900;
}

.coin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.admin-form select {
    appearance: none;
}

@media (max-width: 640px) {
    .coin-actions {
        flex-direction: column;
    }

    .coin-actions .btn {
        width: 100%;
    }
}
.paper-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr);
    gap: 22px;
    margin-bottom: 22px;
}

.paper-risk {
    margin: 0;
    min-height: 100%;
}

.inline-sell-form {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 220px;
}

.inline-sell-form input {
    width: 110px;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 10px;
    outline: none;
    font-size: 12px;
}

.inline-sell-form button {
    min-height: 34px;
    border: 0;
    border-radius: 999px;
    padding: 0 12px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.inline-sell-form button:hover {
    background: #0b1220;
}

@media (max-width: 980px) {
    .paper-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .inline-sell-form {
        flex-direction: column;
        align-items: stretch;
    }

    .inline-sell-form input,
    .inline-sell-form button {
        width: 100%;
    }
}
.full-label {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.full-label textarea {
    width: 100%;
    min-height: 130px;
    resize: vertical;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    padding: 14px;
    outline: none;
    font-size: 14px;
    line-height: 1.7;
    font-family: Arial, Helvetica, sans-serif;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.full-label textarea:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.settings-cron-list {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.cron-item {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.cron-item strong {
    font-size: 14px;
    color: #111827;
}

.cron-item code {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    word-break: break-all;
}

.cron-item small {
    color: var(--muted);
    font-size: 12px;
}
/* -------------------------------------------------------
   Aşama 11 - Zarif Landing & Piyasa Tasarım Rötuşları
------------------------------------------------------- */

.page-shell {
    width: min(1160px, calc(100% - 32px));
}

.topbar {
    position: sticky;
    top: 14px;
    z-index: 20;
}

.landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 18px;
    margin-bottom: 18px;
}

.landing-hero-main,
.landing-hero-side,
.feature-card,
.info-band,
.site-footer {
    border: 1px solid rgba(229, 231, 235, 0.82);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
    backdrop-filter: blur(14px);
    border-radius: 20px;
}

.landing-hero-main {
    min-height: 330px;
    padding: clamp(28px, 4vw, 44px);
    position: relative;
    overflow: hidden;
}

.landing-hero-main::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 270px;
    height: 270px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.11), transparent 68%);
    pointer-events: none;
}

.landing-hero-main h1 {
    max-width: 720px;
    margin: 0 0 14px;
    font-size: clamp(32px, 4.4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.052em;
    color: #101828;
}

.landing-hero-main p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.hero-mini-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.hero-mini-notes span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(229, 231, 235, 0.9);
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.landing-hero-side {
    padding: 20px;
}

.live-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.78);
}

.live-card-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.live-card-head strong {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--green);
    background: rgba(22, 163, 74, 0.08);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.live-metric {
    padding: 17px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.78);
}

.live-metric span,
.live-metric-grid span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.live-metric strong,
.live-metric-grid strong {
    display: block;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.live-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.78);
}

.live-metric-grid > div {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(229, 231, 235, 0.74);
}

.live-card-foot {
    padding-top: 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.soft-stats {
    margin-bottom: 18px;
}

.soft-stats .stat-card {
    padding: 19px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.045);
}

.soft-stats .stat-card strong {
    font-size: 26px;
}

.feature-section {
    margin-bottom: 18px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 16px;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3.2vw, 34px);
    letter-spacing: -0.045em;
    line-height: 1.16;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    padding: 20px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(229, 231, 235, 0.86);
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    letter-spacing: -0.025em;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.info-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 24px;
}

.info-band h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: -0.04em;
}

.info-band p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.market-card {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.market-card-head h2 {
    font-size: 22px;
    letter-spacing: -0.035em;
}

.elegant-table-wrap {
    scrollbar-width: thin;
}

.elegant-table-wrap::-webkit-scrollbar {
    height: 8px;
}

.elegant-table-wrap::-webkit-scrollbar-track {
    background: #f8fafc;
}

.elegant-table-wrap::-webkit-scrollbar-thumb {
    background: #d0d5dd;
    border-radius: 999px;
}

th,
td {
    padding: 14px 16px;
}

.coin-avatar {
    width: 36px;
    height: 36px;
    font-size: 13px;
}

.badge {
    min-width: 74px;
    padding: 7px 10px;
    font-size: 12px;
}

.symbol-pill {
    min-height: 28px;
    font-size: 11px;
}

.refined-risk {
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.045);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
}

.site-footer strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer nav a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(229, 231, 235, 0.86);
    color: #475467;
    font-size: 12px;
    font-weight: 800;
}

.site-footer nav a:hover {
    color: #111827;
    background: #f2f4f7;
}

@media (max-width: 1040px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-hero {
        grid-template-columns: 1fr;
    }

    .info-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .topbar {
        top: 8px;
    }

    .landing-hero-main,
    .landing-hero-side,
    .feature-card,
    .info-band,
    .site-footer {
        border-radius: 18px;
    }

    .landing-hero-main {
        min-height: auto;
        padding: 24px 20px;
    }

    .landing-hero-main h1 {
        font-size: 31px;
        letter-spacing: -0.045em;
    }

    .hero-mini-notes {
        gap: 6px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .info-band .btn {
        width: 100%;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer nav {
        width: 100%;
    }

    .site-footer nav a {
        flex: 1;
        justify-content: center;
    }
}
/* -------------------------------------------------------
   Mobil Hamburger Menü
------------------------------------------------------- */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 760px) {
    .topbar {
        display: grid !important;
        grid-template-columns: 1fr auto;
        align-items: center !important;
        gap: 12px;
        border-radius: 22px;
        padding: 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand small {
        font-size: 11px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .topnav {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 12px;
        margin-top: 2px;
        border-top: 1px solid rgba(229, 231, 235, 0.85);
        overflow: visible;
    }

    .topbar.menu-open .topnav {
        display: flex;
    }

    .topnav a {
        width: 100%;
        justify-content: flex-start;
        min-height: 40px;
        padding: 0 12px;
        border-radius: 12px;
        background: #f8fafc;
        color: #344054;
    }

    .topnav a:hover {
        background: #eef2ff;
        color: #111827;
    }

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

    .topbar.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

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