.top-header {
    width: 100%;
    height: 262px;
    position: relative;
    overflow: hidden;
  }
  
  .hdr-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
  }
  
  .hdr-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 13, 27, 0.55);
  }
  
  .navbar {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
  }
  
  .navbar > a img {
    width: 184px;
    height: 73px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
  }
  
  .nav-items {
    display: flex;
    align-items: center;
    gap: 46px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-items li {
    list-style: none;
  }
  
  .nav-items a {
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }
  
  .nav-items a:hover {
    color: #b8aee8;
  }
  
  .social-icons {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
  }
  
  .social-icons a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .social-icons a:hover {
    color: #b8aee8;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 10;
    flex-shrink: 0;
  }
  
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  .pg-banner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 117px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
  }
  
  .pg-banner h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
  }
  
  .page-path {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: #cccccc;
  }
  
  .page-path a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .page-path a:hover { color: #ffffff; }
  .page-path .sep { color: #888888; }
  .page-path .active-page { color: #bbbbdd; }
  
  @media (max-width: 1200px) {
    .navbar { padding: 0 48px; }
  }
  
  @media (max-width: 900px) {
    .navbar { padding: 0 32px; }
    .pg-banner { padding: 0 32px; }
  }
  
  @media (max-width: 768px) {
    .top-header { height: auto; min-height: 140px; }
  
    .navbar {
      height: auto;
      padding: 16px 20px;
      flex-wrap: wrap;
      gap: 0;
      align-items: center;
    }
  
    .navbar > a img { width: 110px; height: auto; }
    .hamburger { display: flex; margin-left: auto; }
    .social-icons { display: none; }
  
    .nav-items {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #0e0b1a;
      border-radius: 10px;
      margin-top: 10px;
      gap: 0;
      overflow: hidden;
    }
  
    .nav-items.open { display: flex; }
    .nav-items li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-items li:last-child { border-bottom: none; }
    .nav-items a { display: block; padding: 13px 20px; font-size: 13px; }
  
    .pg-banner {
      padding: 14px 20px 18px;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      height: auto;
    }
  
    .pg-banner h1 { font-size: 22px; }
    .page-path { font-size: 11px; }
  }
  
  @media (max-width: 480px) {
    .navbar > a img { width: 95px; }
    .pg-banner h1 { font-size: 19px; }
  }