/* ==========================================================================
   Kemal Bey - Ultra-Luxury Bespoke Matte Onyx & Champagne Gold CSS
   ========================================================================== */

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

:root {
  --font-primary: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Solid, Layered Luxury Matte Canvas (No flat pitch-black, no neon glare) */
  --bg-dark: #0c0d12;
  --bg-surface: #12131b;
  --bg-card: #171822;
  --bg-card-hover: #1e1f2c;
  --bg-card-subtle: #14151e;

  /* Refined Champagne Gold (Subtle, regal, non-neon) */
  --gold-bright: #fff0b8;
  --gold-light: #f0cb69;
  --gold-main: #d4af37;
  --gold-dark: #a68424;
  --gold-border: rgba(212, 175, 55, 0.3);
  --gold-border-hover: rgba(212, 175, 55, 0.65);

  /* Deep Ruby / Bordeaux Accent (Restrained, elegant) */
  --ruby-main: #8f1225;
  --ruby-dark: #630c19;
  --ruby-hover: #a8162d;

  /* Typography */
  --text-main: #f5f6fa;
  --text-secondary: rgba(245, 246, 250, 0.78);
  --text-muted: rgba(245, 246, 250, 0.55);

  /* Borders & Glass */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --glass-header: rgba(13, 14, 20, 0.88);
}

html {
  background-color: var(--bg-dark);
  font-family: var(--font-primary);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--bg-dark);
  background: radial-gradient(120% 120% at 50% 0%, #151620 0%, #0d0e14 45%, #08090d 100%);
  color: var(--text-main);
  font-family: var(--font-primary);
  overflow-x: hidden;
  position: relative;
}

/* Subtle, Elegant Ambient Vignette (Soft non-intrusive luxury lighting) */
.bgGlowOrb {
  position: fixed;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d4af37 0%, #8f1225 60%, transparent 80%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.orb2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8f1225 0%, #1a1528 70%, transparent 80%);
  bottom: 5%;
  right: -100px;
}

/* ==================== Main Page Layout ==================== */
.mainPageBg {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
}

.referansSection {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

@media (max-width: 767px) {
  .referansSection {
    padding: 1rem 0.85rem 3rem;
  }
}

/* ==================== Modern Floating Island Header ==================== */
.siteHeader {
  position: sticky;
  top: 0.85rem;
  z-index: 100;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  width: calc(100% - 2rem);
  background: rgba(16, 17, 24, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.25rem;
  min-height: 64px;
}

.headerLogoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerLogo {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(212, 175, 55, 0.2));
  transition: transform 0.25s ease;
}

.headerLogo:hover {
  transform: scale(1.03);
}

.headerNav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.headerNavLink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.navPillDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-main);
  box-shadow: 0 0 6px var(--gold-main);
}

.headerNavLink:hover {
  color: #fff;
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-border);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .siteHeader {
    top: 0.5rem;
    width: calc(100% - 1.2rem);
    border-radius: 18px;
    margin-bottom: 1.25rem;
  }
  .headerInner {
    justify-content: center;
    padding: 0.45rem 0.85rem;
    min-height: 56px;
  }
  .headerLogo {
    height: 54px;
  }
  .headerNav {
    display: none;
  }
}

/* ==================== Sosyal Medya Action Kartları ==================== */
.socialBtnRow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

@media (max-width: 600px) {
  .socialBtnRow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.socialModernBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-clip: padding-box;
}

.socialModernBtn:hover {
  transform: translateY(-2px);
}

.socialBtnLeft {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.socialIconCircle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.socialIconSvg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.socialTextGroup {
  display: flex;
  flex-direction: column;
}

.socialHeading {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.socialTagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 1px;
}

.socialArrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease;
}

.socialModernBtn:hover .socialArrow {
  transform: translate(2px, -2px);
  color: #ffffff;
}

/* Telegram Mavisi */
.telegramBtn {
  background: linear-gradient(to right, #1c8cc3 0%, #1573a2 100%);
}

.telegramBtn:hover {
  background: linear-gradient(to right, #249cd7 0%, #1a81b5 100%);
  box-shadow: 0 10px 24px rgba(28, 140, 195, 0.4);
}

/* Instagram Degradesi (Soldan Sağa - Kenar renk taşması önlenmiş) */
.instagramBtn {
  background-color: #833ab4;
  background: linear-gradient(to right, #833ab4 0%, #fd1d1d 55%, #fcb045 100%);
}

.instagramBtn:hover {
  background: linear-gradient(to right, #913ec4 0%, #ff2b2b 55%, #fcb854 100%);
  box-shadow: 0 10px 24px rgba(253, 29, 29, 0.35);
}

/* ==================== Modern 2026 Section Headers ==================== */
.modernSectionHeader {
  text-align: center;
  margin: 2.75rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.modernSectionTag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tagPulseDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-main);
  box-shadow: 0 0 8px var(--gold-main);
  animation: tagPulse 2s ease-in-out infinite;
}

.tagEmerald {
  background: rgba(52, 199, 89, 0.08);
  border-color: rgba(52, 199, 89, 0.25);
  color: #5ce375;
}

.tagEmerald .tagPulseDot {
  background: #34c759;
  box-shadow: 0 0 8px #34c759;
}

.tagRuby {
  background: rgba(143, 18, 37, 0.15);
  border-color: rgba(143, 18, 37, 0.35);
  color: #ff7088;
}

.tagRuby .tagPulseDot {
  background: #ff4767;
  box-shadow: 0 0 8px #ff4767;
}

@keyframes tagPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.modernSectionHeading {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modernSectionDesc {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.45;
}

/* ==================== VIP Siteler: Bento Showcase Cards ==================== */
.vipGrid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  width: 100%;
  margin-bottom: 2.75rem;
}

.vipBentoCard {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 20px;
  background: #13141d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s;
}

.vipBentoCard:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.55), 0 0 24px rgba(212, 175, 55, 0.12);
}

.vipBentoInner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(19, 20, 29, 0.95) 100%);
}

/* Sol Vitrin: Logo Çerçevesi */
.vipBrandFrame {
  width: 220px;
  height: 92px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.vipBentoCard:hover .vipBrandFrame {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.25);
}

.vipBrandLogo {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
  transition: transform 0.25s ease;
}

.vipBentoCard:hover .vipBrandLogo {
  transform: scale(1.05);
}

.vipBrandFallback {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Orta Alan: Bilgi & Güven Rozetleri */
.vipInfoCol {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.vipBadgeRow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.vipBonusChip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.28);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  animation: chipBorderGlow 2.4s ease-in-out infinite alternate;
}

.vipBonusChip > span:last-child,
.vipBonusText {
  display: inline-block;
  color: #f3d178;
  letter-spacing: 0.04em;
  animation: bonusTextPulse 2.4s ease-in-out infinite alternate;
}

.chipSparkle {
  font-size: 0.8rem;
  display: inline-block;
  animation: sparkleTwinkle 2.4s ease-in-out infinite alternate;
}

.vipBonusChip.pulseDisabled,
.vipBonusChip.pulseDisabled .vipBonusText,
.vipBonusChip.pulseDisabled > span:last-child,
.vipBonusChip.pulseDisabled .chipSparkle {
  animation: none !important;
}

@keyframes bonusTextPulse {
  0% {
    color: #e2ba58;
    opacity: 0.82;
    text-shadow: 0 0 2px rgba(226, 186, 88, 0.15);
  }
  50% {
    opacity: 0.95;
    text-shadow: 0 0 5px rgba(255, 220, 100, 0.35);
  }
  100% {
    color: #fff4c6;
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 225, 110, 0.7), 0 0 14px rgba(212, 175, 55, 0.35);
  }
}

@keyframes chipBorderGlow {
  0% {
    border-color: rgba(212, 175, 55, 0.22);
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    background: rgba(212, 175, 55, 0.06);
  }
  100% {
    border-color: rgba(245, 210, 115, 0.55);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.22);
    background: rgba(212, 175, 55, 0.12);
  }
}

@keyframes sparkleTwinkle {
  0% {
    transform: scale(0.92);
    filter: drop-shadow(0 0 1px rgba(0, 200, 255, 0.3));
    opacity: 0.85;
  }
  100% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 5px rgba(0, 220, 255, 0.7));
    opacity: 1;
  }
}

.vipVerifiedChip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.25);
  color: #4cd964;
  font-size: 0.72rem;
  font-weight: 700;
}

.chipPulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4cd964;
}

.vipSiteTitle {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vipTrustRow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trustTag {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Sağ Alan: Aksiyon Butonu */
.vipActionCol {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.vipBentoBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f2d27c 0%, #d4af37 60%, #b89127 100%);
  color: #0f1016;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.vipBentoCard:hover .vipBentoBtn {
  background: linear-gradient(180deg, #ffea9f 0%, #e0bd49 60%, #c59b27 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 14px rgba(212, 175, 55, 0.25);
}

.bentoArrowSvg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.vipBentoCard:hover .bentoArrowSvg {
  transform: translateX(3px);
}

/* Mobil Responsive (< 680px) */
@media (max-width: 680px) {
  .vipBentoInner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
  }
  .vipBrandFrame {
    width: 100%;
    height: 75px;
  }
  .vipBrandLogo {
    max-height: 60px;
  }
  .vipBadgeRow {
    justify-content: center;
  }
  .vipSiteTitle,
  .vipTrustRow {
    display: none !important;
  }
  .vipActionCol {
    justify-content: stretch;
    width: 100%;
  }
  .vipBentoBtn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

/* ==================== Referans Siteler: Bento Grid ==================== */
.referansGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-bottom: 2.75rem;
}

@media (max-width: 500px) {
  .referansGrid {
    gap: 0.75rem;
  }
}

.refBentoTile {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: #13141d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s, box-shadow 0.22s;
}

.refBentoTile:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 16px rgba(212, 175, 55, 0.12);
}

.refTileInner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.95rem 1.15rem;
  height: 100%;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.02) 0%, rgba(18, 19, 28, 0.96) 100%);
}

@media (max-width: 500px) {
  .refTileInner {
    padding: 0.8rem 0.85rem;
  }
}

.refTileHeader {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0.6rem;
}

.refStatusBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4cd964;
  background: rgba(76, 217, 100, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(76, 217, 100, 0.2);
}

.refStatusDot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4cd964;
}

.refExternalArrow {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s, color 0.2s;
}

.refBentoTile:hover .refExternalArrow {
  transform: translate(2px, -2px);
  color: var(--gold-light);
}

.refLogoStage {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0 0.6rem;
}

@media (max-width: 500px) {
  .refLogoStage {
    height: 56px;
  }
}

.refBentoLogo {
  max-width: 80%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease;
}

.refBentoTile:hover .refBentoLogo {
  transform: scale(1.06);
}

.refBentoFallback {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.refTileFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.6rem;
}

.refSiteCaption {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.refEnterPrompt {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
}

.refBentoTile:hover .refEnterPrompt {
  opacity: 1;
  transform: translateX(2px);
}

/* ==================== Hakkımda: Executive Creator Profile Card ==================== */
.hakkimdaSection {
  margin-top: 2rem;
}

.creatorProfileCard {
  background: #13141d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}

@media (max-width: 680px) {
  .creatorProfileCard {
    padding: 1.25rem;
    border-radius: 18px;
  }
}

.creatorCardHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.creatorBadgeWrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.creatorAvatarBox {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.creatorAvatarBox:hover {
  transform: scale(1.04);
  border-color: rgba(212, 175, 55, 0.35);
}

.creatorLogoImg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.creatorMeta {
  display: flex;
  flex-direction: column;
}

.creatorNameRow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.creatorNameText {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.creatorVerifiedBadge {
  background: var(--gold-main);
  color: #0c0d12;
  font-size: 0.68rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.creatorSubRole {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.creatorTrustChips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trustChip {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.creatorCardBody p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.creatorCardBody p strong {
  color: var(--gold-light);
  font-weight: 800;
}

.hakkimdaFinal {
  margin-top: 0.75rem;
  color: var(--gold-light) !important;
  font-size: 1.02rem !important;
  font-weight: 800;
}

.hakkimdaCollapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  opacity: 0;
}

.hakkimdaCollapseOpen {
  max-height: 700px;
  opacity: 1;
}

.hakkimdaToggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--bg-surface);
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hakkimdaToggle:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-border);
  transform: translateY(-1px);
}

.hakkimdaToggleIcon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hakkimdaToggleIconOpen {
  transform: rotate(180deg);
}

/* Reklam & İletişim Butonu (Ortalanmış Prestijli VIP Buton) */
.reklamIletisimBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  margin-top: 1.75rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #8f1225 0%, #630c19 100%);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid var(--gold-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.reklamIletisimBtn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-main);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 16px rgba(212, 175, 55, 0.2);
}

.reklamIconCircle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.reklamIletisimIcon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.reklamMainTitle {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* ==================== Popup Modal ==================== */
.popupWrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.popupInner {
  position: relative;
  display: inline-block;
  max-width: 90vw;
  max-height: 90vh;
  animation: popupScale 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupScale {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popupImage {
  display: block;
  width: auto;
  height: auto;
  max-width: min(560px, 90vw);
  max-height: min(420px, 85vh);
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  border: 1px solid var(--border-subtle);
}

.popupClose {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 50%;
  background: var(--gold-main);
  color: #0c0d12;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s, background 0.2s;
}

.popupClose:hover {
  transform: scale(1.1);
  background: #ffffff;
}

/* ==========================================================================
   🔑 ADMIN PANEL STİLLERİ (admin.html - Profesyonel Koyu Mat Tasarım)
   ========================================================================== */
.adminBody {
  background: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Login View */
.loginViewContainer {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(120% 120% at 50% 0%, #151620 0%, #0d0e14 100%);
}

.loginCard {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.loginLogo {
  max-width: 220px;
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.loginTitle {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.loginSubtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.loginForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.loginError {
  background: rgba(230, 0, 46, 0.15);
  border: 1px solid rgba(230, 0, 46, 0.35);
  color: #ff6b82;
  font-size: 0.85rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
}

.loginSubmitBtn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #f2d27c 0%, #d4af37 100%);
  color: #0c0d12;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.loginSubmitBtn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ffea9f 0%, #e0bd49 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Dashboard Container */
.dashboardContainer {
  min-height: 100vh;
}

.adminHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-header);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 1.5rem;
}

.adminHeaderInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.adminBrand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.adminHeaderLogo {
  height: 48px;
  width: auto;
}

.adminHeaderTitle {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.adminStatusBadge {
  font-size: 0.75rem;
  color: #4cd964;
  font-weight: 600;
}

.adminHeaderActions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.saveAllBtn {
  background: linear-gradient(180deg, #34c759, #248a3d);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(36, 138, 61, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.saveAllBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(36, 138, 61, 0.45);
}

.logoutBtn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.logoutBtn:hover {
  background: rgba(230, 0, 46, 0.2);
  color: #ff6b82;
  border-color: rgba(230, 0, 46, 0.4);
}

.adminMainContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Nav Tabs */
.adminNavTabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.navTab {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.navTab:hover {
  background: var(--bg-card-hover);
  color: #fff;
  border-color: var(--border-hover);
}

.navTab.active {
  background: var(--gold-main);
  color: #0c0d12;
  border-color: var(--gold-main);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

/* Tab Panes */
.tabPane {
  display: none;
}

.tabPane.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.paneHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.paneTitle {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.paneDesc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.addBtn {
  background: var(--bg-card);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.addBtn:hover {
  transform: translateY(-1px);
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-main);
}

/* Form Controls */
.formGroup {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.formLabel {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.formInput, .formTextarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.formInput:focus, .formTextarea:focus {
  outline: none;
  border-color: var(--gold-border);
}

.inputWithUpload {
  display: flex;
  gap: 0.5rem;
}

.uploadMiniBtn, .uploadBtn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.uploadMiniBtn:hover, .uploadBtn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-border);
}

/* Admin Site Items List */
.siteAdminList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.siteAdminItem {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

@media (max-width: 850px) {
  .siteAdminItem {
    flex-direction: column;
    align-items: stretch;
  }
}

.itemOrderControls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

@media (max-width: 850px) {
  .itemOrderControls {
    flex-direction: row;
    justify-content: space-between;
  }
}

.orderBtn {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--gold-light);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.orderBtn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.orderNum {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
}

.itemLogoPreview {
  width: 80px;
  height: 50px;
  background: var(--bg-surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.itemLogoPreview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.itemFieldsGrid {
  flex: 1 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.itemActions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 850px) {
  .itemActions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.deleteBtn {
  background: rgba(230, 0, 46, 0.1);
  border: 1px solid rgba(230, 0, 46, 0.3);
  color: #ff6b82;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.deleteBtn:hover {
  background: rgba(230, 0, 46, 0.25);
}

/* Switch Slider */
.switchLabel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.switchLabel input {
  display: none;
}

.switchSlider {
  width: 38px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  position: relative;
  transition: background 0.25s;
}

.switchSlider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s;
}

.switchLabel input:checked + .switchSlider {
  background: #34c759;
}

.switchLabel input:checked + .switchSlider::before {
  transform: translateX(18px);
}

.switchText {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* Admin Card Group */
.adminCardGroup {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.adminCard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cardHeading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.mediaUploadRow {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 600px) {
  .mediaUploadRow {
    flex-direction: column;
  }
}

.mediaPreviewWrap {
  width: 160px;
  height: 90px;
  background: var(--bg-surface);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.mediaPreviewImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mediaInputs {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Toast Notifications */
.toastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.toastShow {
  opacity: 1;
  transform: translateX(0);
}

.toastSuccess {
  background: linear-gradient(135deg, #1e7e34, #28a745);
  border: 1px solid #4cd964;
}

.toastError {
  background: linear-gradient(135deg, #bd2130, #dc3545);
  border: 1px solid #ff6b6b;
}

/* ==================== Footer (Star Yazılım İmzası) ==================== */
.siteFooter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 1rem 1.5rem;
  margin-top: 1.5rem;
}

.footerDevLink {
  color: var(--gold-main);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: all 0.2s ease;
  display: inline-block;
}

.footerDevLink:hover {
  color: var(--gold-light);
  opacity: 1;
  transform: translateY(-1px);
}
