*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #121212 0%, #080808 50%, #050505 100%);
  color: #f4f4f4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

/* ── TOPBAR ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: linear-gradient(180deg, rgba(12,12,12,0.97) 0%, rgba(0,0,0,0.75) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  gap: 24px;
}

/* ── BRAND ── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.brand-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f4f4f4;
}

/* ── TOPBAR LEFT ── */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── SOL NAV LİNKLER ── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  color: rgba(244,244,244,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 10px;
  transition: color 180ms ease, transform 180ms ease;
  overflow: hidden;
}

/* Soldan sağa kayan alt çizgi */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e10600;
  transform: translateX(-101%);
  transition: transform 1000ms ease;
}

.nav-link:hover {
  color: #e10600;
  transform: translateX(5px);
}

.nav-link:hover::after {
  transform: translateX(0);
}

/* ── TOPBAR RIGHT ── */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── DROPDOWN GRUP ── */
.nav-group {
  position: relative;
  display: inline-flex;
}

.dropdown__link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}

.dropdown__link svg {
  width: 10px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: transform 220ms ease;
}

.nav-group:hover > .dropdown__link {
  background: #e10600;
  color: #ffffff;
  border-color: #e10600;
}

.nav-group:hover > .dropdown__link svg {
  transform: rotate(90deg);
}

.shiny__reflect {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.nav-group:hover > .dropdown__link .shiny__reflect {
  opacity: 1;
  animation: shimmer 1s ease forwards;
}

/* ── DROPDOWN PANEL ── */
.dropdown__items {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
  z-index: 100;
}

.nav-group:hover .dropdown__items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── DROPDOWN İTEMLER ── */
.dropdown__item {
  position: relative;
  display: block;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  margin-bottom: 6px;
}

.dropdown__item:last-child { margin-bottom: 0; }

.dropdown__item__accent {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 4px;
  background: #e10600;
  z-index: 1;
}

.dropdown__item__text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  transition: background 180ms ease;
}

/* Soldan sağa kayan çizgi (dropdown item) */
.dropdown__item__text::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: #e10600;
  transform: translateX(-101%);
  transition: transform 260ms ease;
}

.dropdown__item:hover .dropdown__item__text {
  background: #f4f4f4;
}

.dropdown__item:hover .dropdown__item__text::after {
  transform: translateX(0);
}

.dropdown__item__text svg {
  width: 10px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-left: 12px;
}

/* ── MY FORZA BUTONU ── */
.solid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.solid-btn:hover {
  background: linear-gradient(135deg, #e10600, #ff4d6d);
  border-color: #ff4d6d;
}

/* ── ETİKET ALANI ── */
.tag-wrapper {
  position: relative;
  display: inline-flex;
}

.tag-area {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 200px;
  animation: fadeDown 220ms ease forwards;
  color: rgba(244,244,244,0.5);
  font-size: 0.85rem;
}

.tag-area.open { display: block; }

/* ── ANİMASYONLAR ── */
@keyframes shimmer {
  from { transform: translateX(-120%); }
  to   { transform: translateX(120%); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SAYFA İÇERİĞİ ── */
.content { padding: 100px 32px 42px; }

.hero {
  max-width: 720px;
  padding: 46px 42px;
  border-radius: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 32px 84px rgba(0,0,0,0.38);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255,255,255,0.74);
}
/* ── RESPONSIVE & NO SCROLL ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 10px;
  }
  .topbar-left { gap: 12px; }
  .topbar-right { gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
  .dropdown__link { padding: 8px 12px; font-size: 0.82rem; }
  .primary-nav { gap: 2px; }
  .nav-link { font-size: 0.82rem; padding: 5px 7px; }
  .solid-btn { padding: 8px 14px; font-size: 0.82rem; }
}

@media (max-width: 600px) {
  .topbar-right { gap: 4px; }
  .dropdown__link { padding: 7px 9px; font-size: 0.75rem; }
  .primary-nav { display: none; }
}
