* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #faf7f2;
      color: #1e1a17;
      line-height: 1.7;
      padding-bottom: 40px;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    a {
      color: #235789;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    a:hover {
      color: #c44b24;
      text-decoration: underline;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .site-header {
      background: #fffdf9;
      border-bottom: 2px solid #d9cdbc;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }
    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 18px 0;
    }
    .my-logo {
      font-size: 2.3rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #6b2a58, #b1412a);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1.2;
      display: inline-block;
      cursor: pointer;
    }
    .my-logo:hover {
      text-decoration: none;
      opacity: 0.9;
    }
    .my-logo i {
      color: #b1412a;
      font-size: 2rem;
      margin-right: 6px;
      background: none;
      -webkit-text-fill-color: initial;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      font-weight: 500;
      list-style: none;
      flex-wrap: wrap;
    }
    .nav-links li a {
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      font-size: 1.05rem;
    }
    .nav-links li a:hover {
      border-color: #b1412a;
      text-decoration: none;
      color: #b1412a;
    }
    .burger {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #1e1a17;
      cursor: pointer;
    }
    .breadcrumb {
      background: #f1ede6;
      padding: 10px 0;
      font-size: 0.95rem;
      border-bottom: 1px solid #e2d9ce;
    }
    .breadcrumb a {
      font-weight: 500;
    }
    .breadcrumb span {
      margin: 0 6px;
      color: #6b5e51;
    }
    .layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 40px;
      margin-top: 30px;
    }
    .main-content {
      background: #fffdf9;
      padding: 28px 34px;
      border-radius: 20px;
      box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    }
    .sidebar {
      background: #fffdf9;
      padding: 24px;
      border-radius: 20px;
      box-shadow: 0 6px 14px rgba(0,0,0,0.03);
      height: max-content;
      position: sticky;
      top: 20px;
    }
    h1 {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 18px;
      letter-spacing: -0.02em;
      color: #1e1a17;
    }
    h2 {
      font-size: 2rem;
      margin: 40px 0 14px 0;
      font-weight: 700;
      border-left: 6px solid #b1412a;
      padding-left: 18px;
    }
    h3 {
      font-size: 1.5rem;
      margin: 30px 0 10px 0;
      font-weight: 600;
      color: #6b2a58;
    }
    h4 {
      font-size: 1.2rem;
      margin: 20px 0 8px 0;
      font-weight: 600;
      color: #3e332b;
    }
    p {
      margin-bottom: 1.2em;
      font-size: 1.06rem;
    }
    .hero-img {
      border-radius: 18px;
      margin: 24px 0 32px;
      box-shadow: 0 12px 30px -6px rgba(0,0,0,0.12);
    }
    .highlight {
      background: #fde7d9;
      padding: 2px 8px;
      border-radius: 6px;
      font-weight: 600;
    }
    .expert-quote {
      background: #f7f0e7;
      border-left: 6px solid #6b2a58;
      padding: 18px 24px;
      border-radius: 0 16px 16px 0;
      font-style: italic;
      margin: 30px 0;
    }
    .insight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px;
      margin: 28px 0;
    }
    .insight-card {
      background: #faf7f2;
      border-radius: 14px;
      padding: 20px;
      border: 1px solid #e8dfd2;
      transition: all 0.15s ease;
    }
    .insight-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }
    .insight-card i {
      color: #b1412a;
      font-size: 2rem;
      margin-bottom: 12px;
    }
    .stats-table {
      width: 100%;
      border-collapse: collapse;
      margin: 30px 0;
      background: white;
      border-radius: 14px;
      overflow: hidden;
    }
    .stats-table th, .stats-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid #ede7df;
    }
    .stats-table thead {
      background: #6b2a58;
      color: white;
      font-weight: 600;
    }
    .stats-table tr:hover {
      background: #fdf2ea;
    }
    .search-bar {
      background: white;
      border-radius: 40px;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      border: 1px solid #ddd2c4;
      margin: 25px 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }
    .search-bar i {
      color: #b1412a;
      font-size: 1.3rem;
      margin-right: 10px;
    }
    .search-bar input {
      border: none;
      font-size: 1.1rem;
      width: 100%;
      background: transparent;
      outline: none;
    }
    .interactive-tools {
      background: #f7f1ea;
      padding: 20px;
      border-radius: 18px;
      margin: 40px 0 20px;
    }
    .interactive-tools .tool-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn {
      background: #6b2a58;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 1rem;
    }
    .btn:hover {
      background: #b1412a;
      color: white;
      transform: scale(1.02);
      text-decoration: none;
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #6b2a58;
      color: #6b2a58;
    }
    .btn-outline:hover {
      background: #6b2a58;
      color: white;
    }
    .comment-box textarea {
      width: 100%;
      border: 1px solid #d9cdbc;
      border-radius: 12px;
      padding: 16px;
      background: white;
      font-family: inherit;
      margin: 10px 0;
      min-height: 110px;
    }
    .flex-column {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 12px 0;
    }
    .score-stars i {
      font-size: 2rem;
      color: #d9a514;
      cursor: pointer;
      margin-right: 6px;
      transition: transform 0.1s;
    }
    .score-stars i:hover {
      transform: scale(1.1);
    }
    .user-comment-item {
      background: #fff;
      border-radius: 12px;
      padding: 14px 18px;
      border: 1px solid #e8dfd2;
      margin-bottom: 10px;
    }
    .post-meta {
      display: flex;
      gap: 20px;
      color: #6b5e51;
      font-size: 0.95rem;
      margin-bottom: 18px;
    }
    .friend-link {
      display: block;
      margin-top: 30px;
      padding: 18px 0;
      border-top: 1px dashed #d9cdbc;
      background: transparent;
      font-size: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }
    .footer-content {
      margin-top: 30px;
      background: #fffdf9;
      border-radius: 20px;
      padding: 30px 34px;
      font-size: 0.95rem;
    }
    .footer-content .copyright {
      text-align: left;
      margin-top: 20px;
      color: #6b5e51;
    }
    .schema-hide {
      display: none;
    }
    .lsi-links {
      background: #f7f1ea;
      padding: 22px;
      border-radius: 20px;
      margin: 30px 0;
    }
    .lsi-links a {
      margin-right: 12px;
      display: inline-block;
    }
    @media (max-width: 960px) {
      .layout {
        grid-template-columns: 1fr;
      }
      .sidebar {
        position: static;
      }
      .burger {
        display: block;
      }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 0;
      }
      .nav-links.active {
        display: flex;
      }
      h1 {
        font-size: 2rem;
      }
      .main-content {
        padding: 22px 18px;
      }
    }
    @media (max-width: 520px) {
      .container {
        padding: 0 14px;
      }
      .header-row {
        padding: 12px 0;
      }
      .my-logo {
        font-size: 1.7rem;
      }
    }
