
  .top-bar {
    background-color: rgba(30, 115, 190, 0.91);
    color: white;
    min-height: 30px;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .main-header {
    position: relative;
  }

  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    border-bottom: 1px solid #dddcdc;
  }

  .actions-left {
    display: flex;
    gap: 10px;
    flex: 1;
    order: 1;
  }

  .actions-right {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    order: 3;
  }

  .logo-area {
    flex: 0 0 auto;
    margin: 0 20px;
    order: 2;
  }

  .logo-image {
    width: 160px;
    height: auto;
  }

  .header-bottom {
    padding: 10px 0;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    text-decoration: none;
    color: #0ea5e9;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .nav-link:hover {
    color: #010d14;
  }

  .hot-badge {
    background-color: #facc15;
    color: #b91c1c;
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 900;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .btn {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    background-image: linear-gradient(to bottom, #dc2626, #991b1b);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    transition: transform 0.1s;
  }

  .btn:active {
    transform: translateY(1px);
  }

  .btn-secondary {
    background-image: linear-gradient(to bottom, #b91c1c, #7f1d1d);
  }

  .social-icons {
    display: flex;
    gap: 8px;
  }

  .icon {
    width: 28px;
    height: 28px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
  }

  .icon:hover {
    transform: translateY(-2px);
  }

  .icon.x-icon {
    background-color: black;
  }

  .icon.pin-icon {
    background-color: #bd081c;
  }

  .icon.yt-icon {
    background-color: #cd201f;
  }

  .icon.twitch-icon {
    background-color: #6441a5;
  }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger {
    width: 25px;
    height: 3px;
    background-color: #0ea5e9;
  }

  .mobile-menu-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
  }

  .mobile-menu-wrapper.is-open {
    display: flex;
  }

  .mobile-actions {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
  }

  .mobile-socials {
    display: flex;
    justify-content: left;
    gap: 10px;
    margin: 20px 0 10px;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    gap: 15px;
  }

  @media (max-width: 992px) {
    .desktop-only {
      display: none;
    }

    .mobile-toggle {
      display: flex;
    }

    .mobile-actions {
      display: flex;
    }

    .header-controls {
      justify-content: space-between;
    }

    .logo-area {
      margin: 0;
    }
  }

  @media screen and (max-width: 768px) {
    .header-controls {
      height: 70px;
    }
  }

  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-in-out;
    padding: 5px 0;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }