/* =========================================================
   DARK THEME - DEFAULT
========================================================= */

:root {
    --background: #0f1115;
    --background-soft: #13161b;

    --card: #181b20;
    --card-hover: #1e2228;
    --card-active: #20242a;

    --surface: #111419;
    --surface-soft: #14171c;
    --table-head: #15181d;
    --field: #111419;

    --text: #f5f5f5;
    --text-soft: #c5c8cc;
    --text-muted: #969ca6;
    --text-faint: #727781;

    --border: #292d34;

    --progress-track: #282c32;

    --footer-bg: #0c0e11;
    --header-bg: rgba(15, 17, 21, 0.95);

    --overlay: rgba(15, 17, 21, 0.72);

    --grid-line: rgba(255, 255, 255, 0.025);
    --neutral-soft: rgba(255, 255, 255, 0.06);

    --shadow: rgba(0, 0, 0, 0.35);

    --gold: #d4af37;
    --gold-light: #f2c94c;
    --gold-soft: rgba(212, 175, 55, 0.12);

    --green: #22c55e;
    --red: #ef4444;
    --neutral: #a3a3a3;
}


/* =========================================================
   LIGHT THEME
========================================================= */

html[data-theme="light"] {
    --background: #fafafa;
    --background-soft: #f5f6f7;

    --card: #ffffff;
    --card-hover: #f6f7f8;
    --card-active: #eef0f2;

    --surface: #f2f3f5;
    --surface-soft: #f5f6f7;
    --table-head: #f4f5f6;
    --field: #f7f8f9;

    --text: #181a1f;
    --text-soft: #3b4047;
    --text-muted: #6d737c;
    --text-faint: #8a9099;

    --border: #e0e3e7;

    --progress-track: #e7e9ec;

    --footer-bg: #f3f4f5;
    --header-bg: rgba(250, 250, 250, 0.95);

    --overlay: rgba(250, 250, 250, 0.84);

    --grid-line: rgba(24, 26, 31, 0.055);
    --neutral-soft: rgba(24, 26, 31, 0.06);

    --shadow: rgba(0, 0, 0, 0.12);

    --gold: #d4af37;
    --gold-light: #f2c94c;
    --gold-soft: rgba(212, 175, 55, 0.12);

    --green: #22c55e;
    --red: #ef4444;
    --neutral: #737880;
}

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

html {
    scroll-behavior: smooth;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 transparent;
}

/* Chrome, Edge, Safari */

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        #f2c94c 0%,
        #d4af37 50%,
        #b88914 100%
    );
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #f6d96a 0%,
        #d4af37 50%,
        #a97d10 100%
    );
}

::selection {
    background: #FAF5E7;
    color: #111317;
}

::-moz-selection {
    background: #FAF5E7;
    color: #111317;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--background);
    color: var(--text);
    line-height: 1.5;
    transition: background-color 0.2s ease, color 0.2s ease;
}

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    height: 72px;

    background: var(--header-bg);

    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;
    z-index: 100;

    backdrop-filter: blur(14px);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

    font-size: 20px;
    font-weight: 800;

    letter-spacing: -0.7px;
}

.logo-gold {
    color: var(--gold);
}

.logo-light {
    color: var(--text);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-muted);

    font-size: 14px;
    font-weight: 600;

    transition: 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
}

.main-nav a.active {
    position: relative;
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    bottom: -25px;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--gold);
}

.login-button {
    background: transparent;

    border: 1px solid var(--border);

    color: var(--text);

    padding: 9px 16px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s;
}

.login-button:hover {
    border-color: var(--gold);
}


/* =========================
   THEME TOGGLE
========================= */

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.theme-toggle-track {
    position: relative;

    width: 40px;
    height: 22px;

    display: block;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: var(--surface);

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.theme-toggle-thumb {
    position: absolute;

    top: 3px;
    left: 3px;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--gold);

    transition: transform 0.22s ease;
}

html[data-theme="light"] .theme-toggle-thumb {
    transform: translateX(18px);
}

.theme-toggle:hover .theme-toggle-track {
    border-color: var(--gold);
}


/* =========================
   MARKET TICKER
========================= */

.market-ticker {
    background: var(--surface);

    border-bottom: 1px solid var(--border);
}

.ticker-inner {
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 45px;
}

.ticker-item {
    display: flex;
    align-items: center;

    color: inherit;
    text-decoration: none;

    gap: 9px;

    white-space: nowrap;
}

.ticker-item span {
    color: var(--text-muted);

    font-size: 12px;
}

.ticker-item strong {
    font-size: 13px;
}

.ticker-item small {
    font-size: 11px;
}


/* =========================
   GENERAL
========================= */

.section {
    padding: 32px 0;
}

.hero-section {
    padding: 54px 0 26px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 22px;
}

.main-heading {
    align-items: center;

    margin-bottom: 28px;
}

.section-heading h1 {
    font-size: 36px;

    letter-spacing: -1.5px;
}

.section-heading h2,
.content-card h2,
.newsletter-card h2 {
    font-size: 24px;

    letter-spacing: -0.8px;
}

.section-heading p,
.card-description {
    margin-top: 6px;

    color: var(--text-muted);
}

.eyebrow {
    display: block;

    margin-bottom: 6px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.text-link {
    color: var(--gold);

    font-size: 13px;
    font-weight: 700;
}

.positive {
    color: var(--green) !important;
}

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

.last-update {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--text-muted);

    font-size: 12px;
}

.last-update strong {
    color: var(--text);
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
}


/* =========================
   PRICE TABLE
========================= */

.price-table tbody tr.price-row-linked {
    position: relative;
    cursor: pointer !important;
}

.price-table tbody tr.price-row-linked:active {
    background: var(--card-active);
}

.price-row-anchor {
    color: inherit;
    text-decoration: none;
}

.price-row-anchor::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;
}

.price-row-anchor:focus-visible {
    outline: none;
}

.price-row-anchor:focus-visible::after {
    outline: 1px solid var(--gold);
    outline-offset: -1px;
}

.price-table-wrapper {
    overflow: hidden;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.price-table {
    width: 100%;

    border-collapse: collapse;
}

.price-table th {
    padding: 14px 20px;

    color: var(--text-muted);

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;

    text-align: right;

    background: var(--table-head);
}

.price-table th:first-child {
    text-align: left;
}

.price-table td {
    padding: 17px 20px;

    border-top: 1px solid var(--border);

    font-size: 14px;

    text-align: right;
}

.price-table tbody tr {
    transition: 0.15s;
}

.price-table tbody tr:hover {
    background: var(--card-hover);
}

.price-table td:first-child {
    text-align: left;
}

.sale-price {
    font-weight: 750;
}

.asset-name {
    display: flex;
    align-items: center;

    gap: 12px;
}

.asset-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold-soft);

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
}

.asset-name strong {
    display: block;
}

.asset-name span {
    display: block;

    margin-top: 2px;

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================
   CARDS
========================= */

.content-card {
    padding: 26px;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* =========================
   CHART
========================= */

.card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.chart-periods {
    display: flex;

    padding: 3px;

    border-radius: 8px;

    background: var(--surface);
}

.chart-periods button {
    padding: 7px 11px;

    border: 0;
    border-radius: 6px;

    background: transparent;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 700;
}

.chart-periods button.active {
    background: var(--gold);

    color: #111;
}

.chart-placeholder {
    height: 320px;

    margin-top: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            var(--grid-line) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            var(--grid-line) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.chart-placeholder span {
    color: var(--text-muted);

    font-size: 12px;
}


/* =========================
   CALCULATOR
========================= */

.calculator-fields {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 24px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--text-muted);

    font-size: 11px;
}

.form-group input,
.form-group select {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--surface);

    color: var(--text);

    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.calculator-result {
    margin-top: 20px;

    padding: 18px;

    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 10px;

    background: var(--gold-soft);
}

.calculator-result span {
    display: block;

    color: var(--text-muted);

    font-size: 11px;
}

.calculator-result strong {
    display: block;

    margin-top: 4px;

    color: var(--gold-light);

    font-size: 25px;
}


/* =========================
   AI
========================= */

.ai-card {
    position: relative;

    overflow: hidden;
}

.ai-card::before {
    content: "";

    position: absolute;

    right: -70px;
    top: -90px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.08);

    filter: blur(15px);
}

.ai-title {
    display: flex;
    align-items: center;

    gap: 13px;
}

.ai-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--gold-soft);

    color: var(--gold);

    font-size: 22px;
}

.ai-summary {
    margin-top: 20px;

    color: var(--text-soft);

    line-height: 1.7;
}

.market-factors {
    margin-top: 20px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.market-factors > div {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px;

    border-radius: 8px;

    background: var(--surface-soft);
}

.factor-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.factor-icon.neutral {
    color: var(--neutral);

    background: var(--neutral-soft);
}

.market-factors p {
    color: var(--text-muted);

    font-size: 12px;
}

.market-factors strong {
    display: block;

    color: var(--text);

    font-size: 11px;
}

.disclaimer {
    display: block;

    margin-top: 17px;

    color: var(--text-faint);

    font-size: 13px;
}

.last-update {
    margin-top: 17px;

    color: var(--text-faint);

    font-size: 13px;
}


/* =========================
   NEWS
========================= */

.news-list {
    border-top: 1px solid var(--border);
}

.news-item {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 4px;

    border-bottom: 1px solid var(--border);

    transition: 0.2s;
}

.news-item:hover h3 {
    color: var(--gold-light);
}

.news-source {
    color: var(--gold);

    font-size: 10px;
    font-weight: 750;
}

.news-item h3 {
    margin-top: 4px;

    font-size: 15px;
    font-weight: 650;

    transition: 0.2s;
}

.news-item time {
    color: var(--text-muted);

    font-size: 11px;

    white-space: nowrap;
}


/* =========================
   METALS
========================= */

.metal-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.metal-card {
    display: block;

    padding: 20px;

    color: inherit;
    text-decoration: none;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 12px;
}

.metal-card > span {
    display: block;

    color: var(--text-muted);

    font-size: 11px;
}

.metal-card > strong {
    display: block;

    margin: 5px 0;

    font-size: 19px;
}

.metal-card small {
    font-size: 11px;
}


/* =========================
   COMMUNITY
========================= */

.community-section {
    padding-top: 45px;
}

.sentiment-main {
    margin: 26px 0;

    display: flex;
    align-items: baseline;

    gap: 10px;
}

.sentiment-main strong {
    color: var(--green);

    font-size: 42px;
}

.sentiment-main span {
    color: var(--text-muted);
}

.sentiment-bars {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.sentiment-row > div:first-child {
    display: flex;
    justify-content: space-between;

    margin-bottom: 6px;

    font-size: 11px;
}

.progress {
    height: 6px;

    overflow: hidden;

    border-radius: 50px;

    background: var(--progress-track);
}

.progress-value {
    height: 100%;

    border-radius: inherit;
}

.progress-value.up {
    background: var(--green);
}

.progress-value.down {
    background: var(--red);
}

.progress-value.flat {
    background: var(--neutral);
}

.vote-buttons {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin-top: 23px;
}

.vote-buttons button {
    padding: 10px;

    border-radius: 8px;

    background: transparent;

    font-size: 11px;
    font-weight: 750;
}

.vote-up {
    border: 1px solid rgba(34, 197, 94, 0.4);

    color: var(--green);
}

.vote-down {
    border: 1px solid rgba(239, 68, 68, 0.4);

    color: var(--red);
}

.vote-flat {
    border: 1px solid var(--border);

    color: var(--neutral);
}


/* =========================
   COMMENTS
========================= */

.comment {
    display: flex;

    gap: 12px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}

.avatar {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold-soft);

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
}

.comment-meta {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 5px;
}

.comment-meta strong {
    font-size: 12px;
}

.comment-meta span {
    color: var(--text-muted);

    font-size: 10px;
}

.comment-content p {
    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.6;
}

.community-button {
    width: 100%;

    margin-top: 18px;

    padding: 11px;

    border: 1px solid var(--gold);
    border-radius: 8px;

    background: transparent;

    color: var(--gold);

    font-size: 12px;
    font-weight: 750;

    transition: 0.2s;
}

.community-button:hover {
    background: var(--gold);

    color: #111;
}


/* =========================
   NEWSLETTER
========================= */

.newsletter-section {
    padding: 60px 0;
}

.newsletter-card {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 60px;

    align-items: center;

    padding: 40px;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(212, 175, 55, 0.17),
            transparent 35%
        ),
        var(--card);
}

.newsletter-card h2 {
    font-size: 27px;
}

.newsletter-card p {
    max-width: 520px;

    margin-top: 10px;

    color: var(--text-muted);

    font-size: 13px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.newsletter-form input,
.newsletter-form select {
    padding: 13px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--surface);

    color: var(--text);

    outline: none;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 13px;

    border: 0;
    border-radius: 8px;

    background: var(--gold);

    color: #111;

    font-size: 12px;
    font-weight: 800;

    transition: 0.2s;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    margin-top: 30px;

    border-top: 1px solid var(--border);

    background: var(--footer-bg);
}

.footer-inner {
    padding: 42px 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-inner p {
    max-width: 380px;

    color: var(--text-muted);

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);

    font-size: 11px;
}

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

.footer-bottom {
    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);

    color: var(--text-faint);

    font-size: 10px;
}


/* =========================
   FAQ
========================= */

.faq-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.faq-heading {
    margin-bottom: 24px;
}

.faq-heading p {
    max-width: 650px;
}

.faq-list {
    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 0 4px;

    list-style: none;

    cursor: pointer;

    font-size: 14px;
    font-weight: 650;

    transition: color 0.2s;
}

.faq-item summary h3 {
    flex: 1;
    margin: 0;
    padding: 0;

    color: inherit;

    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--gold-light);
}

.faq-plus {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--gold);

    font-size: 19px;
    font-weight: 400;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.faq-item[open] .faq-plus {
    transform: rotate(45deg);

    background: var(--gold-soft);

    border-color: rgba(212, 175, 55, 0.35);
}

.faq-answer {
    padding: 0 55px 22px 4px;
}

.faq-answer p {
    max-width: 850px;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.75;
}

.flash-messages {
    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 9999;
}

.flash-message {
    padding: 14px 22px;

    border: 1px solid var(--gold);
    border-radius: 8px;

    background: var(--card);

    color: var(--text);

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 8px 30px var(--shadow);
}


/* =========================
   VOTE LOGIN LOCK
========================= */

.vote-login-wrapper {
    position: relative;

    margin-top: 23px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: var(--surface-soft);
}

.vote-buttons-locked {
    margin-top: 0;

    padding: 14px;

    pointer-events: none;

    opacity: 0.18;

    filter: blur(1.5px);
}

.vote-buttons-locked span {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 750;
}

.vote-login-watermark {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 10px 14px;

    background: var(--overlay);

    backdrop-filter: blur(2px);
}

.vote-lock {
    flex-shrink: 0;

    font-size: 16px;
}

.vote-login-watermark > div {
    display: flex;
    flex-direction: column;

    flex: 1;
}

.vote-login-watermark strong {
    color: var(--text);

    font-size: 11px;
    font-weight: 700;
}

.vote-login-watermark small {
    margin-top: 2px;

    color: var(--text-muted);

    font-size: 9px;
}

.vote-login-watermark a {
    flex-shrink: 0;

    padding: 7px 12px;

    border: 1px solid var(--gold);
    border-radius: 6px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 750;

    transition: 0.2s;
}

.vote-login-watermark a:hover {
    background: var(--gold);

    color: #111;
}

.ai-summary-list {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 20px;
}

.ai-summary-item {
    display: flex;
    align-items: flex-start;

    gap: 11px;
}

.ai-summary-marker {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 6px;

    background: var(--gold-soft);

    color: var(--gold);

    font-size: 10px;
}

.ai-summary-item h3 {
    display: block;

    margin-bottom: 3px;

    color: var(--text);

    font-size: 12px;
}

.ai-summary-item p {
    margin: 0;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.7;
}

.ai-summary-empty {
    margin: 0;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .ticker-inner {
        overflow-x: auto;

        justify-content: flex-start;

        gap: 28px;

        padding: 0 20px;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

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

    .newsletter-card {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(100% - 24px, 1180px);
    }

    .site-header {
        height: 64px;
    }

    .header-actions {
        display: none;
    }

    .section-heading h1 {
        font-size: 29px;
    }

    .section-heading h2,
    .content-card h2 {
        font-size: 21px;
    }

    .main-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 14px;
    }


    /* =========================
       MOBILE MARKET TICKER
    ========================= */

    .market-ticker {
        padding: 8px 0;
    }

    .ticker-inner {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 0;

        padding: 0 12px;

        overflow: visible;
    }

    .ticker-item {
        min-width: 0;

        display: flex;
        align-items: flex-start;
        flex-direction: column;

        gap: 2px;

        padding: 9px 10px;
    }

    .ticker-item span {
        font-size: 10px;
    }

    .ticker-item strong {
        font-size: 12px;
    }

    .ticker-item small {
        font-size: 9px;
    }


    /* =========================
       MOBILE PRICE TABLE
    ========================= */

    .price-table-wrapper {
        overflow: visible;

        border: 0;

        background: transparent;
    }

    .price-table {
        width: 100%;
        min-width: 0;

        display: block;
    }

    .price-table thead {
        display: none;
    }

    .price-table tbody {
        width: 100%;

        display: grid;

        gap: 10px;
    }

    .price-table tbody tr {
        width: 100%;

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        overflow: hidden;

        border: 1px solid var(--border);
        border-radius: 12px;

        background: var(--card);
    }

    .price-table td {
        display: block;

        padding: 11px 13px 14px;

        border-top: 0;

        text-align: left;

        font-size: 12px;
    }

    .price-table td:first-child {
        grid-column: 1 / -1;

        padding: 14px 13px;

        border-bottom: 1px solid var(--border);

        text-align: left;
    }

    .price-table td:nth-child(3),
    .price-table td:nth-child(4) {
        border-left: 1px solid var(--border);
    }

    .price-table td:nth-child(2)::before,
    .price-table td:nth-child(3)::before,
    .price-table td:nth-child(4)::before {
        display: block;

        margin-bottom: 4px;

        color: var(--text-muted);

        font-size: 8px;
        font-weight: 700;

        letter-spacing: 0.6px;
    }

    .price-table td:nth-child(2)::before {
        content: "ALIŞ";
    }

    .price-table td:nth-child(3)::before {
        content: "SATIŞ";
    }

    .price-table td:nth-child(4)::before {
        content: "DEĞİŞİM";
    }

    .asset-icon {
        width: 34px;
        height: 34px;
    }

    .asset-name {
        gap: 10px;
    }

    .asset-name strong {
        font-size: 13px;
    }

    .asset-name span {
        font-size: 9px;
    }

    .sale-price {
        font-weight: 750;
    }

    .calculator-fields {
        grid-template-columns: 1fr;
    }

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

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

    .chart-placeholder {
        height: 240px;
    }

    .vote-buttons {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        padding: 26px 20px;
    }

    .newsletter-card h2 {
        font-size: 23px;
    }

    .footer-inner,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .faq-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .faq-item summary {
        min-height: 66px;

        gap: 18px;

        font-size: 13px;
    }

    .faq-answer {
        padding-right: 15px;
    }

    .vote-login-watermark {
        gap: 8px;
    }

    .vote-login-watermark small {
        display: none;
    }

    .vote-login-watermark a {
        padding: 6px 9px;
    }

}