*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --theme-gold: #C17C19;
  --theme-dark: #031859;
  --theme-light: #0460D9;
  --bg-particle: #030303;
  --bg-particle-glow: rgba(193, 124, 25, 0.08);
  --bg-particle-glow-strong: rgba(193, 124, 25, 0.14);
  --bg-primary: #031859;
  --bg-secondary: #021040;
  --bg-card: #042a6e;
  --bg-elevated: #053580;
  --text-primary: #f0f4fc;
  --text-muted: #8fa8d4;
  --gold: #C17C19;
  --gold-glow: rgba(193, 124, 25, 0.35);
  --silver: #7eb8ff;
  --silver-glow: rgba(126, 184, 255, 0.2);
  --bronze: #C17C19;
  --bronze-glow: rgba(193, 124, 25, 0.25);
  --accent: #0460D9;
  --card-anim-1-color: #0460D9;
  --card-anim-2-color: #C17C19;
  --card-anim-3-color: #031859;
  --btn-anim-1-color: #0460D9;
  --btn-anim-2-color: #C17C19;
  --btn-anim-3-color: #031859;
  --radius: 14px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #030303;
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: clip;
}

.particle-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 14px 40px;
}

.main-content {
  padding-top: 8px;
}

.site-title--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Category Sections */
.category-section {
  margin-bottom: 44px;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
  width: 100%;
  margin-bottom: 22px;
  overflow: visible;
}

.category-title__text {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-block;
  padding: 8px 4px;
  overflow: visible;
}

.category-title__text::before {
  content: "";
  position: absolute;
  top: -130%;
  left: 50%;
  width: 2px;
  height: 90%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, var(--cat-line-flash), transparent);
  opacity: 0;
  pointer-events: none;
  animation: cat-center-drop 3.6s ease-out infinite;
}

.category-title__text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) scale(0.4);
  border-radius: 50%;
  background: var(--cat-line-flash);
  box-shadow: 0 0 14px var(--cat-line-flash);
  opacity: 0;
  pointer-events: none;
  animation: cat-center-burst 3.6s ease-out infinite;
}

.category-title__line {
  flex: 1 1 0;
  min-width: 48px;
  height: 4px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 8px var(--cat-line-glow);
}

.category-title__line--left {
  background: linear-gradient(270deg, transparent 0%, var(--cat-line-base) 55%, var(--cat-line-mid) 100%);
}

.category-title__line--right {
  background: linear-gradient(90deg, transparent 0%, var(--cat-line-base) 55%, var(--cat-line-mid) 100%);
}

.category-title__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--cat-line-flash), transparent);
  background-size: 28% 100%;
  background-repeat: no-repeat;
  opacity: 0;
}

.category-title__line--left::after {
  animation: cat-burst-left 3.6s ease-out infinite;
}

.category-title__line--right::after {
  animation: cat-burst-right 3.6s ease-out infinite;
}

@keyframes cat-center-drop {
  0%, 6% {
    top: -130%;
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  20% {
    top: 50%;
    height: 2px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cat-center-burst {
  0%, 18% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  22% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
  32% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
  100% {
    opacity: 0;
  }
}

@keyframes cat-burst-left {
  0%, 18% {
    background-position: 102% 50%;
    opacity: 0;
  }
  22% {
    opacity: 1;
  }
  72% {
    background-position: -20% 50%;
    opacity: 0.35;
  }
  100% {
    background-position: -20% 50%;
    opacity: 0;
  }
}

@keyframes cat-burst-right {
  0%, 18% {
    background-position: -2% 50%;
    opacity: 0;
  }
  22% {
    opacity: 1;
  }
  72% {
    background-position: 120% 50%;
    opacity: 0.35;
  }
  100% {
    background-position: 120% 50%;
    opacity: 0;
  }
}

.category-title--gold {
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 800;
  color: var(--gold);
  --cat-line-base: rgba(193, 124, 25, 0.35);
  --cat-line-mid: rgba(255, 200, 80, 0.6);
  --cat-line-flash: rgba(255, 228, 140, 0.95);
  --cat-line-glow: rgba(193, 124, 25, 0.25);
}

.category-title--gold .category-title__text {
  background: linear-gradient(135deg, #fef3c7, var(--gold), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.category-title--silver {
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--silver);
  --cat-line-base: rgba(126, 184, 255, 0.35);
  --cat-line-mid: rgba(180, 215, 255, 0.65);
  --cat-line-flash: rgba(220, 240, 255, 0.95);
  --cat-line-glow: rgba(126, 184, 255, 0.25);
}

.category-title--silver .category-title__text {
  background: linear-gradient(135deg, #f1f5f9, var(--silver), #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px var(--silver-glow));
}

.category-title--bronze {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--bronze);
  --cat-line-base: rgba(193, 124, 25, 0.32);
  --cat-line-mid: rgba(245, 158, 11, 0.58);
  --cat-line-flash: rgba(255, 210, 120, 0.92);
  --cat-line-glow: rgba(245, 158, 11, 0.22);
}

.category-title--bronze .category-title__text {
  background: linear-gradient(135deg, #fde68a, var(--bronze), #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px var(--bronze-glow));
}

.category-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  width: 100%;
}

.top-banners {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}

.top-banners.empty {
  display: none;
}

.category-items__promo-list {
  width: 100%;
}

/* Wide Banner 1000×100 / 1000×50 */
.sponsor-banner-wrap {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.sponsor-banner-wrap.sponsor-col--border-fx {
  overflow: visible;
}

@media (min-width: 900px) {
  .sponsor-banner-wrap {
    max-width: 1000px;
  }
}

/* Promo Card — dikey grid, liquid glass */
.sponsor-item {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 4px 24px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  --site-color: var(--accent);
  -webkit-tap-highlight-color: transparent;
}

/* Cam katman — arka plan */
.sponsor-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.04) 35%,
      transparent 55%
    ),
    linear-gradient(
      320deg,
      color-mix(in srgb, var(--site-color) 12%, transparent) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  transition: opacity 0.45s ease;
}

/* Üst parlama — devre dışı (efektler sürekli fx katmanında) */
.sponsor-item::after {
  display: none;
}

/* Banner — promo kart min-height / aspect-ratio override */
.sponsor-item.sponsor-item--banner {
  display: block;
  height: auto;
  min-height: 0;
  aspect-ratio: unset;
  flex-direction: unset;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sponsor-item.sponsor-item--banner::before {
  display: none;
}

.sponsor-item.sponsor-item--banner {
  width: 100%;
  background: rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
}

.sponsor-item.sponsor-item--banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.sponsor-item.sponsor-item--banner.sponsor-banner--100 {
  aspect-ratio: 10 / 1;
}

.sponsor-item.sponsor-item--banner.sponsor-banner--50 {
  aspect-ratio: 20 / 1;
}

.sponsor-item.sponsor-item--banner .sponsor-item__banner-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: inherit;
  vertical-align: top;
}

.sponsor-banner-wrap.sponsor-col--border-fx {
  overflow: visible;
  padding: 3px;
  box-sizing: border-box;
}

.sponsor-item.sponsor-item--banner .sponsor-item__border-glow {
  stroke-width: 2.5px;
  opacity: 0.38;
}

.sponsor-item.sponsor-item--banner .sponsor-item__border-dash {
  stroke-width: 1.35px;
}

.sponsor-item__content,
.sponsor-item__button {
  position: relative;
  z-index: 2;
}

.sponsor-item__tap-hint {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px) scale(0.92);
  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.sponsor-item__tap-hint::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11V6a3 3 0 0 1 6 0v5'/%3E%3Cpath d='M9 11h6v8a2 2 0 0 1-4 0v-8z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11V6a3 3 0 0 1 6 0v5'/%3E%3Cpath d='M9 11h6v8a2 2 0 0 1-4 0v-8z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.9;
  animation: tap-finger-pulse 1.4s ease-in-out infinite;
}

.sponsor-item:hover .sponsor-item__tap-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  animation: tap-hint-float 1.8s ease-in-out infinite;
}

.sponsor-item__ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 55%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 8;
  animation: apple-ripple 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes tap-hint-float {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-4px) scale(1.02); }
}

@keyframes tap-finger-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes apple-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(22);
    opacity: 0;
  }
}

@media (hover: none), (max-width: 768px) {
  .sponsor-item__tap-hint {
    display: none !important;
  }
}

.sponsor-item:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 8px 28px rgba(0, 0, 0, 0.28);
}

.sponsor-item:active {
  transform: scale(0.955) translateY(0);
  transition-duration: 0.14s;
  transition-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
  filter: brightness(0.94);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.2);
}

.sponsor-item:active .sponsor-item__content {
  transform: scale(0.98);
  transition-duration: 0.14s;
}

.sponsor-item:active .sponsor-item__tap-hint {
  opacity: 0;
  transform: translateX(-50%) scale(0.88);
  transition-duration: 0.1s;
}

.sponsor-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  gap: 0;
  padding: 8px 6px 2px;
  min-height: 0;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.sponsor-item__top {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  min-height: 0;
  width: 100%;
}

.sponsor-item__foot {
  flex: 0 0 auto;
  width: 100%;
  margin-top: auto;
  padding-top: 2px;
}

.sponsor-item__foot:empty {
  display: none;
}

.sponsor-item:hover .sponsor-item__content {
  transform: translateY(-2px);
}

.sponsor-item__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1 1 0;
  min-height: 46px;
  margin-top: 0;
  padding: 0 4px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.sponsor-item__logo::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -10%;
  width: 120%;
  height: 55%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 28%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.06) 72%,
    transparent 100%
  );
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: soft-light;
  animation: logo-shine-pass 3.4s ease-in-out infinite;
}

@keyframes logo-shine-pass {
  0%, 32% {
    top: -120%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  62% {
    top: 130%;
    opacity: 0.85;
  }
  72%, 100% {
    top: 130%;
    opacity: 0;
  }
}

.sponsor-item:hover .sponsor-item__logo {
  transform: scale(1.05);
}

.sponsor-item__logo img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 94%;
  max-height: 100%;
  width: auto;
  height: auto;
  min-height: 44px;
  object-fit: contain;
}

.sponsor-item__name {
  margin: 0;
  padding: 0 6px;
  width: 100%;
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #e8a840;
  background: linear-gradient(135deg, #f0c060 0%, var(--theme-gold) 42%, #9A7318 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(193, 124, 25, 0.42));
  animation: sponsor-name-glow 3.4s ease-in-out infinite;
}

@supports not (-webkit-background-clip: text) {
  .sponsor-item__name {
    color: var(--theme-gold);
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

@keyframes sponsor-name-glow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(193, 124, 25, 0.32));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(232, 168, 64, 0.52));
  }
}

.sponsor-item__text {
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding-top: 0;
  margin-top: 0;
}

.sponsor-item__highlight-box {
  width: 100%;
  flex: 0 0 auto;
  min-height: 44px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 8px;
  border-radius: 10px;
  text-align: center;
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--site-color) 16%, rgba(255, 255, 255, 0.06)) 0%,
      rgba(255, 255, 255, 0.03) 48%,
      color-mix(in srgb, var(--site-color) 8%, rgba(0, 0, 0, 0.12)) 100%
    );
  border: 1px solid color-mix(in srgb, var(--site-color) 32%, rgba(255, 255, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 4px 16px color-mix(in srgb, var(--site-color) 18%, transparent);
}

.sponsor-item__highlight-box--multi {
  min-height: 58px;
  gap: 4px;
  padding: 8px 6px;
}

.sponsor-item__highlight {
  margin: 0;
  width: 100%;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: #fff;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 0 18px color-mix(in srgb, var(--site-color) 45%, transparent);
}

.sponsor-item__highlight-box--multi .sponsor-item__highlight + .sponsor-item__highlight {
  padding-top: 4px;
  border-top: 1px solid color-mix(in srgb, var(--site-color) 28%, rgba(255, 255, 255, 0.12));
}

.sponsor-item__label {
  margin-top: 0;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(210, 178, 120, 0.88);
  opacity: 0.95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
}

.sponsor-item__label small {
  font-size: inherit;
}

/* iOS liquid glass button */
.sponsor-item__button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 2px 6px 6px;
  padding: 0 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 22px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--site-color) 48%, rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 4px 14px color-mix(in srgb, var(--site-color) 30%, transparent),
    0 1px 2px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.sponsor-item:hover .sponsor-item__button {
  transform: translateY(-1px);
}

.sponsor-item:active .sponsor-item__button {
  animation: none;
  transform: scale(0.94);
  transition-duration: 0.14s;
  transition-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
  filter: brightness(0.9);
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.category-section.empty {
  display: none;
}

.site-footer {
  text-align: center;
  padding: 36px 0 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 768px) {
  .page-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .top-banners {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .sponsor-banner-wrap {
    width: 100%;
    max-width: 100%;
  }

  .sponsor-item.sponsor-item--banner {
    width: 100%;
  }

  .sponsor-item.sponsor-item--banner .sponsor-item__banner-img {
    width: 100%;
    height: 100%;
  }

  .category-items__promo-list {
    gap: 10px 12px;
  }

  .sponsor-item {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }

  .sponsor-item__content {
    padding: 6px 5px 2px;
  }

  .sponsor-item__logo {
    min-height: 40px;
  }

  .sponsor-item__logo img {
    min-height: 38px;
    max-width: 96%;
  }

  .sponsor-item__name {
    font-size: 0.76rem;
  }

  .sponsor-item__foot {
    padding-top: 2px;
  }

  .sponsor-item__highlight-box {
    min-height: 40px;
    padding: 6px 6px;
  }

  .sponsor-item__highlight-box--multi {
    min-height: 52px;
  }

  .sponsor-item__highlight {
    font-size: 0.76rem;
  }

  .sponsor-item__label {
    font-size: 0.58rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }

  .sponsor-item__button {
    width: calc(100% - 10px);
    min-height: 28px;
    margin: 2px 5px 5px;
    padding: 0 6px;
    font-size: 0.58rem;
    letter-spacing: 0.02em;
    border-radius: 16px;
  }

  .sponsor-item__tap-hint {
    top: 6px;
    padding: 4px 8px 4px 6px;
    font-size: 0.55rem;
    gap: 3px;
  }

  .sponsor-item__tap-hint::before {
    width: 11px;
    height: 11px;
  }

  .sponsor-col--border-fx:not(.sponsor-banner-wrap) {
    overflow: hidden;
  }

  .category-title {
    gap: 8px;
  }

  .category-title__line {
    min-width: 24px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .category-items__promo-list {
    gap: 8px 10px;
  }

  .sponsor-item__button {
    font-size: 0.56rem;
    min-height: 26px;
  }

  .sponsor-item__highlight {
    font-size: 0.78rem;
  }
}

/* ===== Sürekli kart & buton efektleri ===== */
.sponsor-item__fx-side,
.sponsor-item__anim-ring,
.sponsor-item__fx-top {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  display: none;
}

.sponsor-item__button-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-130%);
  pointer-events: none;
}

.sponsor-item.card-anim-1 .sponsor-item__fx-side {
  display: block;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.sponsor-item.card-anim-1 .sponsor-item__fx-side::before,
.sponsor-item.card-anim-1 .sponsor-item__fx-side::after {
  content: "";
  position: absolute;
  top: -60%;
  width: 2px;
  height: 45%;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--card-anim-color) 55%, transparent), transparent);
  opacity: 0.65;
  animation: fx-side-run 2.6s linear infinite;
}

.sponsor-item.card-anim-1 .sponsor-item__fx-side::before { left: 5px; }
.sponsor-item.card-anim-1 .sponsor-item__fx-side::after { right: 5px; animation-delay: 1.3s; }

@keyframes fx-side-run {
  0% { top: -55%; }
  100% { top: 115%; }
}

.sponsor-col--border-fx {
  position: relative;
  overflow: visible;
}

.sponsor-item.card-anim-2 {
  overflow: visible;
}

.sponsor-item__border-fx {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  color: var(--card-anim-color);
  border-radius: inherit;
}

.sponsor-item__border-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.sponsor-item__border-dash,
.sponsor-item__border-glow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 8.5 91.5;
  stroke-dashoffset: 0;
  animation: border-dash-travel 3.4s linear infinite;
}

.sponsor-item__border-dash {
  stroke-width: 1.75px;
  opacity: 1;
  filter: drop-shadow(0 0 4px currentColor);
}

.sponsor-item__border-glow {
  stroke-width: 4.5px;
  opacity: 0.48;
}

@keyframes border-dash-travel {
  to { stroke-dashoffset: -100; }
}

.sponsor-item.card-anim-3 .sponsor-item__fx-top {
  display: block;
  top: 0;
  left: -90%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--card-anim-color) 60%, rgba(255, 255, 255, 0.2)), transparent);
  opacity: 0.7;
  animation: fx-top-run 2.8s ease-in-out infinite;
}

@keyframes fx-top-run {
  0% { left: -90%; top: 0; bottom: auto; }
  45% { left: 110%; top: 0; }
  55% { left: -90%; top: auto; bottom: 0; }
  100% { left: 110%; bottom: 0; top: auto; }
}

.sponsor-item.btn-anim-1 .sponsor-item__button {
  animation: btn-anim-glow 2s ease-in-out infinite;
  background: color-mix(in srgb, var(--btn-anim-color) 45%, rgba(255, 255, 255, 0.08));
}

@keyframes btn-anim-glow {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 2px 10px color-mix(in srgb, var(--btn-anim-color) 25%, transparent); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 4px 18px color-mix(in srgb, var(--btn-anim-color) 45%, transparent), 0 0 16px color-mix(in srgb, var(--btn-anim-color) 30%, transparent); }
}

.sponsor-item.btn-anim-2 .sponsor-item__button-shine {
  animation: btn-shine-slide 2.2s ease-in-out infinite;
}

@keyframes btn-shine-slide {
  0% { transform: translateX(-130%); }
  45%, 100% { transform: translateX(130%); }
}

.sponsor-item.btn-anim-3 .sponsor-item__button {
  animation: btn-breathe 2.4s ease-in-out infinite;
  background: color-mix(in srgb, var(--btn-anim-color) 42%, rgba(255, 255, 255, 0.08));
}

@keyframes btn-breathe {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.035); opacity: 1; }
}
