* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #faf9f6;
      color: #1e1e1e;
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    :root {
      --primary: #d8374b;
      --primary-dark: #a8283a;
      --golden: #f0a83b;
      --cream: #fdf6ec;
      --ink: #212121;
      --teal: #167d7f;
    }
    .container {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 18px;
    }
    .header {
      background: linear-gradient(145deg, var(--primary), #c02f44);
      padding: 0 12px;
      position: sticky;
      top: 0;
      z-index: 15;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 12px 0;
      gap: 10px;
    }
    .my-logo {
      font-size: 1.9rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: white;
      text-decoration: none;
      background: rgba(255,255,255,0.12);
      padding: 0.2rem 1.1rem;
      border-radius: 60px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.25s ease;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .my-logo i { font-size: 1.6rem; color: var(--golden); }
    .my-logo:hover {
      background: rgba(255,255,255,0.22);
      transform: scale(1.03);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
    }
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 1.3rem;
      transition: all 0.3s;
    }
    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
      opacity: 0.92;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links a:hover, .nav-links a.active {
      border-bottom-color: var(--golden);
      opacity: 1;
    }
    .hamburger {
      background: transparent;
      border: 0;
      color: white;
      font-size: 1.9rem;
      display: none;
      cursor: pointer;
      line-height: 1;
      padding: 0 6px;
    }
    .breadcrumb {
      background: #fff8f0;
      border-bottom: 1px solid #eee3d8;
      font-size: 0.9rem;
      padding: 10px 0;
    }
    .breadcrumb ol {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 6px;
      list-style: none;
      align-items: center;
    }
    .breadcrumb a {
      color: var(--teal);
      text-decoration: none;
    }
    .breadcrumb a:hover { text-decoration: underline; }
    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 290px;
      gap: 2.5rem;
      padding: 2.2rem 0 3rem;
    }
    article {
      min-width: 0;
    }
    h1 {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      line-height: 1.15;
      margin: 0.4rem 0 0.6rem;
      font-weight: 800;
      color: #2b2b2b;
    }
    h1 span {
      color: var(--primary);
    }
    h2 {
      font-size: 1.9rem;
      margin: 2.2rem 0 1rem;
      padding-bottom: 6px;
      border-bottom: 2px solid var(--teal);
      display: inline-block;
      color: #142525;
    }
    h3 {
      font-size: 1.4rem;
      margin: 1.8rem 0 0.8rem;
      color: var(--primary-dark);
    }
    h4 {
      font-size: 1.15rem;
      margin: 1.2rem 0 0.4rem;
      color: #2f2f2f;
    }
    p {
      margin-bottom: 1rem;
    }
    .featured-img {
      width: 100%;
      border-radius: 20px;
      margin: 1.8rem 0 1.2rem;
      box-shadow: 0 10px 22px rgba(0,0,0,0.1);
      border: 1px solid #eee;
    }
    figcaption {
      font-size: 0.8rem;
      color: #777;
    }
    .insight-box {
      background: var(--cream);
      padding: 1.5rem 1.6rem;
      border-radius: 18px;
      margin: 1.8rem 0;
      border-left: 6px solid var(--golden);
      box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .insight-box strong {
      color: var(--primary-dark);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
      font-size: 0.95rem;
      background: white;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }
    th, td {
      padding: 0.9rem 1rem;
      border-bottom: 1px solid #e5dfd6;
      text-align: left;
    }
    th {
      background: #f1e8df;
      font-weight: 700;
    }
    tr:last-child td { border-bottom: none; }
    blockquote {
      background: #f0f5f5;
      border-left: 6px solid var(--teal);
      padding: 1.3rem 1.8rem;
      border-radius: 0 18px 18px 0;
      margin: 1.8rem 0;
      font-style: italic;
    }
    a {
      color: var(--teal);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    a:hover {
      color: var(--primary);
    }
    .sidebar {
      background: #ffffff;
      border-radius: 28px;
      padding: 1.3rem 1.2rem;
      box-shadow: 0 10px 24px rgba(0,0,0,0.05);
      height: fit-content;
      position: sticky;
      top: 90px;
    }
    .widget {
      margin-bottom: 2rem;
    }
    .widget h3 {
      color: var(--ink);
      border-left: 6px solid var(--primary);
      padding-left: 12px;
      margin: 0.2rem 0 1rem;
      font-size: 1.25rem;
    }
    .search-form {
      display: flex;
      background: #f4f1ec;
      border-radius: 50px;
      overflow: hidden;
      border: 1px solid #ddd;
    }
    .search-form input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 12px 16px;
      font-size: 1rem;
      outline: none;
    }
    .search-form button {
      background: var(--primary);
      border: none;
      color: white;
      padding: 0 1rem;
      cursor: pointer;
      font-size: 1.1rem;
      transition: 0.2s;
    }
    .quick-links {
      list-style: none;
      display: grid;
      gap: 6px;
    }
    .quick-links a {
      text-decoration: none;
      display: flex;
      gap: 8px;
      align-items: center;
      color: #50453b;
      padding: 0.35rem 0;
      transition: 0.2s;
      border-bottom: 1px dotted #ece2d8;
      font-size: 0.9rem;
    }
    .quick-links i {
      color: var(--primary);
    }
    .comment-area, .score-box {
      background: #fefaf4;
      border-radius: 22px;
      border: 1px solid #f0e7db;
      padding: 1rem 1.3rem 1.3rem;
      margin: 1.8rem 0;
    }
    .comment-area h2, .score-box h2 {
      font-size: 1.6rem;
      border: none;
      margin: 0.3rem 0 1rem;
    }
    .comment-form textarea {
      width: 100%;
      background: white;
      border: 1.5px solid #e2d5c5;
      border-radius: 16px;
      padding: 0.8rem 1rem;
      resize: vertical;
      min-height: 100px;
    }
    .btn, button[type="submit"] {
      background: var(--teal);
      color: white;
      border: 0;
      padding: 0.7rem 1.6rem;
      border-radius: 60px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s;
      margin-top: 0.35rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn:hover {
      background: #0f5e5f;
      transform: translateY(-1px);
    }
    .score-stars i {
      font-size: 2rem;
      color: #ccc;
      cursor: pointer;
      transition: 0.2s;
    }
    .score-stars i.checked, .score-stars i:hover {
      color: var(--golden);
    }
    .footer {
      background: #1c2626;
      color: #cbcbcb;
      padding: 2.5rem 0 1.5rem;
      margin-top: 1.5rem;
    }
    .footer-inner {
      display: grid;
      gap: 2rem;
      align-items: start;
    }
    friend-link {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 18px;
      background: rgba(255,255,255,0.06);
      padding: 1.2rem 1.4rem;
      border-radius: 50px;
      margin: 0.5rem 0 1.2rem;
    }
    friend-link a {
      color: #e1cdb4;
      text-decoration: none;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }
    friend-link a:hover { color: white; }
    .copyright {
      border-top: 1px solid #354242;
      padding-top: 1.2rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      font-size: 0.85rem;
      color: #9ea7a7;
    }
    @media (max-width: 900px) {
      .content-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }
      .sidebar {
        order: 2;
        position: static;
      }
      .footer-inner{grid-template-columns:1fr;}
    }
    @media (max-width: 780px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #b93648;
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 14px;
        box-shadow: 0 8px 18px rgba(0,0,0,0.3);
        border-radius: 0 0 26px 26px;
      }
      .nav-links.show {
        display: flex;
      }
      .hamburger {
        display: block;
      }
    }
    @media (min-width: 781px) {
      .nav-links { display: flex !important; }
    }
