/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(212, 173, 69, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 173, 69, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(212, 173, 69, 0.1);
  transform: translateY(-2px);
}

.btn-glow {
  animation: glow-pulse 3s infinite;
}

.download-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* === TABS === */
.tab-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s;
}

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

.tab-btn.active {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
  font-weight: 600;
}

/* === MOB ROW === */
.mob-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.mob-row:hover {
  border-color: var(--border-hover);
}

.mob-badge {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(212, 173, 69, 0.15);
  color: var(--gold);
  white-space: nowrap;
}

.mob-badge--boss {
  background: rgba(196, 64, 64, 0.2);
  color: var(--red);
}

.mob-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mob-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.mob-hp-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.mob-hp-fill {
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  transition: width 0.6s ease-out;
}

.mob-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  white-space: nowrap;
}

/* === ECONOMY CARD === */
.eco-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 45px;
  height: 45px;
  background: url('../corner.png') top left / contain no-repeat;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.eco-card:hover::before {
  opacity: 0.65;
}

.eco-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.eco-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.eco-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.eco-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === HERO LOGO === */
.hero-logo {
  max-width: 550px;
  width: 90%;
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 24px rgba(212, 173, 69, 0.35));
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === PATCH LINK === */
.cta-patch-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gold-dim);
  transition: color 0.2s;
}

.cta-patch-link:hover {
  color: var(--gold);
}
