* { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0a0e14; color: #d4d9e1; line-height: 1.7; font-size: 16px; }
  a { color: #c8a84e; text-decoration: none; transition: color 0.2s; }
  a:hover { color: #e8c84e; text-decoration: underline; }
  img { max-width: 100%; height: auto; display: block; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .site-header { background: #0f1419; border-bottom: 2px solid #1a2332; padding: 12px 0; position: sticky; top: 0; z-index: 1000; }
  .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
  .my-logo { font-size: 1.6rem; font-weight: 800; color: #c8a84e; text-transform: uppercase; letter-spacing: 1px; }
  .my-logo:hover { color: #e8c84e; text-decoration: none; }
  .my-logo span { color: #f0e6d2; font-weight: 300; }
  .hamburger { display: none; font-size: 2rem; background: none; border: none; color: #c8a84e; cursor: pointer; padding: 4px 12px; }
  .nav-menu { display: flex; gap: 24px; align-items: center; }
  .nav-menu a { font-size: 0.95rem; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; }
  .nav-menu a:hover { border-bottom-color: #c8a84e; text-decoration: none; }
  @media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu { display: none; width: 100%; flex-direction: column; gap: 12px; padding: 16px 0 8px; }
    .nav-menu.active { display: flex; }
    .nav-menu a { width: 100%; padding: 10px 0; border-bottom: 1px solid #1a2332; }
  }
  .breadcrumb { background: #0f1419; padding: 12px 0; border-bottom: 1px solid #1a2332; font-size: 0.85rem; }
  .breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
  .breadcrumb li+li::before { content: "›"; margin-right: 8px; color: #5a6a7a; }
  .breadcrumb a { color: #8a9aaa; }
  .breadcrumb .current { color: #c8a84e; font-weight: 600; }
  .main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 40px 0; }
  @media (max-width: 992px) { .main-grid { grid-template-columns: 1fr; gap: 32px; } }
  .content h1 { font-size: 2.4rem; color: #f0e6d2; margin-bottom: 16px; line-height: 1.25; }
  .content h1 span { color: #c8a84e; }
  .content h2 { font-size: 1.8rem; color: #e8d4a8; margin-top: 48px; margin-bottom: 16px; border-left: 4px solid #c8a84e; padding-left: 16px; }
  .content h3 { font-size: 1.35rem; color: #d4c4a0; margin-top: 32px; margin-bottom: 12px; }
  .content h4 { font-size: 1.1rem; color: #c0b090; margin-top: 24px; margin-bottom: 8px; font-weight: 600; }
  .content p { margin-bottom: 18px; }
  .content ul, .content ol { margin-bottom: 18px; padding-left: 24px; }
  .content li { margin-bottom: 8px; }
  .content .feature-img { margin: 28px 0; border-radius: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
  .content .highlight { background: #1a2332; padding: 20px 24px; border-radius: 10px; border-left: 4px solid #c8a84e; margin: 24px 0; }
  .content .highlight strong { color: #e8c84e; }
  .content .stat-block { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 16px; margin: 24px 0; }
  .content .stat-card { background: #111a24; padding: 20px; border-radius: 10px; text-align: center; border: 1px solid #1a2332; }
  .content .stat-card .num { font-size: 2rem; font-weight: 800; color: #c8a84e; }
  .content .stat-card .label { font-size: 0.85rem; color: #8a9aaa; margin-top: 4px; }
  .content .link-list { background: #0f1419; padding: 16px 20px; border-radius: 8px; border: 1px solid #1a2332; margin: 20px 0; }
  .content .link-list a { display: block; padding: 6px 0; }
  .content .blockquote { background: #111a24; padding: 20px 24px; border-radius: 10px; border-left: 4px solid #5a7a9a; margin: 24px 0; font-style: italic; color: #b0c0d0; }
  .content .emoji-big { font-size: 1.3rem; margin-right: 4px; }
  .sidebar { position: sticky; top: 100px; align-self: start; }
  .sidebar-widget { background: #0f1419; border-radius: 10px; padding: 24px; margin-bottom: 24px; border: 1px solid #1a2332; }
  .sidebar-widget h3 { font-size: 1.2rem; color: #e8d4a8; margin-bottom: 16px; border-bottom: 1px solid #1a2332; padding-bottom: 8px; }
  .sidebar-widget ul { list-style: none; padding: 0; }
  .sidebar-widget li { margin-bottom: 10px; }
  .sidebar-widget li a { font-size: 0.95rem; }
  .sidebar-widget .s-link { display: block; padding: 8px 0; border-bottom: 1px solid #141c26; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-weight: 600; margin-bottom: 4px; color: #b0c0d0; font-size: 0.9rem; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border-radius: 6px; border: 1px solid #1a2332; background: #111a24; color: #d4d9e1; font-size: 1rem; transition: border 0.2s; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #c8a84e; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .btn { background: #c8a84e; color: #0a0e14; border: none; padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s, transform 0.1s; }
  .btn:hover { background: #e8c84e; transform: scale(1.02); }
  .btn-outline { background: transparent; border: 2px solid #c8a84e; color: #c8a84e; }
  .btn-outline:hover { background: #c8a84e; color: #0a0e14; }
  .rating-stars { display: flex; gap: 8px; font-size: 1.8rem; cursor: pointer; }
  .rating-stars span { color: #3a4a5a; transition: color 0.2s; }
  .rating-stars span.active, .rating-stars span:hover { color: #e8c84e; }
  .site-footer { background: #0a0e14; border-top: 2px solid #1a2332; padding: 40px 0 24px; margin-top: 40px; }
  .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 32px; margin-bottom: 32px; }
  .footer-grid h4 { color: #e8d4a8; margin-bottom: 12px; font-size: 1.05rem; }
  .footer-grid ul { list-style: none; padding: 0; }
  .footer-grid li { margin-bottom: 8px; }
  .footer-grid a { font-size: 0.9rem; color: #8a9aaa; }
  .footer-grid a:hover { color: #c8a84e; }
  .friend-link { display: block; padding: 8px 0; border-bottom: 1px solid #141c26; font-size: 0.9rem; }
  .friend-link a { color: #8a9aaa; }
  .friend-link a:hover { color: #c8a84e; }
  .copyright { text-align: center; padding-top: 24px; border-top: 1px solid #141c26; color: #5a6a7a; font-size: 0.85rem; }
  .copyright strong { color: #8a9aaa; }
  .last-updated { font-size: 0.85rem; color: #5a6a7a; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
  .last-updated strong { color: #8a9aaa; }
  @media (max-width: 600px) {
    .content h1 { font-size: 1.8rem; }
    .content h2 { font-size: 1.4rem; }
    .content h3 { font-size: 1.15rem; }
    .stat-block { grid-template-columns: 1fr 1fr; }
    .header-inner { padding: 0 12px; }
    .my-logo { font-size: 1.2rem; }
  }
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #0a0e14; }
  ::-webkit-scrollbar-thumb { background: #1a2332; border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: #2a3a4a; }
