* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: #fbf8f0;
    color: #2d1b0e;
    line-height: 1.7;
    font-size: 16px;
  }
  a {
    color: #c0392b;
    text-decoration: none;
    transition: color 0.2s;
  }
  a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  header {
    background: linear-gradient(135deg, #f9e5b7 0%, #f5cba7 100%);
    padding: 18px 0;
    border-bottom: 4px solid #e67e22;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .my-logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e74c3c, #f39c12, #27ae60, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 8px rgba(231,76,60,0.2);
    transition: transform 0.3s;
    display: inline-block;
  }
  .my-logo:hover {
    transform: scale(1.03);
  }
  .my-logo small {
    font-size: 0.9rem;
    -webkit-text-fill-color: #5d4e37;
    background: none;
    font-weight: 400;
    display: block;
    font-style: italic;
    letter-spacing: 0.5px;
  }
  .hamburger {
    display: none;
    background: none;
    border: 2px solid #8b6914;
    color: #8b6914;
    font-size: 1.8rem;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .hamburger:hover {
    background: #8b6914;
    color: #fff;
  }
  nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  nav a {
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.5);
    color: #5d3a1a;
    transition: all 0.25s;
    border: 1px solid transparent;
  }
  nav a:hover {
    background: #fff;
    border-color: #e67e22;
    color: #c0392b;
    text-decoration: none;
    transform: translateY(-2px);
  }
  .breadcrumb {
    background: #fef9ef;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0e0c8;
  }
  .breadcrumb a {
    color: #7f6b4a;
  }
  .breadcrumb a:hover {
    color: #c0392b;
  }
  .breadcrumb span {
    color: #a08060;
    margin: 0 6px;
  }
  main {
    padding: 40px 0 60px;
  }
  h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #5d2e0e;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  h1 i {
    color: #e67e22;
    margin-right: 10px;
  }
  .subtitle {
    font-size: 1.2rem;
    color: #7f6b4a;
    margin-bottom: 30px;
    border-left: 4px solid #e67e22;
    padding-left: 18px;
  }
  h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #5d2e0e;
    margin: 50px 0 18px;
    border-bottom: 3px solid #f5cba7;
    padding-bottom: 8px;
  }
  h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7f4a1a;
    margin: 36px 0 14px;
  }
  h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9a6b3a;
    margin: 24px 0 10px;
  }
  p {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-top: 20px;
  }
  @media (max-width: 900px) {
    .content-grid {
      grid-template-columns: 1fr;
    }
  }
  .sidebar {
    background: #fef9ef;
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid #f0e0c8;
    position: sticky;
    top: 120px;
    align-self: start;
  }
  .sidebar h3 {
    font-size: 1.3rem;
    margin-top: 0;
    border-bottom: 2px solid #f5cba7;
    padding-bottom: 8px;
  }
  .sidebar ul {
    list-style: none;
    margin-top: 12px;
  }
  .sidebar li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #f0e0c8;
    padding-bottom: 8px;
  }
  .sidebar li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }
  .sidebar li a i {
    width: 20px;
    color: #e67e22;
  }
  .search-box {
    background: #fff;
    border-radius: 40px;
    padding: 4px 4px 4px 20px;
    display: flex;
    border: 2px solid #f5cba7;
    transition: border-color 0.3s;
    margin-bottom: 30px;
    max-width: 600px;
  }
  .search-box:focus-within {
    border-color: #e67e22;
  }
  .search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 10px 0;
    background: transparent;
    font-family: inherit;
  }
  .search-box button {
    background: #e67e22;
    border: none;
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .search-box button:hover {
    background: #c0392b;
  }
  .interact-area {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-top: 50px;
    border: 1px solid #f0e0c8;
  }
  .interact-area h3 {
    margin-top: 0;
  }
  .rating-stars {
    display: flex;
    gap: 6px;
    font-size: 2rem;
    color: #f1c40f;
    cursor: pointer;
    margin: 12px 0 20px;
  }
  .rating-stars i {
    transition: transform 0.2s, color 0.2s;
  }
  .rating-stars i:hover {
    transform: scale(1.3);
    color: #f39c12;
  }
  .comment-form textarea {
    width: 100%;
    border: 2px solid #f0e0c8;
    border-radius: 12px;
    padding: 14px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s;
  }
  .comment-form textarea:focus {
    outline: none;
    border-color: #e67e22;
  }
  .comment-form button, .rating-form button {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .comment-form button:hover, .rating-form button:hover {
    background: #c0392b;
  }
  .featured-img {
    margin: 30px 0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .img-caption {
    font-size: 0.9rem;
    color: #7f6b4a;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
  }
  footer {
    background: #2d1b0e;
    color: #f0e0c8;
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  footer a {
    color: #f5cba7;
  }
  footer a:hover {
    color: #f39c12;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  @media (max-width: 700px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  .footer-grid h4 {
    color: #f5cba7;
    margin-top: 0;
    font-size: 1.1rem;
  }
  .footer-grid ul {
    list-style: none;
    margin-top: 8px;
  }
  .footer-grid li {
    margin-bottom: 6px;
  }
  .footer-grid li a {
    font-size: 0.95rem;
  }
  friend-link {
    display: block;
    background: rgba(255,255,255,0.05);
    padding: 16px 20px;
    border-radius: 12px;
    margin: 16px 0;
    border: 1px solid rgba(255,255,255,0.1);
  }
  friend-link a {
    display: inline-block;
    margin: 4px 12px 4px 0;
    padding: 4px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    font-size: 0.9rem;
  }
  friend-link a:hover {
    background: rgba(255,255,255,0.15);
  }
  .copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #a08060;
  }
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
    nav {
      display: none;
      width: 100%;
      flex-direction: column;
      margin-top: 16px;
      gap: 6px;
    }
    nav.show {
      display: flex;
    }
    nav a {
      width: 100%;
      text-align: center;
      padding: 12px;
      background: rgba(255,255,255,0.7);
    }
    h1 {
      font-size: 2rem;
    }
    h2 {
      font-size: 1.6rem;
    }
    .header-inner {
      position: relative;
    }
  }
  .highlight {
    background: linear-gradient(120deg, #fef3cd 0%, #fef3cd 40%, transparent 80%);
    padding: 0 6px;
    font-weight: 600;
  }
  .badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 2px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
  }
  .quote {
    background: #fef9ef;
    border-left: 4px solid #e67e22;
    padding: 18px 24px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
  }
  .emoji-big {
    font-size: 1.8rem;
    margin-right: 6px;
  }
  .table-wrap {
    overflow-x: auto;
    margin: 24px 0;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  th {
    background: #f5cba7;
    color: #5d2e0e;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
  }
  td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0e0c8;
  }
  tr:last-child td {
    border-bottom: none;
  }
  .stats-number {
    font-weight: 800;
    color: #c0392b;
    font-size: 1.1rem;
  }
  .tag {
    display: inline-block;
    background: #e8f8f5;
    color: #1a7a6a;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
