header.header {
    background: rgb(27 28 33 / 30%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgb(255 255 255 / 6%);
}


header.header.uk-sticky.uk-active.uk-sticky-below.uk-sticky-fixed {
    border-radius: 0px 0px 30px 30px;
}




.header-game-button-container {
  position: relative;
  display: inline-block;
}

a.header-logo {
    display: block;
    width: 140px;
}

.header-game-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
    background: linear-gradient(18deg, rgb(27 28 33 / 50%) 0%, rgb(13 182 103 / 71%) 67%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1;
}

.header-game-button-icon {
  width: 20px;
  height: 20px;
}

.header-game-button-text {
  white-space: nowrap;
}

/* Светлая статичная обводка */
.header-game-button-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(
        270deg,
        #00ff88,
        #FF004E,
        #158DE7,
        #5056DD,
        #FF004E
    );
    background-size: 600% 600%;
    animation: animatedGradient 8s ease infinite;
    z-index: 0;
}

@keyframes animatedGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}




.main-navbar {
  padding: 0;
}

.navbar-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0px;
  margin: 0;
  padding: 0;
}

.navbar-item a {
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    position: relative;
    padding: 28px 20px;
    transition: color 0.3s ease;
    display: block;
}

.navbar-item a:hover {
  color: white;
}

/* Активный пункт */
.navbar-item.active a {
  font-weight: bold;
  color: white;
}

/* Подчёркивание и треугольник (треугольник вверх) */
.navbar-item.active a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: #ff0050;
    border-radius: 1px;
}

.navbar-item.active a::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ff0050; /* ВНИЗ -> ВЕРХ */
}





.top-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 20px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 500;
  cursor: pointer;
}

.top-item img {
  width: 24px;
  height: 24px;
}

.cart-wrapper {
  position: relative;
}

.cart-circle {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.cart-circle img {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #ff0050;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.uk-nav>li>a {
    padding: 15px 20px;
    background: #26272b;
    margin: 6px 0px;
    font-size: 16px;
    border-radius: 15px;
}

.uk-nav-default>li>a {
    color: #b9b9ba;
}

.uk-nav-default>li>a:hover {
    background: #ff0050;
    color: #fff;
}

.myaccount-content {
    border-radius: 20px;
    padding: 30px 20px;
    background: #1b1d22;
    color: #f0f0f0;
}

.uk-link, a {
    color: #158de7;
    text-decoration: none;
    cursor: pointer;
}

.myaccount-sidebar {
    background: #1b1d22;
    padding: 5px 10px;
    border-radius: 20px;
}


.woocommerce table.shop_table {
    border: 1px solid #252529;
    margin: 0 0px 20px 0;
    text-align: left;
    width: 100%;
    padding: 20px 20px;
    background: #1b1d22;
    border-collapse: separate;
    border-radius: 5px;
}

.woocommerce table.my_account_orders {
    font-size: 18px;
}


:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    left: auto;
    color: #ffffff;
    background-color: #158de7;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}