/* --- Base & Layout Styles --- */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

header {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  flex: 1;
  margin: 0 auto;
  padding: 40px 20px;
  max-width: 900px;
  text-align: left;
}

p {
  margin-bottom: 15px;
  line-height: 1.6;
}

a {
  color: #00bfff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #aaa;
  margin-top: auto;
  width: 100%;
}

/* --- Headings --- */
h1 {
  font-size: 44px;
  color: #00bfff;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 28px;
  color: #00bfff;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}

h3 {
  font-size: 22px;
  color: #00ffff;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: left;
}

/* --- Warning Banner Styles --- */
.warning-banner {
  background-color: #8B0000;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.warning-banner .warning-icon {
  font-size: 1.5em;
  margin-right: 10px;
  line-height: 1;
}
.warning-banner .close-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-left: 15px;
  padding: 0 10px;
}
.warning-banner p {
  margin: 0;
  padding: 0 10px;
}

/* --- Cookie Consent Banner Styles --- */
#cookieConsentBanner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  z-index: 2000;
  font-size: 14px;
  line-height: 1.5;
}
#cookieConsentBanner p {
  margin: 0 0 10px 0;
  padding: 0;
}
#cookieConsentBanner p a {
  color: #00bfff;
  text-decoration: none;
}
#cookieConsentBanner button {
  background-color: #00bfff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
#cookieConsentBanner button:hover {
  background-color: #0099cc;
}
#cookieConsentBanner button#declineCookies {
  background-color: #555;
}
#cookieConsentBanner button#declineCookies:hover {
  background-color: #777;
}

/* --- Page Specific Styles --- */
/* index.html */
.main-intro p {
  font-size: 1.2em;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  text-align: center;
}
.quote {
  font-style: italic;
  font-size: 1.1em;
  color: #aaa;
  margin-bottom: 5px;
}
.quote-author {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 30px;
}
.video-container {
  margin: 20px auto;
  width: 100%;
  max-width: 800px;
  height: 450px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-caption-container {
  width: 100%;
  max-width: 800px;
  margin: 10px auto 40px auto;
  text-align: center;
}
.video-caption {
  font-size: 1.1em;
  color: #aaa;
}

/* about.html */
.nft-list {
  margin-top: 40px;
  text-align: left;
}
.nft-list h3 {
  margin-bottom: 10px;
}
.nft-list ul {
  list-style: none;
  padding: 0;
}
.nft-list li {
  margin-bottom: 6px;
}
.onchain-identity-box {
  background: linear-gradient(135deg, rgba(0,191,255,0.1), rgba(0,255,191,0.1));
  border-radius: 8px;
  padding: 15px;
  margin-top: 25px;
  border: 1px solid #00bfff;
}

.text-highlight-cyan {
  color: #00ffff;
}

/* missions.html */
main#missions-main {
    max-width: 1000px;
}
.mission {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.mission h2 {
  margin-top: 0;
  font-size: 24px;
  color: #00bfff;
}
.mission p {
  margin: 10px 0;
  line-height: 1.6;
}
.mission-thumbnail {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 8px;
  flex-shrink: 0;
}
.mission-content {
    flex-grow: 1;
}
.cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto;
    padding: 15px 30px;
    background-color: #00bfff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #009acd;
}

/* memecoin.html */
.image-container {
  margin: 20px auto 40px auto;
  width: 100%;
  max-width: 700px;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
  overflow: hidden;
}
.image-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Specific styles for memecoin.html's token details section */
.token-details-box {
  background: linear-gradient(135deg, rgba(0,191,255,0.1), rgba(0,255,191,0.1));
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #00bfff;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.token-details-box img.token-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.token-details-box ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.token-details-box ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.token-details-box h3 {
  width: 100%;
  margin-top: 15px;
}

/* news.html specifics */
.news-item {
  background-color: #222;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  text-align: left;
}
.news-item h3 {
  margin-top: 0;
  color: #00bfff;
}
.news-date {
  display: block;
  font-size: 0.9em;
  color: #888;
  margin-bottom: 15px;
}
.news-hashtags {
  margin-top: 15px;
  font-style: italic;
  color: #00ffff;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
  header h1 {
    font-size: 24px;
  }
  nav a {
    margin: 0 8px;
    font-size: 14px;
  }
  main {
    padding: 20px 15px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .main-intro p {
    font-size: 1em;
  }
  .video-container {
    height: 200px;
  }
  .image-container {
    height: 300px;
    max-width: 300px;
  }
  .mission {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mission-thumbnail {
    margin: 0 0 15px 0;
  }
  .mission h2 {
    font-size: 20px;
  }
  .mission p {
    font-size: 14px;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .warning-banner p {
    font-size: 12px;
  }
  .warning-banner .close-button {
    font-size: 16px;
  }
  .warning-banner .warning-icon {
    font-size: 1.2em;
  }
  #cookieConsentBanner {
    padding: 10px 15px;
    font-size: 12px;
  }
  #cookieConsentBanner button {
    padding: 8px 15px;
    font-size: 12px;
  }
  .token-details-box {
    flex-direction: column;
    align-items: center;
  }
  .token-details-box img.token-logo {
    margin-bottom: 15px;
  }
}
