.mod-guncelleme-bandi {
  position: relative;
  z-index: var(--gb-z);
  display: flex;
  width: 100%;
  min-width: 0;
  height: var(--gb-height);
  overflow: hidden;
  color: var(--gb-text);
  background: var(--gb-bg);
  font-size: var(--gb-font-size);
  font-weight: var(--gb-weight);
  line-height: 1.2;
  box-sizing: border-box;
  isolation: isolate;
}

.mod-guncelleme-bandi.gb-sticky {
  position: sticky;
  top: 0;
}

.gb-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 145px;
  height: 100%;
  padding: 0 28px 0 18px;
  color: #fff;
  background: var(--gb-label-bg);
  font-size: .86em;
  font-weight: 700;
  letter-spacing: .045em;
  white-space: nowrap;
  box-sizing: border-box;
}

.gb-label::after {
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 100%;
  background: var(--gb-label-bg);
  content: "";
  transform: skewX(-24deg);
  z-index: -1;
}

.gb-label-icon {
  color: #fff3b0;
  font-size: 1.05em;
}

.gb-viewport {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}

.gb-track {
  display: flex;
  flex: 0 0 max-content;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: gb-scroll-left var(--gb-duration) linear infinite;
}

.gb-direction-right .gb-track {
  animation-name: gb-scroll-right;
}

.gb-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: max-content;
  padding-left: 34px;
}

.gb-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 38px;
  white-space: nowrap;
}

.gb-item > span:last-child {
  color: var(--gb-text);
}

.gb-item a {
  color: var(--gb-link);
  text-decoration: none;
  transition: color .18s ease;
}

.gb-item a:hover,
.gb-item a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gb-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gb-accent) 22%, transparent);
}

.gb-pause-hover:hover .gb-track,
.gb-pause-hover:focus-within .gb-track {
  animation-play-state: paused;
}

.gb-close {
  display: grid;
  flex: 0 0 var(--gb-height);
  width: var(--gb-height);
  height: 100%;
  padding: 0;
  place-items: center;
  border: 0;
  border-left: 1px solid rgb(255 255 255 / 16%);
  color: var(--gb-text);
  background: var(--gb-bg);
  font: inherit;
  font-size: 22px;
  cursor: pointer;
}

.gb-close:hover,
.gb-close:focus-visible {
  color: #fff;
  background: color-mix(in srgb, var(--gb-bg) 84%, #fff);
}

.mod-guncelleme-bandi.gb-dismissed {
  display: none;
}

@keyframes gb-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes gb-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 640px) {
  .gb-label {
    min-width: auto;
    padding: 0 18px 0 12px;
    font-size: .76em;
    letter-spacing: .02em;
  }

  .gb-label-icon {
    display: none;
  }

  .gb-label::after {
    right: -11px;
    width: 22px;
  }

  .gb-group {
    padding-left: 25px;
  }

  .gb-item {
    padding-right: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gb-track {
    animation: none;
    overflow-x: auto;
  }

  .gb-group[aria-hidden="true"] {
    display: none;
  }
}
