:root {
  --ember-orange: #ff8a00;
  --ember-orange-dark: #d96f00;
  --ember-panel: #1a1a1a;
  --ember-panel-light: #232323;
}

html { scroll-behavior: smooth; }

body {
  background: #0d0d0d;
  color: #f8f9fa;
}

.brand-coin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #111;
  background: var(--ember-orange);
}

.navbar {
    border-color: #FCAE1E !important;
}

.navbar-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .navbar-logo {
    width: 32px;
    height: 32px;
  }
}

.nav-link:hover,
.nav-link.active,
.link-orange,
.section-label,
.feature-icon {
  color: var(--ember-orange) !important;
}

.btn-orange {
  color: #111;
  background: var(--ember-orange);
  border-color: var(--ember-orange);
  font-weight: 600;
}

.btn-orange:hover {
  color: #111;
  background: #ff9f2f;
  border-color: #ff9f2f;
}

.hero-section {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .6) 48%, rgba(0, 0, 0, .2) 100%),
    url("images/hero.png") center / cover no-repeat;
}

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.carousel-border {
    border-color: #FCAE1E !important;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FCAE1E;
    opacity: 0.45;
    border: none;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: #FCAE1E;
    opacity: 1;
    transform: scale(1.15);
}

.product-card,
.panel {
  background: var(--ember-panel);
  border: 1px solid #2c2c2c;
  border-radius: .75rem;
}

.product-card {
  overflow: hidden;
  transition: transform .2s ease;
}

.product-card:hover { transform: translateY(-4px); }

.game-card {
  background-color: rgba(252, 174, 30, 0.05);
  border: 1px solid rgba(252, 174, 30, 0.25);
  border-radius: 0.5rem;
  box-shadow: 0 0 14px rgba(252, 174, 30, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 174, 30, 0.7);
}

.game-card .card-img-top {
  border-bottom: 1px solid rgba(252, 174, 30, 0.35);
}

.game-card-text {
  color: rgba(255, 255, 255, 0.68);
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.promo-badge {
  color: #111;
  background: var(--ember-orange);
}

.new-badge {
  color: #fff;
  background: var(--ember-orange-dark);
}

.bg-section { background: #121212; }

.product-row {
  min-height: 88px;
  padding: .75rem;
  background: var(--ember-panel-light);
  border-radius: .5rem;
}

.mini-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: .4rem;
}

.promo-image {
  max-height: 255px;
  object-fit: cover;
}

.feature-icon { font-size: 2rem; }

.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #8f959b; text-decoration: none; }
.footer-links a:hover { color: var(--ember-orange); }

#footer {
    background-color: #0b0b0b;
    border-color: #FCAE1E !important;
    color: white;
}

.footer-border {
    border-color: #FCAE1E !important;
}

.footer-title {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f8f9fa;
}

.footer-link {
    display: inline-block;
    color: #b8b8b8;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: #ff7a00;
    transform: translateX(4px);
}

.footer-divider {
    margin: 1.5rem 0;
    border-color: #FCAE1E;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 540px;
    background-position: 65% center;
  }

  .hero-section .display-4 { font-size: 2.4rem; }
}

/*-------------- Utilities ------------------*/
.text-orange {
    color: #FCAE1E !important;
}

.text-gold {
  color: #D4AA04 !important;
}