 <!-- CSS Styling -->
<style>
  
  /* Apply Calibri globally */
    html {
      font-family: Calibri, 'Trebuchet MS', sans-serif;
    }
    
    body {
      margin: 0;
      padding: 0;
    }

  
  :root { color-scheme: dark; }

  html, body {
    background: #000 !important;
    color: #e6e6e6;
  }

  h1, h2, h3 { color: #ffffff; }

  .site-header, .site-footer {
    background: #000;
    color: #e6e6e6;
  }

  .site-nav a {
    color: #e6e6e6;
    text-decoration: none;
  }
  .site-nav a:hover { color: #ffffff; }

  .article-card {
    background: #000;
    color: #e6e6e6;
    border: none;
    box-shadow: none;
  }

  .article-card img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  a { color: #7ab6ff; }
  a:hover { color: #a8cfff; }

  .news-category { background: transparent; }

  .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  /* 🔁 Mobile override: switch to one column */
  @media (max-width: 768px) {
    .content {
      grid-template-columns: 1fr;
    }
  }

.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em 0;
}

.site-logo {
  width: 100%;        /* fill the available width */
  max-width: 680px;   /* but never exceed 680px */
  height: auto;       /* keep aspect ratio */
  display: block;     /* allows centering with margin auto */
  margin: 0 auto 0.5em; /* center horizontally */
  margin: 40px 10px; /* XXpx top/bottom, XXpx left/right */
}


.site-nav ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0.5em 0;
  list-style: none;
}

.site-nav li {
  margin: 0 1em;
}

ul li a {
  font-size: 2.0em;    /* increase font size */
}

#wall-street {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0px 0px; /* XXpx top/bottom, XXpx left/right */
}

#main-street {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0px 0px; /* XXpx top/bottom, XXpx left/right */
}

#meme-street {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0px 0px; /* XXpx top/bottom, XXpx left/right */
}

#chatbot-widget {
  display: none;
}
#chatbot-widget[hidden] {
  display: none !important;
}

img:missing,
img[src=""],
img:not([src]) {
  display: none !important;
}

.article-card {
  border: 1px solid #fff;       
  border-radius: 10px;
  margin: 30px 8px; /* XXpx top/bottom, XXpx left/right */
  background-color: #1a1a1a;
  transition: all 0.25s ease;
}

/* Default (mobile‑first): no lift */
.article-card:hover {
  box-shadow: none;
  transform: none;
}

/* Desktop: subtle lift + lighter shadow */
@media (min-width: 768px) {
  .article-card:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25); /* smaller & softer */
    transform: translateY(-8px);               /* less lift than before */
  }
}

.article-card img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Global border overflow fix */
* {
  box-sizing: border-box;
}

.site-footer {
  background: #111;
  color: #ccc;
  padding: 2rem 1rem;
  font-size: 0.85rem; /* smaller text */
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
}

.footer-links {
  font-size: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1rem;
}

.footer-links li {
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr; /* single column on mobile */
  }
}

/* Splash screen container */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* Black background */
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
}

/* Logo style */
.splash-logo {
  max-width: 360px;
  margin-bottom: 0px;
}

/* Splash content layout */
.splash-content {
  text-align: center;
}

/* H1 style */
.splash-content h1 {
  font-size: 3.0rem;
  margin-bottom: 2.5rem;
}

/* H2 style */
.splash-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Progress bar container */
.progress-bar {
  width: 300px;
  height: 30px;
  background: #000;          /* Black background */
  border: 1px solid #fff;    /* White outline */
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
}

/* Progress animation fill */
.progress {
  height: 100%;
  width: 0;
  background: #fff;          /* White fill */
  border-radius: 999px;
  animation: loadProgress 2s linear forwards;
}

@keyframes loadProgress {
  to { width: 100%; }
}


</style>
<!-- END CSS Styling -->
