/* ========== GLOBAL ========== */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ========== INTRO SECTION ========== */
#intro {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#intro-bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.intro-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}


.intro-text {
  text-align: center;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.morph-logo {
  width: 60%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #158fc7);
}

@media (min-width: 768px) {
  .morph-logo {
    max-width: 280px;
  }
}

.intro-desc {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.intro-desc strong {
  color: #fff;
}

/* Subscribe box fix for mobile */
.subscribe-box {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.subscribe-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.subscribe-box input[type="email"] {
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  width: 100%;
}

.subscribe-box button {
  padding: 12px;
  font-size: 1em;
  background-color: #7fff00;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe-box button:hover {
  background-color: #adff2f;
}

.subscriber-count {
  margin-top: 10px;
  color: #ccc;
  font-size: 0.9em;
}

/* ========== FOOTER ========== */
.site-footer {
  text-align: center;
  color: #888;
  font-size: 0.85em;
  margin: 60px 0 30px;
  padding: 10px;
}

.site-footer a {
  color: #00f0ff;
  text-decoration: underline;
}

/* ========== REST OF YOUR STYLES REMAIN UNCHANGED ========== */
/* You can paste the rest of your previous CSS here if needed */
.post-body h1, .post-body h2, .post-body h3 {
  color: #fff;
  margin-top: 1em;
  font-weight: bold;
}

.post-body p {
  color: #ccc;
  line-height: 1.6;
  margin: 1em 0;
}

.post-body em {
  font-style: italic;
  color: #aaa;
}

.post-body strong {
  font-weight: bold;
  color: #fff;
}

.post-body code {
  background: #111;
  color: #0f0;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
}


.post-title-banner {
  background-size: cover;
  background-position: center;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-title-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  border-radius: 12px;
  text-align: center;
}

.post-title {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 10px #00f0ff;
}

.meta {
  text-align: center;
  margin: 20px 0;
  font-size: 0.95em;
  color: #888;
}

.meta .tag {
  margin: 0 5px;
  color: #00f0ff;
}


