body {
    margin: 0;
    padding: 1;
    background-color: #000;
    color: #ececeb;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

h1,
h2,
h3 {
    color: #FFD700;
}

a {
    color: #FFD700;
    text-decoration: none;
}

.section {
    margin-bottom: 1rem;
}

.cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.95rem 1.5rem;
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}

ul {
    padding-left: 1.2rem;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

@media (max-width: 600px) {
  .tagline {
    font-size: 1.2rem;       /* smaller font for mobile */
    animation: typing 4s steps(40, end) forwards,
               blink 0.75s step-end infinite;
  }
}
.partner-logo {
    height: 90px;
    margin: 1rem;
    opacity: 0.85;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.footer-logos {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 200px;
    width: auto;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.dark-section {
    background-color: #0c0c0c;
    color: #f5f5f5;
    padding: 30px 20px;
}

.checklist li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    background: url('images/domdaox-pp-images.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    /* ⬅️ add spacing below hero */
}

.hero-logo {
    width: 260px;
    max-width: 80%;
}

.tagline {
    font-style: italic;
    font-size: 1.6rem;
    color: #FFD700;
    text-align: center;
    margin-top: 5px;

    white-space: nowrap;       /* ✅ keeps it one line during typing */
    overflow: hidden;          /* ✅ hides the text until “typed” */
    border-right: 2px solid #FFD700;
    display: inline-block;     /* ✅ ensures width animation works */

    width: 0;                  /* ✅ start collapsed */
    animation: typing 3.5s steps(40, end) forwards,
               blink 0.75s step-end infinite;
    text-shadow: 0 0 8px #ffd70077, 0 0 20px #ffd70044;
}

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    /* scrollbar width */
}

::-webkit-scrollbar-track {
    background: #000;
    /* track background (black) */
}

::-webkit-scrollbar-thumb {
    background-color: #090700;
    /* scrollbar thumb (gold) */
    border-radius: 10px;
    border: 2px solid #000;
    /* adds spacing effect inside track */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e6c200;
    /* slightly darker gold on hover */
}

/* For Firefox */
* {
    scrollbar-width: thick;
    scrollbar-color: #FFD700 #000;
}

.domain-boxes {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.domain-box {
    background: #FFD700;
    color: #000;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    /* removes underline */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.93);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domain-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.93);
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 32px;
    color: #FFD700;
    text-shadow: 0 0 12px #FFD70055, 0 0 24px #FFD70044;
    cursor: pointer;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.back-to-top:hover {
    transform: scale(1.2) rotate(-5deg);
    text-shadow: 0 0 18px #FFD700aa, 0 0 36px #FFD70088;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 32px;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: scale(1.2);
    text-shadow: 0 0 12px #FFD700aa;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.back-to-top-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top img {
    width: 60px;
    /* adjust size */
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.back-to-top .arrow {
    position: absolute;
    font-size: 28px;
    color: #FFD700;
    font-weight: bold;
    top: 50%;
}

.back-to-top:hover {
    transform: scale(1.2);
}

.gold {
    color: #FFD700;
    font-weight: bold;
}
/* Only style scrollbar on DomainDAO page */
#domaindao::-webkit-scrollbar {
  width: 12px;
}
#domaindao::-webkit-scrollbar-track {
  background: #000;
}
#domaindao::-webkit-scrollbar-thumb {
  background-color: #FFD700;
  border-radius: 10px;
  border: 2px solid #000;
}
#domaindao::-webkit-scrollbar-thumb:hover {
  background-color: #e6c200;
}

/* Firefox */
#domaindao {
  scrollbar-width: thin;
  scrollbar-color: #FFD700 #000;
}
/* Back-to-top button ONLY for DomainDAO */
#domaindao .back-to-top {
  color: #FFD700;
}
#domaindao .back-to-top .arrow {
  color: #FFD700;
}
/* === NAVIGATION === */
/* === GhostFire Nav Banner Upgrade (from DOD) === */
.ghostfire-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #090700;
  padding: 10px 0;
  border-bottom: 3px solid #ff6a00;
  box-shadow: 0 0 20px rgb(255, 255, 255);
}

.ghostfire-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ghostfire-nav li a {
  font-family: 'Cinzel', serif;   /* pulls in DOD look */
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff6a00;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.ghostfire-nav li a:hover,
.ghostfire-nav li a.active {
  color: #fff;
  border-bottom: 2px solid var(--orange);
  text-shadow: 0 0 4px #ff6a00, 0 0 12px #fff;
}
.footer {
  background: #000;
  /* site bg */
  border-top: 2px solid var(--orange);
  text-align: center;
  padding: 1rem 1rem;
  color: var(--black);
}

.footer-slogan {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 1.1rem;
  color: #ffffff;
  padding: 1rem
}
