:root {
  --border-color: rgba(255, 255, 255, 0.15);
  --accent: #9d4edd;
  --accent-light: rgba(157, 78, 221, 0.1);
  --text-primary: rgb(237, 233, 254);
  --text-muted: rgba(196, 181, 253, 0.55);
  --bg: #0e0b14;
}

* {
  font-family:
    SF Pro,
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;

  color: var(--text-primary);
}

body {
  background-color: var(--bg);
}

#logo h2 {
  color: var(--accent);
  letter-spacing: -0.02em;
}

#logo h3 {
  color: var(--text-muted);
}

#links > a {
  transition: scale 0.05s ease-out, color 0.15s ease;
  color: var(--text-primary);
  &:hover {
    scale: 1.1;
    color: var(--accent);
  }
}

#content h1 {
  color: var(--text-primary);
}

#content p {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}

.line-holder {
  position: relative;
  width: min(300px, 100%);
  height: 10px;
}

.smallLine {
  position: absolute;
  height: 10px;
  width: 200%;
  transform: translate(-25%) scale(0.5);
}

.smallLine1 {
  background: linear-gradient(
    45deg,
    transparent,
    transparent 49%,
    var(--border-color) 49%,
    transparent 51%
  );
}
.smallLine2 {
  background: linear-gradient(
    -45deg,
    transparent,
    transparent 49%,
    var(--border-color) 49%,
    transparent 51%
  );
}

.smallLine {
  background-size: 20px 20px;
}

#back {
  color: var(--accent);
  font-weight: 600;

  i {
    transition: transform 0.1s ease-out;
    margin-right: 4px;
  }

  &:hover {
    i {
      transform: translateX(-2px);
    }
  }
}

#blog-content {
  gap: 10px;
  display: flex;
  flex-direction: column;

  .line-holder {
    margin: 30px auto;
    width: 200px;
  }

  & > * {
    opacity: 0;
  }

  h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
  }

  p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
}

section[id^="blog-0"] {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  max-width: 0;
}

footer p {
  color: var(--text-muted);
}

/* Coming Soon block */
.coming-soon-block {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border: 1.5px dashed rgba(157, 78, 221, 0.35);
  border-radius: 16px;
  background: var(--accent-light);
}

.coming-soon-title {
  color: var(--accent) !important;
}

.coming-soon-block p {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}

.coming-soon-dots {
  display: flex;
  gap: 6px;
  margin-top: 1.25rem;
}

.coming-soon-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.coming-soon-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.coming-soon-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}