:root {
    --navy-950: #061526;
    --navy-900: #071b33;
    --navy-800: #0b2949;
    --blue-700: #0b5cab;
    --blue-600: #1672c4;
    --blue-100: #e8f3fc;
    --red-600: #d52b1e;
    --red-500: #e43a2d;
    --green-700: #12845b;
    --green-100: #e5f7ef;
    --orange-100: #fff3e5;
    --ink: #162334;
    --muted: #637083;
    --line: #dfe5ec;
    --soft: #f3f6f9;
    --white: #fff;
    --shadow: 0 18px 50px rgba(4, 24, 45, .09);
    --radius: 16px;
    --container: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--blue-100); color: var(--navy-900); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-900); line-height: 1.12; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 999;
    padding: 10px 14px; background: var(--white); color: var(--navy-900);
    border-radius: 6px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.utility-bar { background: var(--navy-950); color: #c7d2df; font-size: 12px; }
.utility-bar__inner { min-height: 34px; display: flex; align-items: center; gap: 26px; }
.utility-bar__country { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__country img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.utility-bar__time { margin-right: auto; }
.utility-bar nav { display: flex; align-items: center; gap: 20px; }
.utility-bar a:hover { color: var(--white); }
.language-switcher { position: relative; }
.language-switcher summary { display: flex; align-items: center; gap: 8px; min-width: 0; padding: 3px 0; border: 0; color: var(--white); font-weight: 650; text-align: left; list-style: none; cursor: pointer; }
.language-switcher summary::-webkit-details-marker { display: none; }
.language-globe { width: 18px; height: 18px; display: inline-block; position: relative; flex: 0 0 18px; border: 1.7px solid currentColor; border-radius: 50%; }
.language-globe::before { content: ""; position: absolute; left: 2px; right: 2px; top: 7px; border-top: 1.4px solid currentColor; }
.language-globe::after { content: ""; position: absolute; left: 5px; right: 5px; top: -1.7px; bottom: -1.7px; border-left: 1.4px solid currentColor; border-right: 1.4px solid currentColor; border-radius: 50%; }
.language-switcher__menu { position: absolute; z-index: 100; top: calc(100% + 8px); right: 0; min-width: 170px; padding: 7px; background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
.language-switcher__menu a { display: block; padding: 8px 10px; border-radius: 6px; white-space: nowrap; }
.language-switcher__menu a:hover, .language-switcher__menu a[aria-current="page"] { color: var(--blue-700); background: var(--blue-100); }
html[dir="rtl"] .language-switcher__menu { right: auto; left: 0; }
html[dir="rtl"] .site-nav, html[dir="rtl"] .utility-bar__inner, html[dir="rtl"] .site-header__main { direction: rtl; }

.site-header { background: var(--white); position: relative; z-index: 50; }
.site-header__main { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark {
    width: 42px; height: 42px; position: relative;
    display: grid; place-items: center;
    color: var(--white); background: var(--red-600); border-radius: 10px;
    box-shadow: 0 8px 18px rgba(213, 43, 30, .2);
}
.brand__mark::before, .brand__mark::after { content: ""; position: absolute; background: var(--white); opacity: .2; }
.brand__mark::before { width: 22px; height: 4px; }
.brand__mark::after { width: 4px; height: 22px; }
.brand__mark span { position: relative; z-index: 1; font-weight: 900; font-size: 19px; }
.brand__text { color: var(--navy-900); font-size: 26px; line-height: .95; font-weight: 850; letter-spacing: -.8px; }
.brand__text > span { color: var(--red-600); }
.brand__text small { display: block; margin-top: 6px; color: var(--muted); font-size: 8px; line-height: 1; letter-spacing: 1.45px; text-transform: uppercase; }

.header-search { margin-left: auto; width: min(390px, 40%); display: flex; position: relative; }
.header-search input {
    width: 100%; height: 44px; padding: 0 48px 0 16px;
    color: var(--ink); background: var(--soft); border: 1px solid transparent; border-radius: 10px;
    outline: none; transition: .2s ease;
}
.header-search input:focus { background: var(--white); border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-100); }
.header-search button { position: absolute; right: 3px; top: 3px; width: 39px; height: 38px; border: 0; color: var(--navy-900); background: transparent; font-size: 24px; }

.site-nav-wrap { border-top: 1px solid #edf1f5; border-bottom: 1px solid var(--line); }
.site-nav { min-height: 52px; display: flex; align-items: center; gap: 34px; }
.site-nav a { height: 52px; display: flex; align-items: center; position: relative; color: #354356; font-size: 14px; font-weight: 700; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--red-600); transform: scaleX(0); transition: .2s; }
.site-nav a:hover, .site-nav a.is-active { color: var(--red-600); }
.site-nav a.is-active::after { transform: scaleX(1); }
.site-nav__badge { margin-left: auto; padding: 4px 8px; color: var(--green-700); background: var(--green-100); border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.site-nav__badge::before { content: ""; width: 6px; height: 6px; display: inline-block; margin-right: 5px; background: var(--green-700); border-radius: 50%; }
.site-nav__badge.is-reference { color: #8a5a0a; background: #fff3d8; }
.site-nav__badge.is-reference::before { background: #d28a10; }
.site-nav__badge.is-offline { color: var(--red-600); background: #fff0ef; }
.site-nav__badge.is-offline::before { background: var(--red-600); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; }
.nav-toggle svg { width: 22px; height: 22px; display: block; margin: auto; fill: none; stroke: var(--navy-900); stroke-width: 2; stroke-linecap: round; }

.ticker { color: var(--white); background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.08); }
.ticker__inner { min-height: 48px; display: flex; align-items: stretch; overflow: hidden; }
.ticker__label { display: flex; align-items: center; gap: 8px; padding-right: 24px; color: #c8d5e2; font-size: 11px; font-weight: 800; letter-spacing: .9px; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.12); }
.ticker__label span { width: 7px; height: 7px; background: #3ed397; border-radius: 50%; box-shadow: 0 0 0 4px rgba(62,211,151,.12); }
.ticker__track { min-width: 0; display: flex; flex: 1; overflow-x: auto; scrollbar-width: none; }
.ticker__track::-webkit-scrollbar { display: none; }
.ticker__item { min-width: 190px; display: flex; align-items: center; gap: 9px; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.08); font-size: 12px; white-space: nowrap; }
.ticker__item:hover { background: rgba(255,255,255,.05); }
.ticker__item strong { color: var(--white); font-size: 12px; }
.ticker__item span { color: #c6d0db; }
.ticker__item em { margin-left: auto; font-size: 11px; font-style: normal; font-weight: 800; }

.is-positive { color: var(--green-700) !important; }
.is-negative { color: var(--red-600) !important; }
.is-neutral { color: var(--muted) !important; }
.ticker .is-positive { color: #56dda8 !important; }
.ticker .is-negative { color: #ff8d84 !important; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to right, black, transparent 85%); }
.hero::after { content: ""; position: absolute; width: 560px; height: 560px; right: -180px; top: -310px; border: 120px solid rgba(22,114,196,.12); border-radius: 50%; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; min-height: 575px; padding-top: 55px; padding-bottom: 55px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--blue-700); font-size: 11px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }
.eyebrow > span { width: 18px; height: 2px; background: var(--red-600); }
.eyebrow--light { color: #8fbfe8; }
.hero .eyebrow { color: #92bfe7; }
.hero__content h1 { margin-bottom: 24px; color: var(--white); font-size: clamp(44px, 5.2vw, 72px); letter-spacing: -3px; }
.hero__content h1 em { color: #5ca8e8; font-style: normal; }
.hero__content > p { max-width: 640px; margin-bottom: 32px; color: #c7d4e1; font-size: 19px; line-height: 1.65; }
.hero__actions { display: flex; gap: 12px; }
.button { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 9px; font-size: 14px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--red-600); box-shadow: 0 10px 25px rgba(213,43,30,.22); }
.button--primary:hover, .button--red:hover { background: var(--red-500); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }
.button--ghost:hover { background: rgba(255,255,255,.09); }
.button--red { color: var(--white); background: var(--red-600); }
.button--light { color: var(--navy-900); background: var(--white); }
.trust-row { display: flex; gap: 22px; margin-top: 34px; color: #91a5ba; font-size: 12px; }
.trust-row b { color: #57d8a6; }

.converter-card { position: relative; padding: 28px; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; box-shadow: 0 28px 70px rgba(0,0,0,.25); }
.converter-card::before { content: ""; position: absolute; inset: -7px 7px 7px -7px; z-index: -1; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; }
.converter-card__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.converter-card__head .eyebrow { margin-bottom: 5px; }
.converter-card h2 { margin: 0; font-size: 24px; }
.live-status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; color: var(--green-700); background: var(--green-100); border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.live-status i, .market-status i { width: 7px; height: 7px; background: var(--green-700); border-radius: 50%; }
.live-status.is-reference { color: #8a5a0a; background: #fff3d8; }
.live-status.is-offline { color: var(--red-600); background: #fff0ef; }
.converter-field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .6px; }
.converter-input-row { min-height: 66px; display: flex; align-items: stretch; background: var(--soft); border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.converter-input-row input, .converter-input-row output { min-width: 0; flex: 1; display: flex; align-items: center; padding: 0 16px; color: var(--navy-900); background: transparent; border: 0; outline: none; font-size: 25px; font-weight: 800; }
.converter-input-row select { width: 116px; padding: 0 8px; color: var(--navy-900); background: #e9eef3; border: 0; border-left: 1px solid var(--line); font-weight: 800; outline: none; }
.converter-currency-select { width: 136px; flex: 0 0 136px; display: flex; align-items: center; gap: 8px; padding: 0 8px 0 10px; background: #e9eef3; border-left: 1px solid var(--line); }
.converter-currency-select img { width: 28px; height: 20px; flex: 0 0 28px; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px rgba(7, 34, 56, .12); }
.converter-input-row .converter-currency-select select { width: 100%; min-width: 0; height: 100%; padding: 0 18px 0 0; background: transparent; border: 0; font-weight: 800; }
.converter-input-row--result { background: #f1f7fc; border-color: #cfe2f2; }
.converter-input-row--result output { color: var(--blue-700); }
.converter-swap { width: 36px; height: 36px; display: grid; place-items: center; margin: 10px auto -2px; position: relative; z-index: 2; color: var(--blue-700); background: var(--white); border: 1px solid var(--line); border-radius: 50%; font-size: 18px; }
.converter-swap:hover { border-color: var(--blue-600); transform: rotate(180deg); transition: .25s; }
.converter-rate { margin-top: 16px; color: var(--navy-900); font-size: 14px; font-weight: 800; }
.converter-note { margin: 4px 0 0; color: var(--muted); font-size: 11px; }

.quick-stats { position: relative; z-index: 3; background: var(--white); box-shadow: 0 8px 30px rgba(4,24,45,.08); }
.quick-stats__grid { min-height: 106px; display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-stat { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 17px 24px; border-right: 1px solid var(--line); }
.quick-stat:first-child { border-left: 1px solid var(--line); }
.quick-stat:hover { background: var(--soft); }
.quick-stat__icon { width: 39px; height: 39px; display: grid; place-items: center; background: var(--soft); border-radius: 50%; overflow: hidden; }
.quick-stat__icon img { width: 27px; height: 19px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(7, 34, 56, .12); }
.quick-stat span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .5px; }
.quick-stat strong { display: block; margin-top: 2px; color: var(--navy-900); font-size: 19px; }
.quick-stat em { font-size: 11px; font-style: normal; font-weight: 800; }

.ad-slot { height: 92px; margin-top: 40px; margin-bottom: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #9da8b3; background: #f7f8fa; border: 1px dashed #cfd6de; font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.ad-slot strong { margin-top: 4px; color: #b4bdc7; font-size: 11px; }

.section { padding: 78px 0; }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: var(--navy-900); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-heading .eyebrow { margin-bottom: 8px; }
.section-heading h2 { margin-bottom: 8px; font-size: clamp(29px, 3vw, 38px); letter-spacing: -1.2px; }
.section-heading p { margin: 0; color: var(--muted); }
.section-heading--compact { align-items: center; margin-bottom: 20px; }
.section-heading--compact h2 { margin: 0; font-size: 25px; }
.text-link { color: var(--blue-700); font-size: 13px; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link--large { flex-shrink: 0; padding-bottom: 7px; border-bottom: 1px solid #b7d2e9; font-size: 14px; }

.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.panel-toolbar { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 20px; background: #f9fafb; border-bottom: 1px solid var(--line); }
.market-status { display: flex; align-items: center; gap: 10px; }
.market-status i { flex-shrink: 0; box-shadow: 0 0 0 4px var(--green-100); }
.market-status strong, .market-status small { display: block; }
.market-status strong { color: var(--navy-900); font-size: 12px; }
.market-status small { color: var(--muted); font-size: 10px; }
.table-search { width: 245px; height: 39px; display: flex; align-items: center; gap: 8px; padding: 0 12px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.table-search b { color: var(--muted); font-size: 20px; }
.table-search input { width: 100%; border: 0; outline: 0; color: var(--ink); }
.market-table-wrap { width: 100%; overflow-x: auto; }
.market-table { width: 100%; border-collapse: collapse; text-align: left; }
.market-table th { padding: 12px 18px; color: #7a8795; background: #f5f7f9; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .55px; text-transform: uppercase; }
.market-table td { height: 71px; padding: 10px 18px; border-bottom: 1px solid #edf0f3; font-size: 13px; }
.market-table tbody tr:last-child td { border-bottom: 0; }
.market-table tbody tr:hover { background: #f9fbfd; }
.currency-name { display: flex; align-items: center; gap: 11px; min-width: 205px; }
.currency-flag { width: 37px; height: 37px; display: grid; place-items: center; background: var(--soft); border: 1px solid #e9edf1; border-radius: 50%; overflow: hidden; }
.currency-flag img { width: 27px; height: 19px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(7, 34, 56, .12); }
.currency-name strong, .currency-name small { display: block; }
.currency-name strong { color: var(--navy-900); font-size: 13px; }
.currency-name small { color: var(--muted); font-size: 10px; }
.number { color: #2d3a49; font-variant-numeric: tabular-nums; font-weight: 750; }
.change-pill { display: inline-flex; min-width: 82px; justify-content: center; padding: 4px 7px; border-radius: 5px; font-size: 10px; font-weight: 800; font-variant-numeric: tabular-nums; }
.change-pill.is-positive { background: var(--green-100); }
.change-pill.is-negative { background: #fff0ef; }
.row-link { width: 31px; height: 31px; display: grid; place-items: center; color: var(--blue-700); background: var(--blue-100); border-radius: 50%; font-weight: 800; }
.panel-footnote { padding: 12px 18px; color: var(--muted); background: #f9fafb; border-top: 1px solid var(--line); font-size: 10px; }

@keyframes rate-up {
    0% { color: var(--green-700); background: rgba(18, 132, 91, .22); }
    100% { background: transparent; }
}
@keyframes rate-down {
    0% { color: var(--red-600); background: rgba(213, 43, 30, .18); }
    100% { background: transparent; }
}
.rate-flash-up, .rate-flash-down { border-radius: 4px; }
.rate-flash-up { animation: rate-up 1.05s ease-out; }
.rate-flash-down { animation: rate-down 1.05s ease-out; }

.news-layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 30px; }
.featured-story { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 35px rgba(4,24,45,.07); }
.featured-story__image, .news-card__image { position: relative; display: block; overflow: hidden; }
.featured-story__image { aspect-ratio: 16 / 8.8; }
.featured-story__image img, .news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.featured-story:hover img, .news-card:hover img { transform: scale(1.035); }
.featured-story__image > span, .news-card__image > span { position: absolute; left: 18px; bottom: 17px; padding: 5px 9px; color: var(--white); background: var(--red-600); border-radius: 4px; font-size: 9px; font-weight: 850; letter-spacing: .7px; text-transform: uppercase; }
.featured-story__body { padding: 28px; }
.news-meta { display: flex; align-items: center; gap: 6px; color: #7f8a98; font-size: 10px; font-weight: 650; }
.featured-story h3 { margin: 10px 0 12px; font-size: 27px; letter-spacing: -.6px; }
.featured-story h3 a:hover, .story-row h3 a:hover, .news-card h3 a:hover { color: var(--blue-700); }
.featured-story p { color: var(--muted); font-size: 14px; }
.story-list { display: flex; flex-direction: column; gap: 14px; }
.story-row { flex: 1; min-height: 137px; display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.story-row > a { overflow: hidden; border-radius: 8px; }
.story-row img { width: 100%; height: 100%; object-fit: cover; }
.story-row__category { color: var(--red-600); font-size: 9px; font-weight: 850; letter-spacing: .6px; text-transform: uppercase; }
.story-row h3 { margin: 6px 0 12px; font-size: 16px; line-height: 1.3; }

.market-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.quote-list { border-top: 2px solid var(--navy-900); }
.quote-list a { min-height: 72px; display: grid; grid-template-columns: 1fr auto 72px; gap: 14px; align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.quote-list a:hover { background: var(--soft); }
.quote-list span b, .quote-list span small { display: block; }
.quote-list span b { color: var(--navy-900); font-size: 13px; }
.quote-list span small { color: var(--muted); font-size: 10px; }
.quote-list strong { color: var(--navy-900); font-size: 14px; font-variant-numeric: tabular-nums; }
.quote-list em { text-align: right; font-size: 11px; font-style: normal; font-weight: 800; }
.risk-note { margin-top: 14px; padding: 13px 15px; color: #87601b; background: var(--orange-100); border-radius: 8px; font-size: 10px; }

.insight-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 90px; align-items: center; }
.insight-grid h2 { color: var(--white); font-size: clamp(34px, 4vw, 50px); letter-spacing: -1.7px; }
.insight-grid > div:first-child p { margin-bottom: 28px; color: #b8c7d6; }
.insight-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.insight-cards a { min-height: 230px; padding: 24px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; transition: .2s; }
.insight-cards a:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.insight-cards span { color: #4f94ce; font-size: 11px; font-weight: 850; }
.insight-cards h3 { margin: 34px 0 13px; color: var(--white); font-size: 18px; }
.insight-cards p { margin: 0; color: #a8b9ca; font-size: 12px; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-grid h2 { font-size: 38px; }
.faq-grid > div:first-child p { color: var(--muted); }
.accordion { border-top: 2px solid var(--navy-900); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 22px 48px 22px 4px; list-style: none; color: var(--navy-900); font-size: 15px; font-weight: 800; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: absolute; right: 8px; top: 20px; font-size: 23px; font-weight: 400; transition: .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 48px 21px 4px; color: var(--muted); font-size: 14px; }

.newsletter { color: var(--white); background: var(--blue-700); }
.newsletter__inner { min-height: 190px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.newsletter h2 { margin: 0 0 6px; color: var(--white); font-size: 29px; }
.newsletter p { margin: 0; color: #c5e0f7; font-size: 13px; }
.newsletter__form { display: flex; gap: 9px; }
.newsletter__form input { width: 285px; height: 47px; padding: 0 14px; color: var(--ink); background: var(--white); border: 0; border-radius: 8px; outline: 0; }

.site-footer { color: #d8c9ed; background: #250a3d; }
.site-footer__top { min-height: 142px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand--footer .brand__text { color: var(--white); }
.brand--footer .brand__text small { color: #cdbce4; }
.language-switcher--footer summary { font-size: 15px; }
.language-switcher--footer .language-switcher__menu { top: calc(100% + 10px); }
.site-footer__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 55px; padding: 10px 0 70px; }
.site-footer h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--white); font-size: 14px; letter-spacing: 0; text-transform: none; }
.site-footer h3 span { font-size: 20px; font-weight: 400; line-height: 1; }
.site-footer__grid a { display: block; margin-bottom: 13px; color: #d8c9ed; font-size: 14px; line-height: 1.45; }
.site-footer a { transition: color .18s ease; }
.site-footer a:hover { color: var(--white); }
.site-footer__bottom { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-top: 1px solid rgba(255,255,255,.17); font-size: 11px; }
.footer-socials { display: flex; align-items: center; gap: 16px; }
.footer-socials span { min-width: 23px; height: 23px; display: grid; place-items: center; color: #d8c9ed; font-size: 16px; font-weight: 800; line-height: 1; }
.footer-socials span[title="LinkedIn"] { font-size: 14px; }
.site-footer__legal { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 20px; color: #d8c9ed; }
.site-footer__legal a, .site-footer__legal span { white-space: nowrap; }

/* Ortak iç sayfa bileşenleri */
.page-hero { padding: 56px 0; color: var(--white); background: var(--navy-900); }
.page-hero__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.page-hero h1 { margin: 6px 0 12px; color: var(--white); font-size: clamp(38px, 5vw, 58px); letter-spacing: -2px; }
.page-hero p { max-width: 720px; margin: 0; color: #bdcbd9; font-size: 17px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; color: #91a6ba; font-size: 11px; }
.breadcrumbs a:hover { color: var(--white); }
.page-content { padding: 60px 0 85px; background: var(--soft); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.sidebar-card h2, .sidebar-card h3 { margin-bottom: 15px; font-size: 18px; }
.sidebar-card p { color: var(--muted); font-size: 12px; }
.sidebar-links a { display: flex; justify-content: space-between; gap: 15px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.sidebar-links a:last-child { border: 0; }
.sidebar-links a:hover { color: var(--blue-700); }
.content-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.content-card + .content-card { margin-top: 24px; }
.content-card h2 { font-size: 27px; }
.content-card p { color: var(--muted); }
.mini-ad { min-height: 250px; display: grid; place-items: center; color: #a4aeb9; background: #f8f9fa; border: 1px dashed #ccd4dc; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.news-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.news-card__image { aspect-ratio: 16 / 9; }
.news-card__body { padding: 21px; }
.news-card h3 { margin: 9px 0 10px; font-size: 20px; }
.news-card p { color: var(--muted); font-size: 13px; }

.article-shell { max-width: 820px; margin: 0 auto; }
.article-header { padding: 55px 0 36px; }
.article-header h1 { margin: 14px 0 18px; font-size: clamp(38px, 5.2vw, 62px); letter-spacing: -2px; }
.article-lead { color: var(--muted); font-size: 20px; line-height: 1.65; }
.article-image { width: min(calc(100% - 40px), 1100px); margin: 0 auto; }
.article-image img { width: 100%; max-height: 580px; object-fit: cover; border-radius: 16px; }
.article-body { padding: 48px 0 80px; }
.article-body p { color: #364557; font-family: Georgia, serif; font-size: 19px; line-height: 1.9; }
.article-body h2 { margin-top: 42px; font-size: 29px; }
.article-disclaimer { margin: 35px 0; padding: 18px 20px; color: #6d5a35; background: var(--orange-100); border-left: 4px solid #d6a03c; font-size: 12px; }
.article-share { display: flex; gap: 9px; margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line); }
.article-share a { padding: 8px 12px; background: var(--soft); border-radius: 6px; font-size: 11px; font-weight: 800; }

.currency-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.rate-hero-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.rate-pair { display: flex; align-items: center; gap: 16px; }
.rate-pair__flags { display: flex; }
.rate-pair__flags span { width: 46px; height: 46px; display: grid; place-items: center; margin-right: -8px; background: var(--soft); border: 3px solid var(--white); border-radius: 50%; overflow: hidden; }
.rate-pair__flags img { width: 31px; height: 22px; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px rgba(7, 34, 56, .12); }
.rate-pair h1, .rate-pair h2 { margin: 0; font-size: 27px; }
.rate-pair p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.rate-big { margin: 28px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rate-big small, .rate-big strong { display: block; }
.rate-big small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .6px; }
.rate-big strong { margin: 5px 0; color: var(--navy-900); font-size: 38px; }
.rate-chart { height: 190px; display: flex; align-items: end; gap: 5px; padding: 18px 5px 0; background: linear-gradient(to bottom, #f6fafe, transparent); border-bottom: 1px solid var(--line); }
.rate-chart span { flex: 1; min-width: 4px; background: linear-gradient(to top, var(--blue-700), #76b7e8); border-radius: 3px 3px 0 0; opacity: .85; }
.rate-chart-labels { display: flex; justify-content: space-between; margin-top: 8px; color: var(--muted); font-size: 9px; }
.rate-source { margin: 10px 0 0; color: var(--muted); font-size: 10px; }
.market-chart-card { padding-top: 2px; }
.chart-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.chart-heading .eyebrow { margin-bottom: 5px; }
.chart-heading h2 { margin: 0; font-size: 22px; }
.chart-period-tabs { display: inline-flex; padding: 3px; background: var(--soft); border: 1px solid var(--line); border-radius: 9px; }
.chart-period-tabs button { min-width: 43px; height: 34px; padding: 0 10px; color: var(--muted); background: transparent; border: 0; border-radius: 6px; font-size: 11px; font-weight: 850; }
.chart-period-tabs button:hover { color: var(--blue-700); }
.chart-period-tabs button.is-active { color: var(--white); background: var(--blue-700); box-shadow: 0 4px 12px rgba(11, 92, 171, .2); }
.chart-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 10px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 9px; }
.chart-summary > div { padding: 11px 13px; background: var(--white); }
.chart-summary small, .chart-summary strong { display: block; }
.chart-summary small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .45px; }
.chart-summary strong { margin-top: 3px; color: var(--navy-900); font-size: 12px; font-variant-numeric: tabular-nums; }
.chart-stage { height: 330px; position: relative; background: #fbfdff; border: 1px solid #e8eef4; border-radius: 11px; overflow: hidden; }
.chart-stage canvas { width: 100%; height: 100%; touch-action: pan-y; }
.chart-loading { position: absolute; inset: 0; display: grid; place-items: center; margin: 0; color: var(--muted); background: #fbfdff; font-size: 12px; }
.chart-tooltip { min-width: 145px; position: absolute; z-index: 3; transform: translateX(-50%); padding: 9px 11px; color: var(--white); background: var(--navy-900); border-radius: 7px; pointer-events: none; box-shadow: 0 10px 25px rgba(4, 24, 45, .18); }
.chart-tooltip strong, .chart-tooltip span { display: block; white-space: nowrap; }
.chart-tooltip strong { font-size: 11px; }
.chart-tooltip span { margin-top: 2px; color: #b9c7d4; font-size: 9px; }
.chart-axis { display: flex; justify-content: space-between; margin-top: 7px; color: var(--muted); font-size: 9px; }
.chart-provider { margin: 8px 0 0; color: var(--muted); font-size: 9px; text-align: right; }
.chart-provider a, .data-attribution a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 2px; }
.period-performance { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 22px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 10px; }
.period-performance > div { padding: 14px; background: var(--white); }
.period-performance small, .period-performance strong { display: block; }
.period-performance small { color: var(--muted); font-size: 9px; }
.period-performance strong { margin-top: 4px; font-size: 13px; font-variant-numeric: tabular-nums; }
.seo-copy { line-height: 1.75; }
.seo-copy h2:not(:first-child) { margin-top: 32px; }
.faq-inline details { border-top: 1px solid var(--line); }
.faq-inline details:last-child { border-bottom: 1px solid var(--line); }
.faq-inline summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 2px; color: var(--navy-900); font-size: 13px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-inline summary::-webkit-details-marker { display: none; }
.faq-inline details p { padding: 0 2px 17px; margin: 0; font-size: 13px; }
.faq-inline details[open] summary span { transform: rotate(45deg); }
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fact { padding: 16px; background: var(--white); }
.fact small, .fact strong { display: block; }
.fact small { color: var(--muted); font-size: 10px; }
.fact strong { margin-top: 4px; color: var(--navy-900); font-size: 14px; }

.crypto-identity { width: 100px; height: 100px; display: grid; place-items: center; align-content: center; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.crypto-identity span { font-size: 34px; font-weight: 850; line-height: 1; }
.crypto-identity small { margin-top: 6px; color: #9fc5e6; font-size: 10px; font-weight: 850; letter-spacing: 1px; }
.crypto-price-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.crypto-price-head .eyebrow { margin-bottom: 5px; }
.crypto-price-head h2 { margin: 0; font-size: 24px; }
.data-status { padding: 5px 9px; border-radius: 999px; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.data-status.is-current { color: var(--green-700); background: var(--green-100); }
.data-status.is-unavailable { color: #8a5a0a; background: #fff3d8; }
.crypto-rate-big { margin-top: 22px; }
.crypto-facts { display: flex; flex-direction: column; }
.crypto-facts > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.crypto-facts > div:last-child { border-bottom: 0; }
.crypto-facts small, .crypto-facts strong { display: block; }
.crypto-facts small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .45px; }
.crypto-facts strong { margin-top: 4px; color: var(--navy-900); font-size: 13px; }
.crypto-market-list { border-top: 2px solid var(--navy-900); }
.crypto-market-row { min-height: 82px; display: grid; grid-template-columns: 42px minmax(125px, 1fr) minmax(110px, .85fr) minmax(145px, 1fr) 74px 32px; gap: 12px; align-items: center; padding: 11px 8px; border-bottom: 1px solid var(--line); }
.crypto-market-row:hover { background: var(--soft); }
.crypto-token-badge { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue-700); background: var(--blue-100); border-radius: 50%; font-size: 14px; font-weight: 900; }
.crypto-market-name b, .crypto-market-name small, .crypto-market-price small, .crypto-market-price strong, .crypto-market-cap small, .crypto-market-cap strong { display: block; }
.crypto-market-name b { color: var(--navy-900); font-size: 13px; }
.crypto-market-name small, .crypto-market-price small, .crypto-market-cap small { color: var(--muted); font-size: 9px; }
.crypto-market-price strong, .crypto-market-cap strong { margin-top: 2px; color: var(--navy-900); font-size: 12px; font-variant-numeric: tabular-nums; }
.crypto-market-row em { text-align: right; font-size: 11px; font-style: normal; font-weight: 850; }
.data-attribution { margin: 12px 0 0; color: var(--muted); font-size: 9px; }

.legal-page { max-width: 850px; }
.legal-page h2 { margin-top: 34px; }
.legal-page li, .legal-page p { color: var(--muted); }

@media (max-width: 1020px) {
    .hero__grid { grid-template-columns: 1fr 420px; gap: 35px; }
    .hero__content h1 { font-size: 50px; }
    .quick-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .quick-stat:nth-child(2) { border-right: 0; }
    .quick-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .story-row { grid-template-columns: 120px 1fr; }
    .insight-grid { grid-template-columns: 1fr; gap: 42px; }
    .content-grid { grid-template-columns: minmax(0, 1fr) 270px; }
    .currency-detail-grid { grid-template-columns: 1fr 330px; }
    .crypto-market-row { grid-template-columns: 42px minmax(115px, 1fr) minmax(105px, .8fr) 70px 32px; }
    .crypto-market-cap { display: none; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .utility-bar__time, .utility-bar nav > a { display: none; }
    .utility-bar nav { display: flex; margin-left: auto; }
    .site-header__main { min-height: 72px; }
    .header-search { display: none; }
    .nav-toggle { display: block; margin-left: auto; }
    .site-nav-wrap { position: relative; }
    .site-nav { display: none; position: absolute; top: 0; left: 0; right: 0; height: auto; min-height: auto; padding: 12px 14px 18px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0; }
    .site-nav.is-open { display: flex; }
    .site-nav a { height: 45px; border-bottom: 1px solid var(--line); }
    .site-nav a::after { display: none; }
    .site-nav__badge { margin: 12px 0 0; align-self: flex-start; }
    .ticker__label { position: sticky; left: 0; z-index: 2; padding-left: 14px; background: var(--navy-900); }
    .hero__grid { grid-template-columns: 1fr; min-height: 0; padding-top: 58px; padding-bottom: 58px; }
    .hero__content { text-align: center; }
    .hero__content > p { margin-inline: auto; }
    .hero__actions, .trust-row { justify-content: center; }
    .converter-card { max-width: 560px; width: 100%; margin-inline: auto; }
    .news-layout, .market-columns, .faq-grid, .content-grid, .currency-detail-grid { grid-template-columns: 1fr; }
    .story-row { min-height: 140px; }
    .insight-cards { grid-template-columns: repeat(3, 1fr); }
    .newsletter__inner { grid-template-columns: 1fr; gap: 20px; padding-top: 38px; padding-bottom: 38px; }
    .site-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 42px; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 22px; padding: 28px 0; }
    .site-footer__legal { justify-content: flex-start; }
    .page-hero__grid { grid-template-columns: 1fr; }
    .crypto-identity { display: none; }
}

@media (max-width: 600px) {
    .brand__text { font-size: 23px; }
    .brand__mark { width: 38px; height: 38px; }
    .ticker__item { min-width: 170px; }
    .hero__grid { gap: 42px; }
    .hero__content h1 { font-size: 42px; letter-spacing: -2px; }
    .hero__content > p { font-size: 16px; }
    .hero__actions { flex-direction: column; }
    .trust-row { flex-wrap: wrap; gap: 8px 15px; }
    .converter-card { padding: 20px; }
    .converter-input-row input, .converter-input-row output { font-size: 21px; }
    .converter-input-row select { width: 105px; }
    .converter-currency-select { width: 124px; flex-basis: 124px; gap: 6px; padding-left: 8px; }
    .converter-currency-select img { width: 25px; height: 18px; flex-basis: 25px; }
    .quick-stats__grid { grid-template-columns: 1fr; }
    .quick-stat { border-left: 1px solid var(--line); border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line); }
    .quick-stat:last-child { border-bottom: 0; }
    .ad-slot { margin-top: 24px; }
    .section { padding: 55px 0; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .section-heading h2 { font-size: 29px; }
    .panel-toolbar { align-items: stretch; flex-direction: column; }
    .table-search { width: 100%; }
    .market-table th, .market-table td { padding-left: 12px; padding-right: 12px; }
    .market-table th:nth-child(3), .market-table td:nth-child(3), .market-table th:nth-child(4), .market-table td:nth-child(4) { display: none; }
    .featured-story__body { padding: 21px; }
    .featured-story h3 { font-size: 22px; }
    .story-row { grid-template-columns: 105px 1fr; padding: 10px; gap: 12px; }
    .story-row h3 { font-size: 14px; }
    .story-row .news-meta span:last-child { display: none; }
    .quote-list a { grid-template-columns: 1fr auto; }
    .quote-list em { grid-column: 2; }
    .insight-cards { grid-template-columns: 1fr; }
    .insight-cards a { min-height: 175px; }
    .insight-cards h3 { margin-top: 20px; }
    .newsletter__form { flex-direction: column; }
    .newsletter__form input { width: 100%; }
    .site-footer__top { min-height: 125px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding-bottom: 52px; }
    .site-footer h3 { margin-bottom: 18px; }
    .site-footer__grid a { font-size: 13px; }
    .site-footer__legal { gap: 12px 18px; }
    .news-grid { grid-template-columns: 1fr; }
    .page-content { padding-top: 35px; }
    .content-card { padding: 21px; }
    .article-header h1 { font-size: 38px; }
    .article-lead { font-size: 17px; }
    .article-body p { font-size: 17px; }
    .rate-big strong { font-size: 31px; }
    .chart-heading { align-items: stretch; flex-direction: column; }
    .chart-period-tabs { align-self: flex-start; }
    .chart-stage { height: 270px; }
    .chart-summary { grid-template-columns: 1fr; }
    .chart-summary > div:not(:first-child) { display: none; }
    .period-performance { grid-template-columns: repeat(2, 1fr); }
    .crypto-price-head { flex-direction: column; }
    .crypto-market-row { grid-template-columns: 38px 1fr auto 30px; gap: 9px; }
    .crypto-market-cap { display: none; }
    .crypto-market-price small { display: none; }
    .crypto-market-row em { grid-column: 3; }
}

@media (max-width: 420px) {
    .site-footer__top { align-items: flex-start; flex-direction: column; justify-content: center; gap: 18px; padding: 30px 0; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__legal { align-items: flex-start; flex-direction: column; }
}

/* Yalnızca localhost üzerinden kullanılan canlı kur kurulum ekranı */
.setup-page { min-height: 100vh; background: var(--navy-900); }
.setup-shell { min-height: 100vh; display: grid; place-items: center; padding: 35px 18px; }
.setup-card { width: min(100%, 680px); padding: 36px; background: var(--white); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.32); }
.setup-heading { margin-top: 35px; }
.setup-heading h1 { margin-bottom: 12px; font-size: clamp(30px, 5vw, 44px); letter-spacing: -1.5px; }
.setup-heading p { color: var(--muted); }
.setup-status { display: flex; flex-direction: column; gap: 2px; margin: 24px 0; padding: 15px 17px; border-radius: 10px; }
.setup-status strong { font-size: 13px; }
.setup-status span { font-size: 11px; }
.setup-status.is-configured { color: var(--green-700); background: var(--green-100); }
.setup-status.is-missing { color: #8a5a0a; background: #fff3d8; }
.setup-message { margin: 15px 0; padding: 13px 15px; border-radius: 8px; font-size: 12px; }
.setup-message--success { color: var(--green-700); background: var(--green-100); }
.setup-message--warning { color: #8a5a0a; background: #fff3d8; }
.setup-message--error { color: var(--red-600); background: #fff0ef; }
.setup-form { display: grid; gap: 9px; margin-top: 25px; }
.setup-form label { margin-top: 9px; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.setup-form input, .setup-form select { width: 100%; height: 48px; padding: 0 14px; color: var(--ink); background: var(--soft); border: 1px solid var(--line); border-radius: 8px; outline: none; }
.setup-form input:focus, .setup-form select:focus { background: var(--white); border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-100); }
.setup-form small { color: var(--muted); font-size: 10px; }
.setup-form .button { margin-top: 14px; }
.setup-form .button:disabled { cursor: not-allowed; opacity: .55; }
.setup-clear { margin-top: 14px; text-align: center; }
.setup-clear button { padding: 7px; color: var(--red-600); background: transparent; border: 0; font-size: 11px; font-weight: 750; }
.setup-actions { display: flex; justify-content: space-between; gap: 20px; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); }
.setup-actions a { color: var(--blue-700); font-size: 12px; font-weight: 800; }
.setup-footnote { margin: 22px 0 0; padding: 13px; color: var(--muted); background: var(--soft); border-radius: 8px; font-size: 10px; }
@media (max-width: 600px) {
    .setup-card { padding: 24px; }
    .setup-actions { flex-direction: column; gap: 8px; }
}
