* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', 'Helvetica Neue', system-ui, sans-serif;
    }
    body {
      background: #0a0a0f;
      color: #d0d0d8;
      line-height: 1.7;
      font-size: 1.05rem;
      transition: background 0.2s;
    }
    a {
      color: #f0f;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 0, 255, 0.3);
      transition: 0.2s;
    }
    a:hover {
      color: #0ff;
      border-bottom-color: #0ff;
      text-shadow: 0 0 6px #0ff;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .site-header {
      background: #101018;
      border-bottom: 2px solid #f0f;
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: 0 2px 20px rgba(255, 0, 255, 0.2);
    }
    .header-flex {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
    }
    .my-logo {
      font-size: 2.2rem;
      font-weight: 900;
      letter-spacing: 3px;
      background: linear-gradient(45deg, #f0f, #0ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-transform: uppercase;
      border: none;
      filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    }
    .my-logo:hover {
      border: none;
      color: #f0f;
      background: none;
      -webkit-text-fill-color: #f0f;
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .desktop-nav {
      display: flex;
      list-style: none;
      gap: 20px;
    }
    .desktop-nav a {
      color: #ccc;
      font-weight: 500;
      border: none;
      padding: 6px 8px;
    }
    .desktop-nav a:hover {
      color: #0ff;
    }
    .search-icon {
      font-size: 1.2rem;
      background: #1a1a28;
      width: 42px;
      height: 42px;
      border-radius: 30px;
      display: grid;
      place-items: center;
      border: 1px solid #333;
      color: #f0f;
    }
    .search-icon:hover {
      background: #2a2a40;
      color: #0ff;
      border-color: #0ff;
    }
    .burger {
      display: none;
      cursor: pointer;
      font-size: 1.8rem;
      background: none;
      border: none;
      color: #f0f;
    }
    .mobile-nav {
      display: none;
      width: 100%;
      flex-direction: column;
      background: #151520;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #2a2a45;
      margin-top: 10px;
    }
    .mobile-nav a {
      padding: 8px 4px;
      border-bottom: 1px solid #2a2a40;
    }
    .mobile-nav.show {
      display: flex;
    }
    .breadcrumb {
      font-size: 0.95rem;
      background: #15151f;
      padding: 10px 0;
      border-bottom: 1px solid #202030;
    }
    .breadcrumb a {
      color: #aaa;
    }
    .breadcrumb span {
      margin: 0 8px;
      color: #555;
    }
    .breadcrumb .current {
      color: #f0f;
    }
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      padding: 28px 0;
      align-items: center;
      border-bottom: 1px solid #202030;
    }
    .hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
      background: linear-gradient(135deg, #f0f, #0ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero p {
      margin: 22px 0;
      font-size: 1.2rem;
      color: #b8b8c8;
    }
    .hero-image {
      background: #1a1a2a;
      border-radius: 14px;
      padding: 14px;
      border: 1px solid #392f4a;
      box-shadow: 0 0 30px rgba(0,255,255,0.15);
    }
    .hero-image img {
      width: 100%;
      border-radius: 10px;
      display: block;
    }
    .lore-badge {
      display: inline-block;
      background: #200a30;
      color: #f0f;
      border-radius: 30px;
      padding: 5px 16px;
      font-size: 0.8rem;
      font-weight: bold;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 0.35fr;
      gap: 40px;
      padding: 20px 0;
    }
    article {
      min-width: 0;
    }
    h2 {
      font-size: 2rem;
      margin: 34px 0 16px;
      color: #0ff;
      border-left: 6px solid #f0f;
      padding-left: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    h3 {
      font-size: 1.5rem;
      margin: 28px 0 12px;
      color: #f8d0ff;
    }
    h4 {
      font-size: 1.2rem;
      margin: 20px 0 8px;
      color: #ffb3ff;
    }
    p {
      margin: 16px 0;
      color: #c6c6d2;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background: #141420;
      border-radius: 12px;
      margin: 20px 0;
      overflow: hidden;
      box-shadow: 0 4px 22px rgba(0,0,0,0.7);
    }
    th {
      background: #1f1f36;
      color: #0ff;
      font-weight: 700;
      padding: 12px 10px;
      border-bottom: 2px solid #f0f;
    }
    td {
      padding: 12px 10px;
      border-bottom: 1px solid #202032;
      vertical-align: top;
    }
    tr:last-child td {
      border-bottom: none;
    }
    .definition-card {
      background: #131325;
      padding: 20px;
      border-radius: 14px;
      border-left: 4px solid #f0f;
      margin: 20px 0;
      transition: 0.2s;
    }
    .definition-card:hover {
      border-left-color: #0ff;
      background: #181830;
    }
    .interaction-panel {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      background: #151523;
      border-radius: 30px;
      padding: 14px 14px;
      margin: 22px 0;
    }
    .btn {
      background: transparent;
      border: 1px solid #f0f;
      color: #f0f;
      padding: 10px 20px;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
    }
    .btn:hover {
      background: #f0f;
      color: #000;
      box-shadow: 0 0 18px #f0f;
    }
    .btn-alt {
      border-color: #0ff;
      color: #0ff;
    }
    .btn-alt:hover {
      background: #0ff;
      color: #000;
      box-shadow: 0 0 18px #0ff;
    }
    input[type="text"], input[type="search"], textarea {
      background: #0f0f1a;
      border: 1px solid #34345a;
      color: #eee;
      padding: 12px 14px;
      border-radius: 30px;
      width: 100%;
    }
    input:focus, textarea:focus {
      outline: 2px solid #f0f;
    }
    .sidebar {
      background: #10101c;
      border-radius: 20px;
      padding: 20px;
      border: 1px solid #2a2040;
      height: fit-content;
      position: sticky;
      top: 90px;
    }
    .sidebar h3 {
      font-size: 1.3rem;
      color: #0ff;
      margin-top: 0;
    }
    .sidebar ul {
      list-style: none;
    }
    .sidebar li {
      margin: 8px 0;
    }
    .sidebar a {
      border: none;
      border-bottom: 1px dashed #333;
      padding-bottom: 4px;
    }
    .comment-area, .score-panel {
      background: #111126;
      padding: 20px;
      border-radius: 20px;
      margin-top: 24px;
    }
    .comment-area textarea {
      min-height: 100px;
      border-radius: 14px;
    }
    .friend-link {
      display: block;
      background: #0a0a12;
      border-top: 2px solid #2a2a40;
      margin-top: 30px;
      padding: 24px 20px 20px;
    }
    .friend-link a {
      display: inline-block;
      margin: 0 16px 8px 0;
      color: #0ff;
    }
    footer {
      background: #06060c;
      padding: 24px 20px;
      border-top: 1px solid #1c1c30;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      font-size: 0.9rem;
      color: #777;
    }
    footer .copy {
      width: 100%;
      text-align: center;
      margin-top: 14px;
    }
    @media (max-width: 850px) {
      .burger {
        display: block;
      }
      .desktop-nav {
        display: none;
      }
      .content-grid {
        grid-template-columns: 1fr;
      }
      .hero {
        grid-template-columns: 1fr;
      }
      .sidebar {
        position: static;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
    }
    @media (min-width: 851px) {
      .mobile-nav {
        display: none !important;
      }
    }
    .search-wrapper {
      background: #13132a;
      padding: 4px;
      border-radius: 36px;
      display: flex;
      border: 1px solid #3a2a5a;
      max-width: 420px;
    }
    .search-wrapper input {
      border: none;
      background: transparent;
      flex: 1;
    }
    .search-wrapper button {
      background: none;
      border: none;
      color: #f0f;
      cursor: pointer;
      font-size: 1.2rem;
      padding: 8px 12px;
    }
    .quote-block {
      border-left: 4px solid #0ff;
      background: #1a1a2a;
      padding: 16px 22px;
      margin: 22px 0;
      font-style: italic;
      border-radius: 0 14px 14px 0;
    }
    .glimmer-text {
      background: radial-gradient(circle at 30% 20%, #f0f, #0ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    strong { color: #f0f0fa; }
