header {
  width: 100%;
  font-family: Arial, sans-serif;
  background: var(--color-bg-lighter);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-header {
  position: relative;
  background-color: var(--color-header-bg-top);
}

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

.header-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.header-nav {
  display: flex;
  gap: 30px;

}
  .header-nav .btn {
    position: relative;
    display: inline-block;
    height: 45px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    background-image: linear-gradient(145deg, #00264d, #004080, #1e90ff, #4dc3ff);
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px #ff0, 0 0 20px #c11a03;
    &:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px #ff0, 0 0 40px #c11a03, 0 0 60px #909;
    }
    &::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      transform: rotate(25deg);
      animation: shineMove 3s infinite linear;
    }
  }

@keyframes shineMove {
  0% { transform: translateX(0) rotate(25deg); }
  100% { transform: translateX(500px) rotate(25deg); }
}

.logo-area {
  flex: 0 0 auto;
  margin: 0 20px;
  height: 100%;
}
.logo-area .logo-image {
  width: 160px;
  height: auto;
}

.header-bottom {
  padding: 15px 0;
  background: linear-gradient(to right, #0a1687 0%, #010a40 20%, #010a40 80%, #0a1687 100%);
  display: flex;
  justify-content: center;
  height: 50px;
  box-sizing: border-box;
}

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

.nav-link {
  text-decoration: none;
  color: var(--color-primary-blue);
  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,
.nav-link.is-active {
  color: var(--color-text-white);
}

.hot-badge {
  background-color: var(--color-accent-yellow);
  color: var(--color-primary-red-dark);
  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, var(--color-primary-red), var(--color-primary-red-darker));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: white;
  transition: transform 0.1s;
}

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

.icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-text-main);
  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: var(--color-primary-blue);
}

.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%;
  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 0 0;
}

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