/* ============================================
   ALTINFIYATLARINEOLUR.COM
   Raleway Light 300 — Luxury Minimal Finans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
    --gold:          #B8962E;
    --gold-light:    #D4AF52;
    --gold-pale:     #F2E8CC;
    --gold-faint:    #FAF6EC;
    --ink:           #1C1C1C;
    --ink-mid:       #2E2E2E;
    --ink-soft:      #5A5A5A;
    --ink-muted:     #999;
    --cream:         #FAFAF7;
    --white:         #FFFFFF;
    --border:        #E8E3D8;
    --border-light:  #F0EDE5;
    --green:         #2C6E49;
    --red:           #9B2335;
    --shadow-xs:     0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:     0 6px 24px rgba(0,0,0,0.09);
    --r:             6px;
    --r-lg:          12px;
    --ease:          all 0.3s cubic-bezier(0.4,0,0.2,1);
    --max-w:         100%;
    --font:          'Raleway', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-weight: 300;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 40px);
}

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 68px;
    gap: 32px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-emblem {
    width: 38px;
    height: 38px;
    position: relative;
    flex-shrink: 0;
}

.logo-emblem svg {
    width: 100%;
    height: 100%;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
}

.logo-word-main {
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--ink);
    text-transform: uppercase;
}

.logo-word-main strong {
    font-weight: 600;
    color: var(--gold);
}

.logo-word-sub {
    font-family: var(--font);
    font-weight: 300;
    font-size: 9.5px;
    letter-spacing: 0.28em;
    color: var(--ink-muted);
    text-transform: uppercase;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    font-family: var(--font);
    font-weight: 400;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: var(--r);
    transition: var(--ease);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link.active { color: var(--ink); font-weight: 500; }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-clock {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--ink-soft);
    padding: 7px 12px;
    border-radius: var(--r);
    cursor: pointer;
    font-size: 16px;
}

/* ═══════════════════════════════
   TICKER
═══════════════════════════════ */
.ticker-bar {
    background: var(--ink);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-label {
    font-family: var(--font);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    background: rgba(184,150,46,0.15);
    border: 1px solid rgba(184,150,46,0.3);
    padding: 3px 10px;
    border-radius: 2px;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

.ticker-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.ticker-scroll {
    display: flex;
    gap: 0;
    animation: ticker-move 40s linear infinite;
    white-space: nowrap;
}

.ticker-scroll:hover { animation-play-state: paused; }

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 28px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.ticker-item .t-name {
    font-weight: 300;
    color: rgba(255,255,255,0.45);
}

.ticker-item .t-val {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.ticker-item .t-chg {
    font-size: 11px;
    font-weight: 400;
}

.t-chg.up   { color: #5BB97B; }
.t-chg.down { color: #E07070; }

/* ═══════════════════════════════
   SECTION HEADERS
═══════════════════════════════ */
.section-wrap {
    padding: 56px 0;
}

.section-wrap + .section-wrap {
    border-top: 1px solid var(--border-light);
}

.section-header {
    margin-bottom: 36px;
}

.section-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font);
    font-weight: 200;
    font-size: 32px;
    letter-spacing: 0.04em;
    color: var(--ink);
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.section-meta {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    color: var(--ink-muted);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.update-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: blink-dot 2s infinite;
}

@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ═══════════════════════════════
   ALTIN FİYAT KARTLARI
═══════════════════════════════ */
.hero-bg {
    background: linear-gradient(160deg, #1C1C1C 0%, #2A2A2A 50%, #1C1C1C 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8962E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,150,46,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-bg .section-eyebrow { color: var(--gold-light); }
.hero-bg .section-title   { color: rgba(255,255,255,0.92); font-weight: 200; }
.hero-bg .section-meta    { color: rgba(255,255,255,0.35); }

.price-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: clamp(6px, 0.8vw, 14px);
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.price-card.metal-card {
    background: rgba(180,185,195,0.08);
    border-color: rgba(180,185,195,0.22);
}

.price-card.metal-card:hover {
    background: rgba(180,185,195,0.14);
    border-color: rgba(180,185,195,0.45);
}

.price-card.metal-card::before {
    background: #9BA3AE;
}

.price-card.metal-card .price-name {
    color: rgba(255,255,255,0.38);
}

.price-card.metal-card .price-satis {
    color: #C8CDD6;
}

.price-card.metal-card .price-type-badge {
    color: #9BA3AE;
    background: rgba(155,163,174,0.12);
}

.price-card.metal-card .price-alis-val {
    color: rgba(180,185,195,0.5);
}

.price-card.metal-card .price-alis-row {
    border-top-color: rgba(180,185,195,0.1);
}

.price-group-label.metal-label {
    color: #9BA3AE;
}

.price-group-label.metal-label::after {
    background: rgba(155,163,174,0.2);
}
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 28px 0 12px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(184,150,46,0.2);
}

.price-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: clamp(10px, 1.2vw, 20px) clamp(8px, 1vw, 18px) clamp(8px, 1vw, 16px);
    transition: var(--ease);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.price-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(184,150,46,0.3);
    transform: translateY(-2px);
}

.price-card:hover::before { transform: scaleX(1); }

.price-card.featured {
    border-color: rgba(184,150,46,0.4);
    background: rgba(184,150,46,0.08);
}

.price-card.featured::before { transform: scaleX(1); }

.price-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.price-name {
    font-size: clamp(11px, 0.85vw, 13px);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.price-type-badge {
    font-size: clamp(12px, 0.85vw, 14px);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(184,150,46,0.12);
    padding: clamp(1px, 0.15vw, 2px) clamp(4px, 0.4vw, 7px);
    border-radius: 2px;
}

.price-satis {
    font-family: var(--font);
    font-weight: 200;
    font-size: clamp(16px, 1.6vw, 28px);
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 4px;
}

.price-satis.updating {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.price-change-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.price-change {
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.price-change.change-up   { color: #4ADE80; }
.price-change.change-down { color: #FC8080; }
.price-change.change-flat { color: rgba(255,255,255,0.55); }

.price-alis-row {
    padding-top: 7px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-alis-label {
    font-size: clamp(10px, 0.7vw, 12px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.price-alis-val {
    font-size: clamp(12px, 0.85vw, 14px);
    font-weight: 300;
    color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════
   DÖVİZ
═══════════════════════════════ */
.doviz-section { background: var(--white); }

.doviz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.doviz-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    transition: var(--ease);
}

.doviz-card:hover {
    border-color: var(--gold);
    background: var(--gold-faint);
    box-shadow: var(--shadow-sm);
}

.doviz-flag { font-size: 24px; line-height: 1; flex-shrink: 0; }

.doviz-info { flex: 1; min-width: 0; }

.doviz-code {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ink);
}

.doviz-name {
    display: block;
    font-size: 11px;
    font-weight: 300;
    color: var(--ink-muted);
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doviz-right { text-align: right; flex-shrink: 0; }

.doviz-value {
    display: block;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.doviz-change {
    display: block;
    font-size: 11.5px;
    font-weight: 400;
}

.doviz-change.change-up   { color: var(--green); }
.doviz-change.change-down { color: var(--red); }

/* ═══════════════════════════════
   HABERLER
═══════════════════════════════ */
.news-section { background: var(--cream); }

.news-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.btn-all {
    font-family: var(--font);
    font-weight: 400;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 2px;
    transition: var(--ease);
    white-space: nowrap;
}

.btn-all:hover {
    background: var(--gold);
    color: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
    transform: translateY(-3px);
}

.news-card-featured { grid-row: 1 / 3; }

.news-image {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: var(--ink-mid);
    flex-shrink: 0;
}

.news-card-featured .news-image { height: 230px; }

.news-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img { transform: scale(1.05); }

.news-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1C1C1C 0%, #2E2E2E 100%);
}

.news-image-placeholder span {
    font-size: 36px;
    color: var(--gold);
    opacity: 0.5;
}

.news-content {
    padding: 20px 22px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.news-cat {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-pale);
    padding-bottom: 2px;
}

.news-title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1.4;
    flex: 1;
}

.news-title a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.news-title a:hover { color: var(--gold); }

.news-excerpt {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.6;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    margin-top: 4px;
}

.news-date {
    font-size: 11px;
    font-weight: 300;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
}

.news-more {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: letter-spacing 0.2s;
}

.news-more:hover { letter-spacing: 0.2em; }

.no-news {
    text-align: center;
    padding: 56px;
    border: 1px dashed var(--border);
    border-radius: var(--r-lg);
    color: var(--ink-muted);
    font-weight: 300;
}

.no-news a { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.45);
    padding: 52px 0 28px;
}

.footer-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}

.footer-brand-name {
    font-family: var(--font);
    font-weight: 200;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 4px;
}

.footer-brand-name strong { font-weight: 500; color: var(--gold-light); }

.footer-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.35);
}

.footer-col h5 {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-col ul a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy { font-size: 11.5px; font-weight: 300; letter-spacing: 0.04em; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════
   ADMIN
═══════════════════════════════ */
.admin-layout { min-height: 100vh; background: var(--cream); }

.admin-header {
    background: var(--ink);
    padding: 14px 0;
    border-bottom: 2px solid var(--gold);
}

.admin-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.admin-nav a {
    font-size: 12.5px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s;
}

.admin-nav a:hover { color: var(--gold-light); }

.admin-content { padding: 40px 0; }

.admin-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 36px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xs);
}

.admin-card h2 {
    font-family: var(--font);
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
    color: var(--ink);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 7px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-family: var(--font);
    font-weight: 300;
    font-size: 14.5px;
    color: var(--ink);
    background: var(--cream);
    transition: var(--ease);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184,150,46,0.1);
}

textarea.form-control { resize: vertical; min-height: 160px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 24px;
    border-radius: var(--r);
    font-family: var(--font);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--ease);
    text-decoration: none;
}

.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-mid); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--ink); border-color: var(--ink); }
.btn-danger { background: var(--red); color: var(--white); padding: 7px 16px; font-size: 11px; }
.btn-sm { padding: 6px 14px; font-size: 11px; }

.alert {
    padding: 13px 18px;
    border-radius: var(--r);
    font-size: 13.5px;
    font-weight: 300;
    margin-bottom: 22px;
    border-left: 3px solid;
    letter-spacing: 0.02em;
}

.alert-success { background: #f0fff4; border-color: var(--green); color: #276749; }
.alert-error   { background: #fff5f5; border-color: var(--red); color: #9b2335; }

.table-responsive { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; font-size: 13.5px; }

table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--cream);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--border);
}

table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-light);
    color: var(--ink);
    vertical-align: middle;
    font-weight: 300;
}

table tr:hover td { background: var(--gold-faint); }

.badge {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-gold { background: var(--gold-pale); color: var(--gold); }

/* GİRİŞ */
.giris-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
}

.giris-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 44px 40px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.giris-logo {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
}

.giris-title {
    font-family: var(--font);
    font-weight: 200;
    font-size: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--ink);
}

.giris-sub {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* HABER DETAY */
.haber-hero-area {
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-mid) 100%);
    padding: 44px 0 36px;
    border-bottom: 1px solid rgba(184,150,46,0.3);
}

.breadcrumb {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 18px;
}

.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

.haber-hero-title {
    font-family: var(--font);
    font-weight: 200;
    font-size: 30px;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.9);
    line-height: 1.35;
    max-width: 740px;
    margin-bottom: 18px;
}

.haber-body-wrap { padding: 48px 0 64px; }

.haber-body-inner { max-width: 740px; }

.haber-ozet {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-soft);
    border-left: 2px solid var(--gold);
    padding: 18px 24px;
    margin-bottom: 30px;
    background: var(--gold-faint);
    border-radius: 0 var(--r) var(--r) 0;
}

.haber-content {
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ink);
}

.haber-content p { margin-bottom: 20px; }
.haber-content h2, .haber-content h3 {
    font-family: var(--font);
    font-weight: 300;
    margin: 32px 0 14px;
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
    .price-grid  { grid-template-columns: repeat(4, 1fr); }
    .doviz-grid  { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .news-grid   { grid-template-columns: 1fr 1fr; }
    .news-card-featured { grid-row: auto; }
    .doviz-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .price-grid  { grid-template-columns: repeat(2, 1fr); }
    .doviz-grid  { grid-template-columns: 1fr 1fr; }
    .news-grid   { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .mobile-menu-btn { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 12px 20px;
        gap: 4px;
        z-index: 300;
    }
    .main-nav.open { display: flex; }
    .header-main { position: relative; }
    .header-right .header-clock { display: none; }
    .news-section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .haber-hero-title { font-size: 22px; }
    .admin-card { padding: 20px; }
    .price-satis { font-size: clamp(16px, 4vw, 22px); }
}

/* ═══════════════════════════════
   ERİŞİLEBİLİRLİK (WCAG 2.1 AA)
═══════════════════════════════ */

/* Klavye focus görünürlüğü */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Yüksek kontrast modu desteği */
@media (forced-colors: active) {
    .price-card { border: 2px solid ButtonText; }
    .price-satis { color: ButtonText; }
    .price-change.change-up   { color: LinkText; }
    .price-change.change-down { color: Mark; }
}

/* Hareketi azalt (vestibüler bozukluklar için) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .ticker-scroll { animation: none; }
    .update-dot    { animation: none; }
}

/* Büyük metin tercihi */
@media (prefers-contrast: more) {
    .price-satis    { color: #ffffff; }
    .price-name     { color: rgba(255,255,255,0.85); }
    .price-alis-val { color: rgba(255,255,255,0.8); }
    .price-alis-label { color: rgba(255,255,255,0.7); }
    .price-change.change-flat { color: rgba(255,255,255,0.8); }
}

