@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #0a0a0f;
  color: #f7f5ff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.site-main {
  padding-top: 64px;
}

.site-main--home {
  padding-top: 0;
}

a {
  color: #b06aff;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: rgb(79.6236346888%, 61.568627451%, 100%);
}

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

ul, ol {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0d0d18;
}

::-webkit-scrollbar-thumb {
  background: #4a1e8a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8844dd;
}

::selection {
  background: rgba(176, 106, 255, 0.3);
  color: #f7f5ff;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(74, 30, 138, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 30, 138, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb--tl {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 30, 138, 0.25), transparent 70%);
  top: -150px;
  left: -150px;
}
.orb--br {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(136, 68, 221, 0.15), transparent 70%);
  bottom: -100px;
  right: -100px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-purple {
  color: #b06aff;
}

.text-green {
  color: #39ff8a;
}

.text-muted {
  color: #b3b0c7;
}

.text-mono {
  font-family: "JetBrains Mono", "Fira Code", monospace;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid;
  transition: all 0.15s ease;
}
.tag--machine {
  color: #4cc9f0;
  border-color: rgba(76, 201, 240, 0.4);
  background: rgba(76, 201, 240, 0.08);
}
.tag--web {
  color: #00d4ff;
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.08);
}
.tag--forensics {
  color: #b06aff;
  border-color: rgba(176, 106, 255, 0.4);
  background: rgba(176, 106, 255, 0.08);
}
.tag--pwn {
  color: #ff3366;
  border-color: rgba(255, 51, 102, 0.4);
  background: rgba(255, 51, 102, 0.08);
}
.tag--reverse-engineering {
  color: #ff8c42;
  border-color: rgba(255, 140, 66, 0.4);
  background: rgba(255, 140, 66, 0.08);
}
.tag--crypto {
  color: #ffdd57;
  border-color: rgba(255, 221, 87, 0.4);
  background: rgba(255, 221, 87, 0.08);
}
.tag--osint {
  color: #31e6a9;
  border-color: rgba(49, 230, 169, 0.4);
  background: rgba(49, 230, 169, 0.08);
}
.tag--malware {
  color: #5a0404;
  border-color: rgba(90, 4, 4, 0.4);
  background: rgba(90, 4, 4, 0.08);
}
.tag--network {
  color: #4e3de9;
  border-color: rgba(51, 35, 201, 0.4);
  background: rgba(51, 35, 201, 0.08);
}
.tag--threat-hunting {
  color: #4ed410;
  border-color: rgba(78, 212, 16, 0.4);
  background: rgba(78, 212, 16, 0.08);
}
.tag--misc {
  color: #d4d0e6;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}
.tag--default {
  color: #d4d0e6;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.difficulty {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}
.difficulty--easy {
  color: #39ff8a;
  background: rgba(57, 255, 138, 0.1);
}
.difficulty--medium {
  color: #ff8c42;
  background: rgba(255, 140, 66, 0.1);
}
.difficulty--hard {
  color: #ff3366;
  background: rgba(255, 51, 102, 0.1);
}
.difficulty--insane {
  color: #b06aff;
  background: rgba(176, 106, 255, 0.1);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease;
}
.nav.scrolled {
  border-color: rgba(176, 106, 255, 0.3);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Share Tech Mono", monospace;
  font-size: 1.2rem;
  color: #f7f5ff;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav__logo-bracket {
  color: #b06aff;
  font-weight: 700;
}
.nav__logo-name {
  color: #f7f5ff;
}
.nav__logo-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #b06aff;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
.nav__logo:hover .nav__logo-name {
  color: #b06aff;
}
.nav__logo:hover {
  text-shadow: 0 0 20px rgba(176, 106, 255, 0.6), 0 0 40px rgba(176, 106, 255, 0.3);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 640px) {
  .nav__links {
    display: none;
  }
}
.nav__link {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #d4d0e6;
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  position: relative;
}
.nav__link::before {
  content: ">";
  color: #b06aff;
  margin-right: 0.3rem;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.nav__link:hover, .nav__link.active {
  color: #b06aff;
  border-color: rgba(176, 106, 255, 0.3);
  background: rgba(176, 106, 255, 0.15);
}
.nav__link:hover::before, .nav__link.active::before {
  opacity: 1;
}
.nav__mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d4d0e6;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
@media (max-width: 640px) {
  .nav__mobile-toggle {
    display: block;
  }
}
.nav__mobile-toggle:hover {
  border-color: rgba(176, 106, 255, 0.3);
  color: #b06aff;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 24, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(176, 106, 255, 0.3);
  z-index: 99;
  padding: 1rem;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.9rem;
  color: #d4d0e6;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: #b06aff;
  background: rgba(176, 106, 255, 0.15);
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero {
  padding-top: calc(5.5rem + env(safe-area-inset-top));
  padding-bottom: 4.5rem;
  position: relative;
}
@media (max-width: 640px) {
  .hero {
    padding-top: calc(6.25rem + env(safe-area-inset-top));
    padding-bottom: 4rem;
  }
}
.hero__eyebrow {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b06aff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #b06aff;
}
.hero__title {
  font-family: "Share Tech Mono", monospace;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #f7f5ff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__title .accent {
  color: #b06aff;
  text-shadow: 0 0 20px rgba(176, 106, 255, 0.6), 0 0 40px rgba(176, 106, 255, 0.3);
}
.hero__desc {
  font-size: 1.05rem;
  color: #d4d0e6;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: "Share Tech Mono", monospace;
  font-size: 2rem;
  color: #b06aff;
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 20px rgba(176, 106, 255, 0.6), 0 0 40px rgba(176, 106, 255, 0.3);
}
.hero__stat-label {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b3b0c7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  border: 1px solid;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn--primary {
  color: #0a0a0f;
  background: #b06aff;
  border-color: #b06aff;
}
.btn--primary:hover {
  background: rgb(77.5028293196%, 57.568627451%, 100%);
  border-color: rgb(77.5028293196%, 57.568627451%, 100%);
  color: #0a0a0f;
  box-shadow: 0 0 20px rgba(176, 106, 255, 0.5), 0 0 60px rgba(176, 106, 255, 0.15);
  transform: translateY(-1px);
}
.btn--outline {
  color: #b06aff;
  background: transparent;
  border-color: rgba(176, 106, 255, 0.3);
}
.btn--outline:hover {
  background: rgba(176, 106, 255, 0.15);
  border-color: #b06aff;
  box-shadow: 0 0 20px rgba(136, 68, 221, 0.2), 0 0 60px rgba(136, 68, 221, 0.06);
  transform: translateY(-1px);
}
.btn--ghost {
  color: #d4d0e6;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
}
.btn--ghost:hover {
  color: #f7f5ff;
  border-color: rgba(176, 106, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.writeups-page .container {
  max-width: 1440px;
}
.writeups-page .layout-main__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .writeups-page .layout-main__grid {
    grid-template-columns: 1fr;
  }
  .writeups-page .sidebar {
    order: 2;
    margin-top: 2rem;
  }
}
.writeups-page .posts-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.post-card {
  background: #111127;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.25s ease;
}
.post-card:hover {
  background: #161635;
  border-color: rgba(176, 106, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(136, 68, 221, 0.2), 0 0 60px rgba(136, 68, 221, 0.06);
}
.post-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #b06aff, transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.post-card:hover::before {
  opacity: 1;
}
.post-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.post-card__tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1 1 auto;
}
.post-card__date {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.7rem;
  color: #b3b0c7;
  letter-spacing: 0.05em;
  margin-left: auto;
  white-space: nowrap;
  flex: 0 0 auto;
}
.post-card__title {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.2rem;
  color: #f7f5ff;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.post-card:hover .post-card__title {
  color: #b06aff;
}
.post-card__excerpt {
  font-size: 0.98rem;
  color: #d4d0e6;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.7rem;
  color: #b3b0c7;
}
.post-card__read-more {
  color: #b06aff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s ease;
}
.post-card:hover .post-card__read-more {
  gap: 0.5rem;
}

.post-card--featured {
  grid-column: 1/-1;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
}
.post-card--featured::after {
  content: "FEATURED";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #b06aff;
  background: rgba(176, 106, 255, 0.1);
  border: 1px solid rgba(176, 106, 255, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.post-card--featured .post-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.post-card--featured .post-card__title {
  font-size: 1.4rem;
}
@media (max-width: 640px) {
  .post-card--featured {
    flex-direction: column;
  }
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-header__title {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.25rem;
  color: #f7f5ff;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-header__title::before {
  content: "//";
  color: #b06aff;
  font-size: 0.9rem;
}
.section-header__link {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.75rem;
  color: #b3b0c7;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s ease;
}
.section-header__link:hover {
  color: #b06aff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar--sticky {
  position: sticky;
  top: calc(64px + 1.25rem);
  align-self: start;
  max-height: calc(100vh - 64px - 2.5rem);
  overflow-y: auto;
  padding-right: 0.25rem;
}
@media (max-width: 900px) {
  .sidebar--sticky {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

.widget {
  background: #111127;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.25rem;
}
.widget__title {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b06aff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.widget__title::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #b06aff;
}

.toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc__list--nested {
  margin-top: 0.2rem;
  margin-left: 0.65rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(176, 106, 255, 0.16);
}

.toc__list--subnested {
  margin-top: 0.15rem;
  margin-left: 0.55rem;
  padding-left: 0.55rem;
  border-left: 1px solid rgba(176, 106, 255, 0.1);
}

.toc__item {
  margin: 0;
  padding: 0;
}

.toc__item + .toc__item {
  margin-top: 0.12rem;
}

.toc__item--level-2 {
  margin-top: 0.45rem;
}
.toc__item--level-2:first-child {
  margin-top: 0;
}

.toc__link {
  display: block;
  border-left: 2px solid transparent;
  border-radius: 4px;
  color: #d4d0e6;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.toc__link:hover, .toc__link.toc-active {
  color: #b06aff;
  background: rgba(176, 106, 255, 0.08);
  border-left-color: #b06aff;
}

.toc__link--level-2 {
  padding: 0.38rem 0.48rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.toc__link--level-3 {
  padding: 0.25rem 0.42rem;
  color: #b3b0c7;
  font-size: 0.73rem;
}

.toc__link--level-4 {
  padding: 0.18rem 0.38rem;
  color: rgba(179, 176, 199, 0.78);
  font-size: 0.68rem;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.category-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.92rem;
  color: #d4d0e6;
  padding: 0.5rem 0.65rem;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.category-list a:hover {
  color: #b06aff;
  background: rgba(176, 106, 255, 0.15);
}
.category-list a.is-active {
  color: #f7f5ff;
  background: rgba(176, 106, 255, 0.14);
  border: 1px solid rgba(176, 106, 255, 0.35);
  box-shadow: 0 0 20px rgba(176, 106, 255, 0.12), 0 0 60px rgba(176, 106, 255, 0.036);
  padding-left: 1.15rem;
}
.category-list a.is-active::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #b06aff;
  transform: translateY(-50%);
}
.category-list a span {
  color: #b3b0c7;
  font-size: 0.78rem;
}
.category-list a.is-active span {
  color: #f7f5ff;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.recent-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.recent-list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.recent-list__title {
  font-size: 0.85rem;
  color: #f7f5ff;
  line-height: 1.35;
  transition: color 0.15s ease;
}
.recent-list__title:hover {
  color: #b06aff;
}
.recent-list__meta {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.68rem;
  color: #b3b0c7;
}

.layout-main {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.layout-main__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .layout-main__grid {
    grid-template-columns: 1fr;
  }
  .layout-main__grid .sidebar {
    order: -1;
  }
}

.post-hero {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 3rem;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.post-hero__title {
  font-family: "Share Tech Mono", monospace;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: #f7f5ff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.post-hero__excerpt {
  font-size: 1.25rem;
  color: #d4d0e6;
  line-height: 1.7;
  max-width: 760px;
}
.post-hero__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.75rem;
  color: #b3b0c7;
  flex-wrap: wrap;
}
.post-hero__info span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.post-content {
  max-width: 1040px;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-family: "Share Tech Mono", monospace;
  color: #f7f5ff;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.post-content h1 {
  font-size: 1.9rem;
}
.post-content h2 {
  font-size: 1.4rem;
  color: #b06aff;
  border-left: 3px solid #b06aff;
  padding-left: 0.75rem;
  text-shadow: 0 0 20px rgba(176, 106, 255, 0.6), 0 0 40px rgba(176, 106, 255, 0.3);
}
.post-content h3 {
  font-size: 1.3rem;
  color: rgb(74.321621266%, 51.568627451%, 100%);
}
.post-content h4 {
  font-size: 1rem;
  color: #d4d0e6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}
.post-content p {
  margin-bottom: 1rem;
  color: #f7f5ff;
  line-height: 1.85;
  font-size: 1.08rem;
}
.post-content ul, .post-content ol {
  margin: 0 0 1.5rem 1.5rem;
}
.post-content ul li, .post-content ol li {
  margin-bottom: 0.5rem;
  color: #f7f5ff;
  list-style: initial;
}
.post-content ul li::marker, .post-content ol li::marker {
  color: #b06aff;
}
.post-content ol li {
  list-style: decimal;
}
.post-content blockquote {
  border-left: 3px solid #4a1e8a;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(74, 30, 138, 0.1);
  border-radius: 0 4px 4px 0;
}
.post-content blockquote p {
  margin: 0;
  color: #d4d0e6;
  font-style: italic;
}
.post-content .note, .post-content .tip, .post-content .warning, .post-content .flag {
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: 1rem;
  border-left: 3px solid;
  display: flex;
  gap: 0.75rem;
}
.post-content .note strong, .post-content .tip strong, .post-content .warning strong, .post-content .flag strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.post-content .note {
  background: rgba(0, 212, 255, 0.07);
  border-color: #00d4ff;
  color: rgb(20%, 86.5098039216%, 100%);
}
.post-content .tip {
  background: rgba(57, 255, 138, 0.07);
  border-color: #39ff8a;
  color: rgb(32.3529411765%, 100%, 60.0267379679%);
}
.post-content .warning {
  background: rgba(255, 140, 66, 0.07);
  border-color: #ff8c42;
  color: rgb(100%, 60.986616869%, 35.8823529412%);
}
.post-content .flag {
  background: rgba(176, 106, 255, 0.07);
  border-color: #b06aff;
  color: #b06aff;
}
.post-content code:not([class*=language-]) {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.88em;
  color: #ebe6ff;
  background: rgba(74, 30, 138, 0.22);
  border: 1px solid rgba(176, 106, 255, 0.18);
  border-radius: 4px;
  padding: 0.12em 0.38em;
  white-space: break-spaces;
}
.post-content .highlighter-rouge,
.post-content > pre {
  margin: 1.2rem 0;
  border: 1px solid rgba(176, 106, 255, 0.28);
  border-radius: 6px;
  background: #0b0b18;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: auto;
}
.post-content .highlighter-rouge .highlight {
  margin: 0;
  background: transparent !important;
  overflow: auto;
}
.post-content .highlighter-rouge pre,
.post-content .highlighter-rouge code {
  margin: 0;
  border: 0;
  background: transparent !important;
  color: #f7f5ff;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre;
  tab-size: 2;
}
.post-content .highlighter-rouge > .highlight > pre.highlight {
  padding: 0;
  max-height: rem;
}
.post-content .highlighter-rouge .rouge-table {
  width: 100%;
  margin: 0 !important;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
  font-size: inherit;
}
.post-content .highlighter-rouge .rouge-table td {
  padding: 0 !important;
  border: 0 !important;
  background: transparent;
}
.post-content .highlighter-rouge .rouge-gutter {
  width: 2.35rem;
  min-width: 2.35rem;
  border-right: 1px solid rgba(176, 106, 255, 0.14) !important;
  background: rgba(10, 10, 15, 0.36) !important;
  vertical-align: top;
}
.post-content .highlighter-rouge .rouge-gutter pre {
  padding: 0.55rem 0.45rem 0.65rem 0.35rem;
  color: rgba(179, 176, 199, 0.72);
  text-align: right;
  user-select: none;
}
.post-content .highlighter-rouge .rouge-code pre {
  padding: 0.55rem 0.75rem 0.65rem;
  overflow-x: auto;
}
.post-content > pre {
  max-height: 34rem;
  padding: 0.55rem 0.75rem 0.65rem;
  color: #f7f5ff;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre;
  tab-size: 2;
}
.post-content img {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 2rem 0;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}
.post-content table th {
  background: rgba(74, 30, 138, 0.3);
  color: #b06aff;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(176, 106, 255, 0.3);
}
.post-content table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #d4d0e6;
}
.post-content table tr:hover td {
  background: rgba(176, 106, 255, 0.04);
}
.post-content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 3rem 0;
  position: relative;
}
.post-content hr::after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #0a0a0f;
  color: #4a1e8a;
  padding: 0 0.75rem;
  font-size: 0.6rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer__brand {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.1rem;
  color: #b06aff;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(176, 106, 255, 0.6), 0 0 40px rgba(176, 106, 255, 0.3);
}
.footer__desc {
  font-size: 0.85rem;
  color: #b3b0c7;
  line-height: 1.7;
  max-width: 280px;
}
.footer__col-title {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b06aff;
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: #b3b0c7;
  transition: color 0.15s ease;
}
.footer__links a:hover {
  color: #b06aff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.72rem;
  color: #b3b0c7;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  color: #b3b0c7;
  transition: color 0.15s ease;
  font-size: 0.85rem;
}
.footer__social a:hover {
  color: #b06aff;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d4d0e6;
  text-decoration: none;
  transition: all 0.15s ease;
}
.pagination__link:hover {
  border-color: rgba(176, 106, 255, 0.3);
  color: #b06aff;
  background: rgba(176, 106, 255, 0.15);
}
.pagination__link--active {
  background: #b06aff;
  border-color: #b06aff;
  color: #0a0a0f;
}
.pagination__link--prev, .pagination__link--next {
  width: auto;
  padding: 0 0.75rem;
  gap: 0.3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: #111127;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: calc(64px + 1rem);
  height: fit-content;
}
.profile-card__avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a1e8a, #8844dd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: "Share Tech Mono", monospace;
  font-size: 1.5rem;
  color: #f7f5ff;
  border: 2px solid rgba(176, 106, 255, 0.3);
  box-shadow: 0 0 20px rgba(136, 68, 221, 0.3), 0 0 60px rgba(136, 68, 221, 0.09);
}
.profile-card__name {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.1rem;
  color: #f7f5ff;
  margin-bottom: 0.25rem;
}
.profile-card__handle {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  color: #b06aff;
  margin-bottom: 1rem;
}
.profile-card__bio {
  font-size: 0.85rem;
  color: #d4d0e6;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.profile-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.tool-card {
  background: #111127;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.25rem;
  transition: all 0.25s ease;
}
.tool-card:hover {
  border-color: rgba(176, 106, 255, 0.3);
  transform: translateY(-2px);
}
.tool-card__name {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.9rem;
  color: #b06aff;
  margin-bottom: 0.35rem;
}
.tool-card__desc {
  font-size: 0.8rem;
  color: #d4d0e6;
  line-height: 1.5;
}

.highlight {
  color: #f7f5ff;
}
.highlight .hll {
  background-color: rgba(74, 30, 138, 0.3);
}
.highlight .c {
  color: #6272a4;
  font-style: italic;
}
.highlight .err {
  color: #ff3366;
}
.highlight .k {
  color: #b06aff;
  font-weight: bold;
}
.highlight .l {
  color: #39ff8a;
}
.highlight .n {
  color: #f7f5ff;
}
.highlight .o {
  color: #00d4ff;
}
.highlight .p {
  color: #d4d0e6;
}
.highlight .cm {
  color: #6272a4;
  font-style: italic;
}
.highlight .cp {
  color: #ff8c42;
}
.highlight .c1 {
  color: #6272a4;
  font-style: italic;
}
.highlight .cs {
  color: #6272a4;
  font-style: italic;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .kc {
  color: #b06aff;
  font-weight: bold;
}
.highlight .kd {
  color: #b06aff;
  font-weight: bold;
}
.highlight .kn {
  color: #b06aff;
  font-weight: bold;
}
.highlight .kp {
  color: #b06aff;
}
.highlight .kr {
  color: #b06aff;
  font-weight: bold;
}
.highlight .kt {
  color: #00d4ff;
}
.highlight .ld {
  color: #39ff8a;
}
.highlight .m {
  color: #ff8c42;
}
.highlight .s {
  color: #39ff8a;
}
.highlight .na {
  color: #00d4ff;
}
.highlight .nb {
  color: #b06aff;
}
.highlight .nc {
  color: #00d4ff;
  font-weight: bold;
}
.highlight .no {
  color: #ff8c42;
}
.highlight .nd {
  color: #00d4ff;
}
.highlight .ni {
  color: #f7f5ff;
}
.highlight .ne {
  color: #ff3366;
  font-weight: bold;
}
.highlight .nf {
  color: #00d4ff;
}
.highlight .nl {
  color: #f7f5ff;
}
.highlight .nn {
  color: #00d4ff;
}
.highlight .nx {
  color: #f7f5ff;
}
.highlight .py {
  color: #b06aff;
}
.highlight .nt {
  color: #b06aff;
}
.highlight .nv {
  color: #f7f5ff;
}
.highlight .ow {
  color: #00d4ff;
  font-weight: bold;
}
.highlight .mb {
  color: #ff8c42;
}
.highlight .mf {
  color: #ff8c42;
}
.highlight .mh {
  color: #ff8c42;
}
.highlight .mi {
  color: #ff8c42;
}
.highlight .mo {
  color: #ff8c42;
}
.highlight .sa {
  color: #39ff8a;
}
.highlight .sb {
  color: #39ff8a;
}
.highlight .sc {
  color: #39ff8a;
}
.highlight .dl {
  color: #39ff8a;
}
.highlight .sd {
  color: #39ff8a;
  font-style: italic;
}
.highlight .s2 {
  color: #39ff8a;
}
.highlight .se {
  color: #ff8c42;
  font-weight: bold;
}
.highlight .sh {
  color: #39ff8a;
}
.highlight .si {
  color: #39ff8a;
  font-style: italic;
}
.highlight .sx {
  color: #39ff8a;
}
.highlight .sr {
  color: #ff3366;
}
.highlight .s1 {
  color: #39ff8a;
}
.highlight .ss {
  color: #b06aff;
}
.highlight .bp {
  color: #d4d0e6;
}
.highlight .fm {
  color: #00d4ff;
}
.highlight .vc {
  color: #f7f5ff;
}
.highlight .vg {
  color: #f7f5ff;
}
.highlight .vi {
  color: #f7f5ff;
}
.highlight .vm {
  color: #f7f5ff;
}
.highlight .il {
  color: #ff8c42;
}
.highlight .gl {
  color: #b3b0c7;
  user-select: none;
  padding-right: 0.45rem;
  opacity: 0.7;
}

/*# sourceMappingURL=main.css.map */