body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #050008;
  color: #ffffff;
  overflow-x: hidden;
}

/* Partículas */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Loader */
#exo-loader {
  position: fixed;
  inset: 0;
  background: #050008;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity .6s ease;
}

.loader-line {
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, #ff00ff, #7a00ff);
  animation: loading 1.2s infinite alternate;
  margin-bottom: 20px;
}

@keyframes loading {
  from { transform: scaleX(.3); opacity: .4; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Blog visible */
.blog-hidden {
  opacity: 0;
  transform: translateY(20px);
}

.blog-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all .8s ease;
}

/* Layout */
#blog-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 100px 20px;
}

.blog-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.blog-subtitle {
  opacity: .7;
  margin-bottom: 60px;
}

.post {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.post-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.post-content {
  opacity: .8;
  line-height: 1.6;
}

.post-img {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 8px;
}

.post-video {
  margin-top: 20px;
  width: 100%;
  border-radius: 8px;
}
