﻿/**
 * Altın Fiyatı Canlı - Ultra Modern Theme
 * Glassmorphism + Neon + Gradient
 */

@charset "UTF-8";

:root {
    /* Primary Colors */
    --gold: #f7b32b;
    --gold-light: #ffd93d;
    --gold-dark: #c9922c;
    --gold-glow: rgba(247, 179, 43, 0.2);
    --gold-gradient: linear-gradient(135deg, #f7b32b 0%, #ffd93d 50%, #f7b32b 100%);

    /* Background Colors */
    --bg-dark: #08090d;
    --bg-card: rgba(17, 19, 25, 0.8);
    --bg-card-solid: #111319;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-header: rgba(8, 9, 13, 0.95);
    --bg-row: rgba(15, 17, 23, 0.6);
    --bg-row-alt: rgba(20, 22, 30, 0.4);
    --bg-row-hover: rgba(247, 179, 43, 0.08);

    /* Text Colors */
    --text-primary: #f8f9fa;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Status Colors */
    --green: #10b981;
    --green-light: #34d399;
    --green-bg: rgba(16, 185, 129, 0.15);
    --green-glow: rgba(16, 185, 129, 0.4);
    --red: #ef4444;
    --red-light: #f87171;
    --red-bg: rgba(239, 68, 68, 0.15);
    --red-glow: rgba(239, 68, 68, 0.4);

    /* Border & Effects */
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 40px rgba(247, 179, 43, 0.15);

    /* Sizes */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --header-height: 60px;
    --ticker-height: 40px;
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background: var(--gold);
    color: #000;
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(247, 179, 43, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Focus Visible - Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
details:focus-visible>summary,
.price-row:focus-visible,
.nav-link:focus-visible,
.quick-link:focus-visible,
.internal-link:focus-visible,
.price-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced Motion - Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .ticker-wrapper {
        animation: none !important;
    }

    .live-dot {
        animation: none !important;
    }
}

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

/* ============================
   Ticker Bar
   ============================ */
.ticker-bar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: var(--ticker-height);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 50s linear infinite;
    white-space: nowrap;
}

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

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    font-size: 0.8rem;
    gap: 10px;
    border-right: 1px solid var(--border);
}

.ticker-name {
    color: var(--text-muted);
    font-weight: 500;
}

.ticker-value {
    font-weight: 600;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.ticker-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}

.ticker-change.up {
    color: var(--green-light);
    background: var(--green-bg);
}

.ticker-change.down {
    color: var(--red-light);
    background: var(--red-bg);
}

/* ============================
   Header
   ============================ */
.header {
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(247, 179, 43, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text span:first-child {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span:last-child {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

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

/* Source Selector */
.source-selector {
    position: relative;
}

.source-selector select {
    appearance: none;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 32px 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f7b32b' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.source-selector select:hover {
    border-color: var(--gold);
    background-color: rgba(247, 179, 43, 0.1);
}

.source-selector select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(247, 179, 43, 0.2);
}

.source-selector select option {
    background: var(--bg-card-solid);
    color: var(--text-primary);
    padding: 8px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--green-glow);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px var(--green-glow);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
        box-shadow: 0 0 20px var(--green-glow);
    }
}

.update-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
}

.mobile-menu-btn {
    display: none;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    min-width: 44px;
    min-height: 44px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 14px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-nav a:hover {
    background: var(--bg-glass);
    color: var(--gold);
}

.mobile-menu-btn.active {
    background: var(--gold);
    color: var(--bg-main);
}

/* ============================
   Main Content
   ============================ */
.main {
    padding: 32px 0 60px;
}

.page-title {
    text-align: center;
    margin-bottom: 36px;
}

.page-title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================
   Featured Card - Glass Effect
   ============================ */
.featured-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-gold);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 179, 43, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.featured-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.featured-content {
    position: relative;
    z-index: 1;
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.featured-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.featured-title h2 {
    font-size: 1.3rem;
    font-weight: 600;
}

.featured-badge {
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(247, 179, 43, 0.3);
}

.featured-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.featured-price-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.featured-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-price-value {
    font-size: 2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.featured-price-value.buy {
    color: var(--text-secondary);
}

.featured-price-value.sell {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Arrow Styles */
.hero-arrow {
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-arrow.up {
    color: var(--green-light);
    -webkit-text-fill-color: var(--green-light);
}

.hero-arrow.down {
    color: var(--red-light);
    -webkit-text-fill-color: var(--red-light);
}

.hero-arrow.neutral {
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.featured-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.featured-change-value {
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
}

.featured-change-value.up {
    color: var(--green-light);
    background: var(--green-bg);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.featured-change-value.down {
    color: var(--red-light);
    background: var(--red-bg);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

/* ============================
   Grid Layout
   ============================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ============================
   Price Section - Glass Table
   ============================ */
.price-section {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
}

.section-title-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 8px rgba(247, 179, 43, 0.5));
}

.section-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    padding: 4px 10px;
    background: var(--bg-glass);
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* Price Table */
.price-table {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Currency Table - Clean List Layout */
.currency-table {
    display: flex;
    flex-direction: column;
}

.currency-table .price-table-header {
    display: grid;
    grid-template-columns: 1fr 120px 120px 65px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-table .price-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px 65px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.currency-table .price-row:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {

    .currency-table .price-table-header,
    .currency-table .price-row {
        grid-template-columns: 1fr 105px 105px 55px;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {

    .currency-table .price-table-header,
    .currency-table .price-row {
        grid-template-columns: 1fr 85px 85px 50px;
        padding: 10px 12px;
    }
}

.price-table-header {
    display: grid;
    grid-template-columns: 1fr 120px 120px 65px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px 65px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.price-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(247, 179, 43, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-row:hover::before {
    opacity: 1;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--bg-row-hover);
}

.price-row:nth-child(even) {
    background: var(--bg-row-alt);
}

.price-row:nth-child(even):hover {
    background: var(--bg-row-hover);
}

/* Row Items */
.price-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.price-name-icon {
    font-size: 2rem;
    filter: saturate(1.2);
    line-height: 1;
}

.price-name-text {
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.price-row:hover .price-name-text {
    color: var(--gold);
}

.price-buy,
.price-sell {
    font-weight: 700;
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.price-buy {
    color: var(--text-secondary);
}

.price-sell {
    color: var(--text-primary);
}

/* Row Arrow Styles */
.row-arrow {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.9;
}

.row-arrow.up {
    color: var(--green-light);
}

.row-arrow.down {
    color: var(--red-light);
}

/* Featured Card Arrow Styles */
.arrow {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

.arrow.up {
    color: var(--green-light);
    background: var(--green-bg);
}

.arrow.down {
    color: var(--red-light);
    background: var(--red-bg);
}

.price-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.status-arrow {
    display: none;
}

.status-percent {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}

.status-percent.up {
    color: var(--green-light);
    background: var(--green-bg);
}

.status-percent.down {
    color: var(--red-light);
    background: var(--red-bg);
}

/* ============================
   Info Section
   ============================ */
.info-section {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 36px;
}

.info-section h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.info-section p:last-child {
    margin-bottom: 0;
}

/* ============================
   Comments Wrapper
   ============================ */
.comments-wrapper {
    padding: 40px 0;
}

.comments-wrapper .container {
    max-width: 900px;
}

/* ============================
   Footer
   ============================ */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links-column a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    transition: all 0.2s ease;
}

.footer-links-column a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================
   Responsive
   ============================ */
/* iPad breakpoint */
@media (max-width: 1024px) {
    .featured-prices {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .price-table-header {
        grid-template-columns: 1fr 100px 100px 55px;
        padding: 12px 14px;
        font-size: 0.75rem;
    }

    .price-row {
        grid-template-columns: 1fr 100px 100px 55px;
        padding: 12px 14px;
    }

    .price-name-text {
        font-size: 0.8rem;
    }

    .price-buy,
    .price-sell {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-right .update-time {
        display: none;
    }

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

    .price-table-header {
        grid-template-columns: 1fr 105px 105px 55px;
        padding: 12px 14px;
    }

    .price-row {
        grid-template-columns: 1fr 105px 105px 55px;
        padding: 14px 14px;
        min-height: 48px;
    }

    .featured-card {
        padding: 20px;
    }

    .featured-price-value {
        font-size: 1.5rem;
    }

    .ticker-bar {
        height: 36px;
    }

    .ticker-item {
        padding: 0 16px;
        font-size: 0.78rem;
        gap: 6px;
    }

    .ticker-change {
        font-size: 0.72rem;
        padding: 2px 6px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .quick-link {
        padding: 10px 16px;
        font-size: 0.88rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .internal-link {
        padding: 14px 16px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .price-table-header {
        grid-template-columns: 1fr 80px 80px 48px;
        padding: 10px 12px;
        font-size: 0.7rem;
    }

    .price-row {
        grid-template-columns: 1fr 80px 80px 48px;
        padding: 12px 12px;
        min-height: 48px;
    }

    .price-buy,
    .price-sell {
        font-size: 0.8rem;
    }

    .price-name-text {
        font-size: 0.8rem;
    }

    .price-name-icon {
        font-size: 1.4rem;
    }

    .page-title h1 {
        font-size: 1.4rem;
    }

    .featured-prices {
        gap: 12px;
    }

    .featured-price-value {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .section-title-icon {
        font-size: 1.6rem;
    }

    .status-percent {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .row-arrow {
        font-size: 0.7rem;
    }
}

/* ============================
   Price Update Animation
   ============================ */
.price-updated {
    animation: priceFlash 0.6s ease;
}

@keyframes priceFlash {
    0% {
        background: rgba(247, 179, 43, 0.3);
    }

    100% {
        background: transparent;
    }
}

/* Blinking Animations - Red/Green */
@keyframes blinkGreen {

    0%,
    100% {
        background: transparent;
    }

    50% {
        background: rgba(16, 185, 129, 0.3);
    }
}

@keyframes blinkRed {

    0%,
    100% {
        background: transparent;
    }

    50% {
        background: rgba(239, 68, 68, 0.3);
    }
}

.blink-up {
    animation: blinkGreen 0.4s ease 3;
}

.blink-down {
    animation: blinkRed 0.4s ease 3;
}

.price-row.blink-up {
    animation: blinkGreen 0.3s ease 3;
}

.price-row.blink-down {
    animation: blinkRed 0.3s ease 3;
}

/* Hero Stats Blink */
.hero-stat.blink-up {
    animation: blinkGreen 0.4s ease 3;
}

.hero-stat.blink-down {
    animation: blinkRed 0.4s ease 3;
}

/* Featured Price Item Blink */
.featured-price-item.blink-up {
    animation: blinkGreen 0.4s ease 3;
}

.featured-price-item.blink-down {
    animation: blinkRed 0.4s ease 3;
}

/* ============================
   Breadcrumb
   ============================ */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.85rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumb li::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb li:last-child {
    color: var(--text-primary);
}

/* ============================
   FAQ Section
   ============================ */
.faq-section h2 {
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--gold-glow);
    background: var(--bg-row-hover);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.faq-q,
.faq-a {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.faq-q {
    background: var(--gold-gradient);
    color: #000;
}

.faq-a {
    background: var(--green-bg);
    color: var(--green-light);
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================
   Admin Panel Styles
   ============================ */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-card-solid);
    border-right: 1px solid var(--border);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.admin-menu {
    list-style: none;
}

.admin-menu-item {
    margin: 2px 8px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.admin-menu-link:hover {
    background: var(--bg-row-hover);
    color: var(--text-primary);
}

.admin-menu-link.active {
    background: var(--gold-glow);
    color: var(--gold);
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 24px;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.admin-title {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

/* Forms */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(247, 179, 43, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 179, 43, 0.4);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-row-hover);
    color: var(--text-primary);
}

.btn-success {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: #fff;
}

.btn-danger {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: #fff;
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #000;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.8rem;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.badge-success {
    background: var(--green-bg);
    color: var(--green-light);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.badge-danger {
    background: var(--red-bg);
    color: var(--red-light);
}

.badge-secondary {
    background: var(--bg-glass);
    color: var(--text-muted);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.alert-success {
    background: var(--green-bg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--green-light);
}

.alert-danger {
    background: var(--red-bg);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--red-light);
}

/* Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.2);
}

.admin-table tr:hover td {
    background: var(--bg-row-hover);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 48px 20px;
}

.empty-state-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state-text {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-header h1 {
    font-size: 1.5rem;
    margin-top: 16px;
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.price-grid-item {
    text-align: center;
    padding: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.price-grid-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.price-grid-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.price-grid-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.price-grid-change.up {
    color: var(--green-light);
}

.price-grid-change.down {
    color: var(--red-light);
}

/* Mini Price List */
.mini-price-list {
    display: flex;
    flex-direction: column;
}

.mini-price-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mini-price-item:last-child {
    border-bottom: none;
}

.mini-price-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Admin Responsive */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 220px;
    }

    .admin-content {
        margin-left: 220px;
    }

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

@media (max-width: 768px) {
    .admin-sidebar {
        display: none;
    }

    .admin-content {
        margin-left: 0;
    }
}

/* Live Price Update - Screen Reader Announcements */
.price-live-region {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== CHART STYLES ========== */
.chart-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.chart-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.chart-header h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chart-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.chart-btn.active {
    background: linear-gradient(135deg, rgba(247, 179, 43, 0.15), rgba(247, 179, 43, 0.05));
    border-color: var(--gold);
    color: var(--gold);
}

.chart-wrapper {
    padding: 1.5rem;
    height: 350px;
    position: relative;
}

.chart-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-glass);
}

.chart-stat {
    text-align: center;
}

.chart-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.chart-stat .stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-stat .stat-value.up {
    color: var(--green);
}

.chart-stat .stat-value.down {
    color: var(--red);
}

@media (max-width: 768px) {
    .chart-header {
        padding: 1rem 1.25rem;
    }

    .chart-wrapper {
        padding: 1rem;
        height: 280px;
    }

    .chart-info {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem 1.25rem;
    }

    .chart-controls {
        width: 100%;
        justify-content: center;
    }
}