* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f0f0f;
  --bg2: #181818;
  --gold: #d4a034;
  --gold-light: #f3cf7a;
  --text: #f2f2f2;
  --muted: #b8b8b8;
  --border: #2b2b2b;
}

html {
  scroll-behavior: smooth;
}
body {
  background: radial-gradient(circle at top left, rgba(212, 160, 52, 0.08), transparent 25%), radial-gradient(circle at bottom right, rgba(212, 160, 52, 0.05), transparent 30%), var(--bg);

  color: var(--text);

  font-family: Arial, Helvetica, sans-serif;

  line-height: 1.6;

  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 0;
}
.market-strip {
  width: 100%;
  overflow: hidden;

  background: linear-gradient(180deg, #111, #0b0b0b);

  border-top: 1px solid rgba(212, 160, 52, 0.18);

  border-bottom: 1px solid rgba(212, 160, 52, 0.18);

  white-space: nowrap;
}

.market-track {
  display: inline-flex;
  width: max-content;
  min-width: max-content;
  will-change: transform;

  animation: marketScroll 55s linear infinite;
}

.market-track > span {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  gap: 10px;

  min-width: 220px;
}

.market-track strong {
  color: #fff;

  font-weight: 800;

  margin-left: 5px;

  text-shadow: 0 0 10px rgba(212, 160, 52, 0.25);
}

.market-track > span:not(.ticker-label-strip) {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 38px;

  min-width: 240px;
}

.market-track > span:not(.ticker-label-strip) > :first-child {
  font-size: 0.78rem;

  letter-spacing: 1px;

  text-transform: uppercase;

  opacity: 0.65;

  font-weight: 700;
}

.gold-label + span,
.gold-label + span + span,
.gold-label + span + span + span,
.gold-label + span + span + span + span,
.gold-label + span + span + span + span + span,
.gold-label + span + span + span + span + span + span,
.gold-label + span + span + span + span + span + span + span {
  color: #d4a034;
}

.silver-label + span,
.silver-label + span + span,
.silver-label + span + span + span,
.silver-label + span + span + span + span {
  color: #cfd6dc;
}

.market-track strong {
  font-weight: 900;
  color: #f3cf7a;
  transition: 0.4s;
}

.market-track strong.price-up {
  color: #49d86b !important;
  text-shadow: 0 0 12px rgba(73, 216, 107, 0.45);
}

.market-track strong.price-down {
  color: #ff6565 !important;
  text-shadow: 0 0 12px rgba(255, 101, 101, 0.45);
}

.trend {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 900;
  min-width: 12px;
  margin-left: 2px;
}

.trend.up {
  color: #49d86b;
}

.trend.down {
  color: #ff6565;
}

.ticker-label-strip {
  min-width: 200px !important;
  justify-content: center;
}

.trend-loading {
  animation: trendSpin 4s linear infinite;
  opacity: 0.75;
  color: #b8b8b8;
}

@keyframes trendSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: fa-spin 4s linear infinite !important;
  opacity: 0.5;
}

@keyframes fa-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gold-label {
  color: #f3cf7a;

  background: linear-gradient(90deg, rgba(212, 160, 52, 0.22), rgba(212, 160, 52, 0.03));

  border-left: 2px solid #d4a034;
}

.silver-label {
  color: #e5ebef;

  background: linear-gradient(90deg, rgba(190, 200, 210, 0.18), rgba(190, 200, 210, 0.03));

  border-left: 2px solid #cfd6dc;
}

.gold-item {
  color: #d4a034;
}

.silver-item {
  color: #c7c7c7;
}

.market-arrow {
  font-size: 0.8rem;
  margin-left: 6px;
  opacity: 0.85;
}

.market-arrow.up {
  color: #49d86b;
}

.market-arrow.down {
  color: #ff6b6b;
}

@keyframes marketScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: linear-gradient(180deg, #fff0a8 0%, #e0ad32 35%, #9f6f12 65%, #ffd76a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 10px rgba(224, 173, 50, 0.28),
    0 0 24px rgba(224, 173, 50, 0.12);
}

.top-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-nav a {
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
}

.top-nav a:hover {
  color: var(--gold);
}

.nav-call {
  background: var(--gold);
  color: #111 !important;

  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
}

.hero {
  position: relative;

  overflow: hidden;

  padding: 110px 0;
}

.hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -150px;
  right: -120px;

  background: radial-gradient(circle, rgba(224, 173, 50, 0.12), transparent 70%);

  filter: blur(40px);

  pointer-events: none;
}

.hero::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.78) 100%), url("images/gold-bg.png");

  background-position: center center;
  background-size: cover;

  opacity: 0.5;

  filter: none;

  mix-blend-mode: normal;

  pointer-events: none;

  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: 4.2rem;
  line-height: 1.05;
  margin-bottom: 25px;

  max-width: 900px;

  letter-spacing: -2px;

  color: #fbfbfb;
}

.gold-text {
  color: #e3a20b;

  text-shadow:
    0 0 4px rgba(227, 167, 25, 0.45),
    0 0 12px rgba(224, 173, 50, 0.35),
    0 0 24px rgba(224, 173, 50, 0.18);

  animation: goldPulse 3s ease-in-out infinite;
}

.silver-text {
  color: #ffffffcf;

  text-shadow:
    0 0 6px rgba(109, 113, 114, 0.978),
    0 0 18px rgba(160, 180, 190, 0.45),
    2px 2px 0 rgba(70, 80, 85, 0.75);
}

.hero-text {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 160, 52, 0.4);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #111;
}

.price-ticker {
  background: rgba(12, 12, 12, 0.92);

  border: 4px solid rgba(246, 166, 6, 0.35);

  border-radius: 18px;

  padding: 30px;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 14px 45px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(224, 173, 50, 0.12);

  backdrop-filter: blur(0px);
}

.price-ticker::before {
  content: "";

  position: absolute;
  top: 0;
  left: -150%;

  width: 70%;
  height: 100%;

  background: linear-gradient(90deg, transparent, rgba(255, 215, 120, 0.1), rgba(255, 255, 255, 0.06), rgba(255, 215, 120, 0.1), transparent);

  transform: skewX(-25deg);

  animation: shine 12s infinite;

  pointer-events: none;
}

.price-ticker::after {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 180px;
  height: 2px;

  background: linear-gradient(90deg, transparent, rgba(255, 225, 120, 0.95), rgba(255, 255, 255, 0.95), rgba(255, 225, 120, 0.95), transparent);

  box-shadow:
    0 0 10px rgba(255, 215, 120, 0.45),
    0 0 24px rgba(255, 215, 120, 0.18);

  z-index: 5;
}
@keyframes shine {
  100% {
    left: 220%;
  }
}

.price-up {
  color: #45d66b !important;
}

.price-down {
  color: #ff5b5b !important;
}

.price-flash {
  transform: scale(1.04);
}

.price-value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trend-icon {
  font-size: 1rem;
  font-weight: 700;
  min-width: 14px;
}

.trend-neutral {
  color: rgb(250, 249, 247);
}

.trend-up {
  color: #45d66b;
}

.trend-down {
  color: #ff5b5b;
}

.ticker-label {
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.ticker-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 30px;
  min-height: 92px;
  padding: 20px 0;
}

.ticker-metal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-row strong {
  justify-self: end;
  text-align: right;
  min-width: 150px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  line-height: 1;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.ticker-metal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.metal-ring {
  position: relative;
  width: 64px;
  height: 64px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle at 35% 30%, rgba(40, 40, 40, 0.95), rgba(5, 5, 5, 1));

  overflow: hidden;
}

.metal-ring img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;
  object-fit: contain;

  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
}
.gold-ring {
  border: 1px solid rgba(255, 215, 120, 0.95);

  box-shadow:
    0 0 22px rgba(212, 160, 52, 0.38),
    inset 0 0 14px rgba(212, 160, 52, 0.12);
}

.silver-ring {
  border: 1px solid rgba(230, 235, 240, 0.95);

  box-shadow:
    0 0 18px rgba(210, 220, 230, 0.22),
    inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.metal-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  font-size: 1.5rem;

  background: radial-gradient(circle, #111 45%, #050505 100%);
}

.gold-icon {
  color: #f3cf7a;
  border: 1px solid rgba(212, 160, 52, 0.95);
  box-shadow: 0 0 18px rgba(212, 160, 52, 0.22);
}

.silver-icon {
  color: #d7dddd;
  border: 1px solid rgba(220, 230, 230, 0.75);
  box-shadow: 0 0 18px rgba(220, 230, 230, 0.16);
}

#last-updated {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.section {
  padding: 90px 0;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 40px;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.rate-card {
  background: var(--bg2);

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 35px;

  transition: 0.3s;
}

.rate-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.rate-number {
  font-size: 3rem;
  color: var(--gold);
  margin: 20px 0;
}

.market-note{
display:block;
margin-top:8px;
font-size:.68rem;
opacity:.45;
color:#b8b8b8;
text-align:left;
font-style:italic;
}

.dark-section {
  background: #141414;
}
.calculator-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;

  padding: 42px;

  border-radius: 30px;

  background: linear-gradient(145deg, #181818, #101010);

  border: 1px solid rgba(212, 160, 52, 0.2);

  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.calculator-box {
  display: grid;

  gap: 18px;

  margin-top: 30px;

  width: 100%;

  max-width: none;
}

.calculator-box option {
  background: #1d1d1d;
  color: #fff;
}

.calculator-box label {
  display: grid;

  gap: 8px;

  font-weight: 700;

  color: #fff;
}

.calculator-box input,
.calculator-box select {
  background: linear-gradient(90deg, #1f1f1f, #191919);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: white;

  padding: 16px;

  border-radius: 14px;

  font-size: 1rem;

  transition: 0.3s;

  outline: none;

  width: 100%;

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.calculator-box input:hover,
.calculator-box select:hover {
  border-color: rgba(212, 160, 52, 0.35);
}

.calculator-box input:focus,
.calculator-box select:focus {
  border-color: #d4a034;

  box-shadow:
    0 0 0 3px rgba(212, 160, 52, 0.15),
    0 0 20px rgba(212, 160, 52, 0.1);

  transform: translateY(-1px);
}

.calculator-box input::placeholder {
  color: #d8d8d8;
  opacity: 1;
}

.estimate-panel {
  background: none;

  border: none;

  box-shadow: none;

  padding: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.estimate-panel span {
  color: #d4a034;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-size: 0.8rem;
}

#estimate {
  display: block;

  font-size: 4rem;

  font-weight: 800;

  margin: 18px 0;

  color: white;

  line-height: 1;
}

.estimate-panel p {
  color: #cfcfcf;

  line-height: 1.6;

  margin-bottom: 25px;
}

.calculator-note {
  text-align: center;

  margin-top: 20px;

  opacity: 0.7;
}

@media (max-width: 900px) {
  .calculator-card {
    grid-template-columns: 1fr;

    padding: 28px;
  }

  #estimate {
    font-size: 2.7rem;
  }
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-box iframe {
  border-radius: 18px;
}

.small-note {
  opacity: 0.65;
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
  color: var(--muted);
}

.contact-section a,
.location-grid a,
.visit-section a {
  color: var(--gold);
  text-decoration: none;
}

.contact-section a:hover,
.location-grid a:hover,
.visit-section a:hover {
  color: #f3cf7a;
}

.logo {
  text-decoration: none;
}

.prices-page {
  background: var(--bg);
}

.prices-hero {
  padding: 90px 0 40px;
  background: radial-gradient(circle at top right, rgba(212, 160, 52, 0.14), transparent 35%), #111;
  border-bottom: 1px solid var(--border);
}

.prices-hero h1 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
}

.prices-updated {
  margin-top: 25px;
  color: var(--muted);
  font-size: 1.1rem;
}

.prices-list {
  max-width: 900px;
}

.price-section {
  margin-bottom: 35px;
  background: rgba(24, 24, 24, 0.92);
  border: 1px solid rgba(212, 160, 52, 0.18);
  border-radius: 18px;
  overflow: hidden;
}

.price-section h2 {
  padding: 22px 26px;
  margin: 0;
  font-size: 1.35rem;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(212, 160, 52, 0.16);
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-line:last-child {
  border-bottom: none;
}

.price-line span {
  color: var(--text);
}

.price-line strong {
  color: #f3cf7a;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.map-box iframe {
  border-radius: 18px;

  filter: invert(90%) hue-rotate(180deg) brightness(0.82) contrast(0.92) saturate(0.7);

  opacity: 0.92;
}

.map-box {
  overflow: hidden;

  border-radius: 18px;

  border: 1px solid rgba(212, 160, 52, 0.18);

  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 700px) {
  .prices-hero h1 {
    font-size: 2.5rem;
  }

  .price-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 900px) {
  .hero-inner,
  .rate-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .top-nav {
    display: none;
  }
}
@media (max-width:700px){

  .hero{
    padding-top:20px;
  }

  .hero h1{
    font-size:2rem;
    line-height:1.1;
    text-align:center;
  }

  .hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-actions .btn{
    flex:1;
    min-width:140px;
  }

  .live-prices-box{
    padding:22px;
  }

  .price-line{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:12px;
    align-items:center;
  }

  .price-line img{
    width:60px;
    height:60px;
  }

  .price-line strong{
    font-size:1.8rem;
  }

  #last-updated{
    font-size:1rem;
    line-height:1.5;
  }

  .market-note{
    font-size:.72rem;
    opacity:.55;
  }

}