/* ─── Trump 250 — Vintage American Theme ─────────────────────────────────── */

:root {
  --navy: #0a1628;
  --navy-mid: #122240;
  --navy-light: #1a3055;
  --red: #8b1a1a;
  --red-bright: #b22222;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --parchment: #f4ead5;
  --parchment-dark: #e8dcc0;
  --parchment-shadow: #c4b896;
  --cream: #faf6ec;
  --ink: #1a1208;
  --ink-muted: #4a3f2f;
  --white: #ffffff;

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Libre Baskerville", Georgia, serif;
  --font-accent: "IM Fell English", Georgia, serif;

  --header-h: 72px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--navy);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Background layers ───────────────────────────────────────────────────── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background: url("banner.png") center top / cover no-repeat;
  background-attachment: fixed;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 22, 40, 0.35) 0%,
      rgba(10, 22, 40, 0.55) 35%,
      rgba(10, 22, 40, 0.82) 65%,
      rgba(10, 22, 40, 0.92) 100%
    );
}

.stripes-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red-bright) 0px,
    var(--red-bright) 40px,
    var(--white) 40px,
    var(--white) 80px
  );
  z-index: -1;
  opacity: 0.85;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.logo-eagle {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--red-bright) 0%, var(--red) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(139, 26, 26, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #cc2929 0%, var(--red-bright) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1rem 4rem;
  position: relative;
}

.hero-logo {
  width: min(320px, 72vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(201, 162, 39, 0.08);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, #a8861f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--red-bright);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 30px rgba(178, 34, 34, 0.4);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: rgba(250, 246, 236, 0.95);
  max-width: 620px;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-tagline strong {
  color: var(--gold-light);
  font-style: normal;
}

.hero-tagline em {
  color: var(--gold);
}

.hero-flags {
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-contract {
  width: min(640px, 92vw);
}

.contract-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.contract-box code {
  flex: 1;
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  color: var(--cream);
  word-break: break-all;
  text-align: left;
}

.copy-btn {
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-light);
  padding: 0.4rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}

.copy-btn:hover {
  background: rgba(201, 162, 39, 0.3);
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  opacity: 0.5;
}

.ornament-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.ornament-star {
  color: var(--gold);
  font-size: 1rem;
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
  position: relative;
}

.about {
  background: rgba(10, 22, 40, 0.65);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(250, 246, 236, 0.65);
  font-size: 1.05rem;
}

/* ── Parchment cards ───────────────────────────────────────────────────────── */
.parchment {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%),
    var(--parchment);
  color: var(--ink);
  border: 1px solid var(--parchment-shadow);
  box-shadow:
    var(--shadow),
    inset 0 0 60px rgba(196, 184, 150, 0.3);
  position: relative;
}

.parchment::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(139, 26, 26, 0.2);
  pointer-events: none;
  border-radius: 2px;
}

/* ── About ─────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.about-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.card-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  background: rgba(139, 26, 26, 0.06);
}

/* ── Stats strip ───────────────────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(90deg, rgba(139, 26, 26, 0.92) 0%, rgba(178, 34, 34, 0.92) 50%, rgba(139, 26, 26, 0.92) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 2rem 0;
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.stat {
  text-align: center;
  min-width: 120px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* ── Chart ─────────────────────────────────────────────────────────────────── */
.chart-section {
  background: rgba(0, 0, 0, 0.5);
}

.chart-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}

#chart-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
}

#dexscreener-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.chart-placeholder {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--ink-muted);
}

.chart-placeholder.hidden {
  display: none;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.placeholder-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.placeholder-hint code {
  background: rgba(139, 26, 26, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.8rem;
  color: var(--red);
}

/* ── Buy section ───────────────────────────────────────────────────────────── */
.buy-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
  border-radius: var(--radius);
}

.buy-content .section-label,
.buy-content .section-title {
  text-align: left;
}

.buy-content p {
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.buy-section {
  background: rgba(10, 22, 40, 0.55);
}

.buy-visual {
  display: flex;
  justify-content: center;
}

.buy-logo {
  width: min(280px, 80vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s;
}

.buy-logo:hover {
  transform: scale(1.03);
}

.community {
  background: rgba(10, 22, 40, 0.6);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--cream);
  transition: all 0.25s;
}

.social-card:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon.twitter {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.social-icon.telegram {
  background: rgba(0, 136, 204, 0.25);
  color: #29b6f6;
}

.social-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.social-handle {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 246, 236, 0.65);
  margin-top: 0.15rem;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 3rem 0 2rem;
  background: rgba(0, 0, 0, 0.55);
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(250, 246, 236, 0.45);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 246, 236, 0.3);
  font-family: var(--font-accent);
  font-style: italic;
}

/* ── Toast ─────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  opacity: 0;
  transition: all 0.3s;
  z-index: 200;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .banner-bg {
    background-attachment: scroll;
    background-position: center top;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 22, 40, 0.98);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .buy-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .buy-visual {
    order: -1;
  }

  .hero-logo {
    width: min(240px, 65vw);
  }

  .stat-divider {
    display: none;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  #chart-embed-container {
    padding-bottom: 85%;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .buy-actions {
    flex-direction: column;
  }

  .buy-actions .btn {
    width: 100%;
  }
}
