    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Courier New', Courier, monospace;
      font-size: 16px;
      line-height: 1.7;
      color: #d4d0c8;
      background: #0e0e0e;
    }

    .wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Header */
    .site-header {
      border-bottom: 4px solid #c03030;
      padding: 12px 0;
    }

    .site-header .wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 32px;
    }

    .site-title {
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: #d4d0c8;
      text-decoration: none;
      line-height: 1;
      flex-shrink: 0;
    }

    .site-title:hover {
      color: #c03030;
    }

    .site-logo {
      display: block;
      flex-shrink: 0;
    }

    .header-avatar {
      width: 100px;
      height: 100px;
      border: 4px solid #333;
    }

    .header-avatar:hover {
      border-color: #c03030;
    }

    .social-icons {
      display: flex;
      gap: 0;
      justify-content: center;
      padding-bottom: 12px;
    }

    .social-icons a {
      display: block;
      padding: 8px 12px;
      color: #666;
      text-decoration: none;
      border: 2px solid #333;
      border-right: none;
    }

    .social-icons a:last-child {
      border-right: 2px solid #333;
    }

    .social-icons a:hover {
      color: #c03030;
      background: #141414;
      border-color: #c03030;
      border-right-color: #c03030;
      position: relative;
      z-index: 1;
    }

    .social-icons a:hover + a {
      border-left-color: #c03030;
    }

    .social-icons svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .site-nav {
      display: flex;
      gap: 0;
      flex-shrink: 0;
    }

    .site-nav a {
      display: block;
      padding: 6px 14px;
      color: #d4d0c8;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      border: 2px solid #333;
      border-right: none;
    }

    .site-nav a:last-child {
      border-right: 2px solid #333;
    }

    .site-nav a:hover {
      background: #c03030;
      color: #0e0e0e;
      border-color: #c03030;
    }

    /* Main content area */
    .site-main {
      min-height: calc(100vh - 260px);
      padding: 48px 0;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Courier New', Courier, monospace;
      font-weight: 700;
      line-height: 1.2;
      text-transform: uppercase;
      color: #e8e4e0;
    }

    h1 { font-size: 2.2rem; letter-spacing: 2px; margin: 0 0 32px; }
    h2 { font-size: 1.4rem; margin: 40px 0 16px; border-left: 4px solid #c03030; padding-left: 16px; }
    h3 { font-size: 1.1rem; margin: 32px 0 12px; color: #999; }

    p { margin: 0 0 1.4em; }

    a {
      color: #c03030;
      text-decoration: none;
      border-bottom: 1px solid transparent;
    }

    a:hover {
      border-bottom-color: #c03030;
    }

    strong { color: #e8e4e0; }

    code {
      font-family: 'Courier New', Courier, monospace;
      font-size: 0.9em;
      background: #1a1a1a;
      padding: 2px 8px;
      border: 1px solid #333;
      color: #c03030;
    }

    pre {
      background: #1a1a1a;
      border: 2px solid #333;
      border-left: 4px solid #c03030;
      padding: 20px;
      overflow-x: auto;
      margin: 24px 0;
    }

    pre code {
      background: none;
      border: none;
      padding: 0;
      color: #d4d0c8;
    }

    blockquote {
      border-left: 4px solid #c03030;
      margin: 24px 0;
      padding: 12px 24px;
      background: #141414;
      color: #999;
    }

    ul, ol { margin: 0 0 1.4em 24px; }
    li { margin-bottom: 6px; }

    img {
      max-width: 100%;
      border: 2px solid #333;
      display: block;
      margin: 24px 0;
    }

    hr {
      border: none;
      border-top: 2px solid #333;
      margin: 48px 0;
    }

    table { width: 100%; border-collapse: collapse; margin: 24px 0; }
    th, td { padding: 10px 14px; border: 1px solid #333; text-align: left; }
    th {
      background: #c03030;
      color: #0e0e0e;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.75rem;
    }
    td { background: #141414; }

    /* Post list */
    .post-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .post-item {
      border-left: 4px solid #333;
      margin-bottom: 0;
      padding: 24px 28px;
      position: relative;
      border-bottom: 1px solid #1a1a1a;
    }

    .post-item:hover {
      border-left-color: #c03030;
      background: #141414;
    }

    .post-item:hover .post-item-title a { color: #c03030; }

    .post-item-title {
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0 0 6px;
    }

    .post-item-title a {
      text-decoration: none;
      color: #e8e4e0;
      border-bottom: none;
    }

    .post-item-meta {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #666;
    }

    .post-item-summary {
      margin: 10px 0 0;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #999;
    }

    /* Tags */
    .tag-list {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      margin: 12px 0;
    }

    .tag-link {
      display: inline-block;
      padding: 3px 10px;
      border: 1px solid #333;
      border-right: none;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      color: #999;
    }

    .tag-link:last-child {
      border-right: 1px solid #333;
    }

    .tag-link:hover {
      background: #c03030;
      color: #0e0e0e;
      border-color: #c03030;
    }

    /* Taxonomy page */
    .taxonomy-list {
      list-style: none;
      padding: 0;
      margin: 24px 0;
    }

    .taxonomy-list li {
      display: inline-block;
    }

    .taxonomy-list li a {
      display: inline-block;
      padding: 8px 16px;
      border: 2px solid #333;
      margin: 0 -2px 8px 0;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.8rem;
      text-decoration: none;
      color: #d4d0c8;
    }

    .taxonomy-list li a:hover {
      background: #c03030;
      color: #0e0e0e;
      border-color: #c03030;
    }

    /* Pagination */
    nav.pagination { margin: 48px 0; }
    nav.pagination .pagination-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 0;
      flex-wrap: wrap;
    }
    nav.pagination a {
      display: inline-block;
      padding: 6px 14px;
      border: 2px solid #333;
      border-right: none;
      color: #d4d0c8;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.8rem;
    }
    nav.pagination a:hover { background: #c03030; color: #0e0e0e; border-color: #c03030; }
    nav.pagination li:last-child a { border-right: 2px solid #333; }
    .pagination-current span {
      display: inline-block;
      padding: 6px 14px;
      border: 2px solid #c03030;
      border-right: none;
      background: #c03030;
      color: #0e0e0e;
      font-weight: 700;
      font-size: 0.8rem;
    }
    .pagination-disabled span { display: none; }

    /* Post navigation */
    .post-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 48px;
      border-top: 4px solid #c03030;
    }

    .post-nav-link {
      padding: 20px;
      border: 1px solid #333;
      border-top: none;
      text-decoration: none;
      color: #d4d0c8;
    }

    .post-nav-link:first-child {
      border-right: none;
    }

    .post-nav-link:hover {
      background: #141414;
      border-color: #c03030;
    }

    .post-nav-label {
      display: block;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: #666;
      margin-bottom: 8px;
    }

    .post-nav-title {
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      color: #e8e4e0;
    }

    /* Alert shortcode */
    .alert {
      border: 2px solid #333;
      border-left: 4px solid #c03030;
      padding: 16px 20px;
      margin: 24px 0;
      font-size: 0.85rem;
      background: #141414;
      color: #999;
    }

    /* Home avatar */
    .home-avatar {
      width: 180px;
      height: 180px;
      border: 4px solid #333;
      border-radius: 0;
      margin: 0 0 32px;
      display: block;
    }

    .home-avatar:hover {
      border-color: #c03030;
    }

    /* Language switcher */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }

    .lang-switcher label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #666;
      padding: 6px 10px;
      background: transparent;
    }

    #lang-select {
      font-family: 'Courier New', Courier, monospace;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #d4d0c8;
      background: #141414;
      border: 2px solid #333;
      padding: 6px 10px 6px 10px;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4d0c8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 8px center;
      padding-right: 32px;
    }

    #lang-select:hover {
      background-color: #c03030;
      color: #0e0e0e;
      border-color: #c03030;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230e0e0e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    }

    #lang-select:focus {
      outline: none;
      border-color: #c03030;
    }

    #lang-select option {
      background: #0e0e0e;
      color: #d4d0c8;
      padding: 8px;
    }

    /* Responsive */
    @media (max-width: 640px) {
      .site-header .wrapper {
        flex-direction: column;
        gap: 20px;
      }

      .site-title { font-size: 1.8rem; letter-spacing: 4px; }
      h1 { font-size: 1.6rem; }

      .post-nav {
        grid-template-columns: 1fr;
      }

      .post-nav-link:first-child {
        border-right: 1px solid #333;
        border-bottom: none;
      }
    }
