/* ─── Michael Trump ($MT) — USA × Basketball Theme ─────────────────────────── */

:root {
  --usa-red: #b22234;
  --usa-red-dark: #8b1a28;
  --usa-blue: #002868;
  --usa-blue-light: #1a3a7a;
  --white: #ffffff;
  --off-white: #f0f2f5;
  --gold: #ffd700;
  --gold-dark: #daa520;
  --court-wood: #c68642;
  --court-line: rgba(255, 255, 255, 0.85);
  --bg-dark: #0a0e1a;
  --bg-card: rgba(0, 40, 104, 0.45);
  --text-muted: #a0aec0;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Site Background (banner.png) ───────────────────────────────────────────── */

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("banner.png") center center / cover no-repeat fixed;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.55) 0%, rgba(10, 14, 26, 0.82) 45%, rgba(10, 14, 26, 0.94) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 40, 104, 0.35), transparent);
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--usa-red);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 2px;
}

.logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  border: 2px solid var(--usa-red);
  object-fit: cover;
  object-position: center top;
}

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

.nav-links a {
  color: var(--off-white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--usa-blue);
  border: 2px solid var(--usa-red);
  border-radius: 8px;
  font-size: 1.1rem !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("banner.png") center 30% / cover no-repeat;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.92) 0%, rgba(10, 14, 26, 0.65) 45%, rgba(10, 14, 26, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.4) 0%, rgba(10, 14, 26, 0.75) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-stars {
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  background:
    radial-gradient(circle 2px, var(--white) 100%, transparent 100%),
    radial-gradient(circle 1.5px, var(--white) 100%, transparent 100%);
  background-size: 40px 40px, 60px 60px;
  background-position: 10px 10px, 30px 30px;
  opacity: 0.12;
  mask-image: linear-gradient(to bottom, black 30%, transparent);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--usa-red), var(--usa-red-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.title-line {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: 4px;
  color: var(--white);
  text-shadow: 3px 3px 0 var(--usa-blue);
}

.title-trump {
  color: var(--usa-red);
  text-shadow: 3px 3px 0 var(--usa-blue), -1px -1px 0 var(--gold);
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(240, 242, 245, 0.85);
  max-width: 420px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--usa-red), var(--usa-red-dark));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(178, 34, 52, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(178, 34, 52, 0.6);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--usa-blue-light);
}

.btn-secondary:hover {
  background: var(--usa-blue);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(160, 174, 192, 0.9);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ─── Hero Visual (logo.png) ───────────────────────────────────────────────── */

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  border: 3px solid var(--usa-red);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 215, 0, 0.25);
  animation: float-logo 4s ease-in-out infinite;
}

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

/* ─── Sections ─────────────────────────────────────────────────────────────── */

.section {
  position: relative;
  padding: 5rem 0;
}

.section .container {
  position: relative;
  z-index: 1;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  color: var(--white);
}

.section-sub {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ─── About Cards ──────────────────────────────────────────────────────────── */

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

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--usa-red);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}

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

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

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-card a {
  color: var(--gold);
  font-weight: 600;
}

/* ─── Truth Social Post ────────────────────────────────────────────────────── */

.truth-section {
  background: linear-gradient(180deg, transparent, rgba(84, 72, 238, 0.08), transparent);
}

.truth-card {
  display: block;
  max-width: 560px;
  margin: 0 auto;
  background: #1a1a2e;
  border: 2px solid rgba(84, 72, 238, 0.45);
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.truth-card:hover {
  transform: translateY(-4px);
  border-color: #5448ee;
  box-shadow: 0 12px 40px rgba(84, 72, 238, 0.25);
  color: var(--white);
}

.truth-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.truth-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--usa-red);
  flex-shrink: 0;
}

.truth-author {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.truth-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.truth-handle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.truth-logo {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #5448ee;
  background: rgba(84, 72, 238, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  flex-shrink: 0;
}

.truth-media {
  position: relative;
  background: #0d0d18;
}

.truth-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.truth-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5448ee;
  background: rgba(84, 72, 238, 0.08);
}

.truth-arrow {
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.truth-card:hover .truth-arrow {
  transform: translateX(4px);
}

/* ─── Chart ────────────────────────────────────────────────────────────────── */

.chart-section {
  background: linear-gradient(180deg, transparent, rgba(0, 40, 104, 0.15), transparent);
}

.chart-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--usa-blue-light);
  box-shadow: var(--shadow);
  background: #0d1117;
}

.chart-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.chart-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chart-note code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  color: var(--gold);
}

/* ─── Buy Section ──────────────────────────────────────────────────────────── */

.ca-box {
  background: var(--bg-card);
  border: 2px solid var(--usa-red);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.ca-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

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

.ca-row code {
  font-size: 0.85rem;
  word-break: break-all;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  max-width: 100%;
}

.btn-copy {
  background: var(--usa-blue);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy:hover:not(:disabled) {
  background: var(--usa-blue-light);
}

.btn-copy:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.buy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--usa-blue), var(--usa-blue-light));
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.buy-card:hover:not(.disabled) {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 40, 104, 0.5);
  color: var(--white);
}

.buy-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.buy-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.buy-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Social Banner ────────────────────────────────────────────────────────── */

.social-section {
  padding-bottom: 3rem;
}

.social-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--usa-red-dark), var(--usa-blue));
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.social-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.social-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */

.footer {
  border-top: 2px solid var(--usa-red);
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.footer-logo {
  height: 36px;
  width: auto;
  border-radius: 6px;
  border: 2px solid var(--usa-red);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 500px;
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.97);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--usa-red);
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-banner::after {
    background:
      linear-gradient(180deg, rgba(10, 14, 26, 0.55) 0%, rgba(10, 14, 26, 0.88) 100%);
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo {
    max-width: 280px;
  }

  .chart-wrapper iframe {
    height: 450px;
  }

  .social-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
