/* =========================
   $DOGO — Custom Styles
   ========================= */

:root {
  --gold: #f7b500;
  --gold-light: #ffd65a;
  --gold-dark: #b87500;
  --black: #080808;
  --dark: #11100d;
  --cream: #fff8e7;
  --muted: #a9a9a9;
  --border: rgba(247, 181, 0, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.dogo-nav {
  background: rgba(8, 8, 8, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
}

.navbar-brand {
  color: #fff !important;
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
  font-weight: 800;
}

.navbar-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-link {
  color: rgba(255,255,255,.75) !important;
  font-weight: 600;
  font-size: .92rem;
}

.nav-link:hover {
  color: var(--gold-light) !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,.2);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, #ffd75a, #e89a00);
  color: #171000;
  border: 0;
  box-shadow: 0 12px 35px rgba(247,181,0,.2);
}

.btn-gold:hover {
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(247,181,0,.34);
}

.btn-outline-light {
  border-width: 1px;
  background: rgba(255,255,255,.03);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(247,181,0,.16), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(247,181,0,.08), transparent 30%),
    #080808;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.glow-one {
  width: 320px;
  height: 320px;
  background: rgba(255,190,20,.18);
  right: 12%;
  top: 30%;
}

.glow-two {
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,.06);
  left: 10%;
  bottom: 10%;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(247,181,0,.1);
  animation: pulse 1.7s infinite;
}

.hero-title {
  margin: 20px 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(3.7rem, 7vw, 7rem);
  line-height: .83;
  letter-spacing: -.045em;
  font-weight: 800;
}

.hero-title span,
.section-title span,
.community-card h2 span {
  color: var(--gold-light);
}

.hero-copy {
  max-width: 600px;
  color: #bcbcbc;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contract-box {
  max-width: 470px;
  padding: 13px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  text-align: left;
}

.contract-box small {
  display: block;
  color: #777;
  font-size: .62rem;
  letter-spacing: .16em;
  margin-bottom: 5px;
}

.contract-box span {
  color: #ddd;
  font-size: .78rem;
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-btn {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-size: 1rem;
}

.coin-wrap {
  position: relative;
  width: min(500px, 88vw);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
}

.hero-coin {
  position: relative;
  width: 72%;
  height: 72%;
  object-fit: cover;
  border-radius: 50%;
  border: 9px solid rgba(255,205,70,.85);
  box-shadow:
    0 0 0 14px rgba(247,181,0,.07),
    0 30px 90px rgba(0,0,0,.8),
    0 0 80px rgba(247,181,0,.3);
  animation: float 5s ease-in-out infinite;
  z-index: 3;
}

.coin-ring {
  position: absolute;
  width: 92%;
  height: 92%;
  border: 1px solid rgba(247,181,0,.25);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.coin-ring::before,
.coin-ring::after {
  content: "✦";
  position: absolute;
  color: var(--gold-light);
  font-size: 22px;
}

.coin-ring::before {
  top: -12px;
  left: 50%;
}

.coin-ring::after {
  bottom: -12px;
  right: 50%;
}

.coin-shadow {
  position: absolute;
  width: 55%;
  height: 10%;
  bottom: 8%;
  background: rgba(0,0,0,.7);
  filter: blur(25px);
  border-radius: 50%;
}

.floating-badge {
  position: absolute;
  z-index: 4;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(20,20,20,.9);
  border: 1px solid rgba(247,181,0,.28);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  font-size: .78rem;
  font-weight: 900;
}

.badge-one { top: 17%; right: 2%; animation: float 4s ease-in-out infinite .4s; }
.badge-two { bottom: 20%; left: 3%; animation: float 4.5s ease-in-out infinite 1s; }
.badge-three { top: 53%; right: -1%; animation: float 4.2s ease-in-out infinite 1.6s; }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #777;
  font-size: .6rem;
  letter-spacing: .15em;
}

.scroll-cue i {
  color: var(--gold);
  animation: bounce 1.5s infinite;
}

.ticker-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gold);
  color: #171000;
  transform: rotate(-1deg) scale(1.03);
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 45px;
  padding: 12px 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  font-weight: 800;
  animation: marquee 20s linear infinite;
}

.section-padding {
  padding: 120px 0;
}

.about-section {
  background:
    radial-gradient(circle at 85% 30%, rgba(247,181,0,.08), transparent 30%),
    var(--cream);
  color: #171717;
}

.about-section .section-label,
.token-section .section-label {
  color: var(--gold-dark);
}

.section-title {
  margin: 15px 0 20px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.04em;
  font-weight: 800;
}

.section-copy {
  max-width: 650px;
  color: #6d6d6d;
  line-height: 1.8;
}

.text-link {
  color: #9b6700;
  font-weight: 800;
}

.about-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #121212;
  color: #fff;
  padding: 55px;
  display: flex;
  align-items: end;
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.about-card::before {
  content: "$DOGO";
  position: absolute;
  top: -20px;
  right: -25px;
  color: rgba(247,181,0,.06);
  font-family: "Baloo 2", cursive;
  font-size: 10rem;
  font-weight: 800;
}

.about-card-content {
  position: relative;
  z-index: 2;
}

.mini-tag {
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.about-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 3.5rem;
  line-height: .95;
  margin: 15px 0 30px;
}

.code-lines {
  display: grid;
  gap: 10px;
  color: #aaa;
}

.code-lines span {
  display: inline-block;
  width: 30px;
  color: var(--gold-light);
  font-weight: 800;
}

.paw {
  position: absolute;
  opacity: .08;
  font-size: 9rem;
}

.paw-1 { top: 45px; right: 50px; transform: rotate(-25deg); }
.paw-2 { bottom: -20px; right: 20px; transform: rotate(25deg); }

.dark-section {
  background: #0c0c0c;
}

.dark-section .section-copy {
  color: #858585;
}

.step-card {
  position: relative;
  height: 100%;
  padding: 35px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transition: .3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247,181,0,.35);
}

.step-number {
  color: #555;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 30px 0 20px;
  border-radius: 18px;
  background: rgba(247,181,0,.12);
  color: var(--gold-light);
  font-size: 1.5rem;
}

.step-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.step-card p {
  color: #858585;
  line-height: 1.7;
  margin: 0;
}

.coming-soon {
  color: #666;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.token-section {
  background: #fff8e7;
  color: #171717;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.token-card {
  padding: 32px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.7);
  border-radius: 22px;
}

.token-value {
  color: #171717;
  font-family: "Baloo 2", cursive;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}

.token-name {
  color: #8b6d31;
  margin-top: 8px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.community-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(247,181,0,.18), transparent 35%),
    #080808;
}

.community-card {
  max-width: 900px;
  margin: auto;
  padding: 70px 30px;
  border: 1px solid rgba(247,181,0,.18);
  border-radius: 35px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
}

.community-coin {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 0 45px rgba(247,181,0,.2);
}

.community-coin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card h2 {
  margin: 15px 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .9;
  font-weight: 800;
}

.community-card p {
  max-width: 580px;
  margin: 0 auto 28px;
  color: #888;
  line-height: 1.7;
}

.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-size: 1.6rem;
  font-weight: 800;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.footer-note {
  color: #666;
  font-size: .9rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(247,181,0,.08);
  font-size: 1.2rem;
  transition: .25s;
}

.social-link:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
}

.footer-line {
  border-color: rgba(255,255,255,.07);
  margin: 30px 0 20px;
}

.footer-bottom {
  color: #555;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .55; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 15px;
    padding: 15px;
    background: rgba(12,12,12,.97);
    border-radius: 18px;
  }

  .hero-title {
    font-size: clamp(3.6rem, 13vw, 6rem);
  }

  .coin-wrap {
    width: min(430px, 85vw);
  }
}

@media (max-width: 575px) {
  .section-padding,
  .community-section {
    padding: 85px 0;
  }

  .hero-section .min-vh-100 {
    padding-top: 100px !important;
  }

  .hero-title {
    font-size: 3.7rem;
  }

  .hero-copy {
    font-size: .95rem;
  }

  .about-card {
    min-height: 390px;
    padding: 32px;
  }

  .about-card h3 {
    font-size: 2.8rem;
  }

  .token-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    font-size: .65rem;
    padding: 8px 11px;
  }

  .badge-one { right: -1%; }
  .badge-two { left: -1%; }
}
