@charset "utf-8";
/* CSS Document */
:root {
  --header-height: 64px;
  --header-bg: #111;
  --hover-bg: rgba(255,255,255,0.1);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--header-bg);
  color: #fff;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border-radius: 6px;
  height: var(--header-height);
  font-family: system-ui, sans-serif;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-title,
.nav-links a,
.search-icon,
.menu-toggle {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  transition: background 0.2s ease-in-out;
}

.site-title {
  font-size: 22px;
  font-weight: bold;
}

.site-title:hover,
.nav-links a:hover,
.search-icon:hover,
.menu-toggle:hover {
  background: var(--hover-bg);
  text-decoration: none;
}

.nav-links {
  display: flex;
  justify-content: space-evenly;
  flex: 1;
  gap: 0;
  margin: 0 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: none !important;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--header-bg);
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    padding: 12px 20px;
    border-radius: 0 0 6px 6px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: inline-block !important;
  }

  .site-title {
    font-size: 20px;
  }
 .a2a_floating_style {
  bottom: 120px;
  right: 10px;
  }
 .ad-container {
  display: block;
  margin: 0 auto;
  text-align: center;
}
}
