/* ==========================================================================
   Alya.com - VIP & Luxury Royal Bordo (Burgundy & Deep Velvet Wine) Theme
   ========================================================================== */

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

:root {
  --font-primary: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Bordo & Deep Velvet Palette */
  --bg-dark: #0d0205;
  --bg-card: #17040a;
  --bg-card-alt: #220610;
  --bg-card-hover: #290814;
  
  --bordo-deep: #4a0413;
  --bordo-dark: #63081b;
  --bordo-main: #800020;
  --bordo-rich: #9e1236;
  --bordo-vibrant: #b81942;
  --bordo-light: #d42b58;
  --bordo-bright: #ea4573;
  --bordo-soft: #fde8ed;
  --bordo-glow: rgba(184, 25, 66, 0.35);
  
  /* Luxury Gold & Rose Accents */
  --gold-accent: #e5b964;
  --gold-light: #f5d48b;
  --gold-glow: rgba(229, 185, 100, 0.32);
  
  /* Backward-compatible aliases */
  --pink-main: var(--bordo-vibrant);
  --pink-light: var(--bordo-light);
  --pink-bright: var(--bordo-bright);
  --pink-soft: var(--bordo-soft);
  --pink-dark: var(--bordo-main);
  --pink-glow: var(--bordo-glow);
  --purple-accent: var(--bordo-deep);
  --purple-light: var(--bordo-rich);
  --purple-dark: var(--bordo-dark);

  --text-main: #faeff3;
  --text-muted: rgba(250, 239, 243, 0.75);
  --glass-bg: rgba(23, 4, 10, 0.88);
  --glass-border: rgba(184, 25, 66, 0.28);
}

/* ==================== Custom Scrollbar ==================== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0d0205;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #800020, #b81942);
  border-radius: 6px;
  border: 2px solid #0d0205;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9e1236, #d42b58);
}

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

body {
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-primary);
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(158, 18, 54, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 100% 60%, rgba(107, 10, 35, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(184, 25, 66, 0.12) 0%, transparent 45%);
}

/* ==================== Ambient Glow Orbs (Royal Bordo & Deep Wine) ==================== */
.bgGlowOrb {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

.orb1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #9e1236 0%, #4a0413 70%, transparent 100%);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbFloat1 12s ease-in-out infinite alternate;
}

.orb2 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #800020 0%, #35020c 70%, transparent 100%);
  bottom: 8%;
  right: -140px;
  animation: orbFloat2 15s ease-in-out infinite alternate;
}

.orb3 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #b81942 0%, #63081b 60%, transparent 100%);
  bottom: 45%;
  left: -160px;
  animation: orbFloat3 18s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-40%) translateY(60px) scale(1.1); }
}

@keyframes orbFloat2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-70px) scale(1.15); }
}

@keyframes orbFloat3 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.12); }
}

/* ==================== Soft Twinkle Star Dust Layer ==================== */
.sparkleOverlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(1.5px 1.5px at 15% 12%, rgba(255, 255, 255, 0.45) 100%, transparent),
    radial-gradient(1.5px 1.5px at 35% 45%, rgba(229, 185, 100, 0.45) 100%, transparent),
    radial-gradient(2px 2px at 75% 25%, rgba(255, 255, 255, 0.5) 100%, transparent),
    radial-gradient(1.5px 1.5px at 85% 70%, rgba(212, 43, 88, 0.5) 100%, transparent),
    radial-gradient(2px 2px at 50% 85%, rgba(229, 185, 100, 0.45) 100%, transparent),
    radial-gradient(1.5px 1.5px at 92% 15%, rgba(255, 255, 255, 0.5) 100%, transparent),
    radial-gradient(1.5px 1.5px at 8% 65%, rgba(212, 43, 88, 0.4) 100%, transparent);
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: starTwinkle 6s ease-in-out infinite alternate;
  opacity: 0.45;
}

@keyframes starTwinkle {
  0% { opacity: 0.25; transform: translateY(0); }
  100% { opacity: 0.55; transform: translateY(-8px); }
}

/* ==================== 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;
  }
}

/* ==================== Header ==================== */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 2, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 25, 66, 0.22);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.65), 0 0 15px rgba(184, 25, 66, 0.12);
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  min-height: 68px;
}

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

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

@media (max-width: 600px) {
  .headerNav {
    display: none;
  }
  .headerInner {
    justify-content: center;
  }
}

.headerNavLink {
  color: rgba(250, 239, 243, 0.88);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.42rem 0.95rem;
  border-radius: 12px;
  background: rgba(128, 0, 32, 0.16);
  border: 1px solid rgba(184, 25, 66, 0.28);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.headerNavLink:hover {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(158, 18, 54, 0.35), rgba(184, 25, 66, 0.35));
  border-color: #b81942;
  box-shadow: 0 0 14px rgba(184, 25, 66, 0.45);
  transform: translateY(-1px);
}

.headerLogo {
  height: 85px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(184, 25, 66, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 12px;
}

.headerLogo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 22px rgba(212, 43, 88, 0.65));
}

.headerGoldLine, .headerPinkLine, .headerBordoLine {
  height: 3px;
  background: linear-gradient(90deg, transparent, #800020, #b81942, #e5b964, #b81942, #800020, transparent);
  background-size: 200% 100%;
  animation: bordoLineShift 4s linear infinite;
}

@keyframes bordoLineShift {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ==================== Banner ==================== */
.referansBannerWrap {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75), 0 0 28px rgba(184, 25, 66, 0.26);
  border: 1.5px solid rgba(184, 25, 66, 0.32);
  background: #17040a;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.referansBannerWrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 38px rgba(184, 25, 66, 0.4);
}

.referansBanner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==================== Sosyal Medya Butonları ==================== */
.socialBtnRow {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .socialBtnRow {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.telegramBannerBtn,
.instagramBannerBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex: 1 1;
  padding: 0.92rem 1.4rem;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  position: relative;
  overflow: hidden;
}

.telegramBannerBtn {
  background: linear-gradient(135deg, #0088cc 0%, #4a0d24 100%);
  box-shadow: 0 4px 18px rgba(0, 136, 204, 0.3), 0 0 14px rgba(184, 25, 66, 0.25);
  border: 1px solid rgba(0, 136, 204, 0.45);
}

.telegramBannerBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.45), 0 0 22px rgba(184, 25, 66, 0.4);
  color: #fff;
}

.instagramBannerBtn {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 40%, #800020 70%, #b81942 100%);
  box-shadow: 0 4px 18px rgba(184, 25, 66, 0.35), 0 0 15px rgba(128, 0, 32, 0.25);
  border: 1px solid rgba(184, 25, 66, 0.42);
}

.instagramBannerBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(184, 25, 66, 0.55), 0 0 24px rgba(229, 185, 100, 0.35);
  color: #fff;
}

.telegramBannerBtnIcon,
.instagramBannerBtnIcon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
}

/* ==================== Section Headers (Royal Bordo & Gold Glow) ==================== */
.sectionHeaderBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #800020, #b81942, #540516, #9e1236, #800020);
  background-size: 300% 300%;
  animation: headerGradient 6s ease infinite;
  box-shadow: 0 6px 24px rgba(128, 0, 32, 0.3), 0 0 18px rgba(184, 25, 66, 0.22);
  width: 100%;
  overflow: visible;
}

.vipSectionHeader {
  background: linear-gradient(135deg, #800020, #b81942, #e5b964, #9e1236, #800020);
  background-size: 300% 300%;
  box-shadow: 0 6px 26px rgba(184, 25, 66, 0.35), 0 0 20px rgba(229, 185, 100, 0.25);
}

.referansHeaderBox {
  background: linear-gradient(135deg, #63081b, #800020, #9e1236, #b81942);
  background-size: 300% 300%;
}

.hakkimdaHeaderBox {
  background: linear-gradient(135deg, #800020, #540516, #36020c);
}

@keyframes headerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sectionHeaderInner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 1.2rem;
  background: #140308;
  border-radius: 14px;
}

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

.crownIcon, .starIcon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 10px rgba(229, 185, 100, 0.65)) drop-shadow(0 0 6px rgba(184, 25, 66, 0.65));
  display: inline-block;
  animation: cuteBounce 3s ease-in-out infinite;
}

@keyframes cuteBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(4deg); }
}

.sectionHeaderTitle {
  font-size: clamp(1.02rem, 2.5vw + 0.5rem, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 12px rgba(184, 25, 66, 0.55), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.referansHeaderSafeWrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: -0.6rem -0.6rem -0.6rem 0;
}

.referansHeaderSafe {
  max-height: clamp(56px, 11vw, 95px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(184, 25, 66, 0.4));
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.referansHeaderSafe:hover {
  transform: scale(1.08) rotate(-2deg);
}

/* ==================== VIP Siteler (2'li Yan Yana Grid) ==================== */
.vipGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-bottom: 2.75rem;
}

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

.vipCard {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #800020, #b81942, #540516, #e5b964, #9e1236, #800020);
  background-size: 300% 300%;
  animation: vipGlowShift 4.5s ease infinite, vipPulse 3s ease-in-out infinite alternate;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.7), 0 0 20px rgba(184, 25, 66, 0.28);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
  overflow: hidden;
}

@keyframes vipGlowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes vipPulse {
  0% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7), 0 0 16px rgba(184, 25, 66, 0.25); }
  100% { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.85), 0 0 28px rgba(184, 25, 66, 0.5); }
}

.vipCard:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.9), 0 0 36px rgba(184, 25, 66, 0.65), 0 0 16px rgba(229, 185, 100, 0.35);
}

.vipShimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    rgba(229, 185, 100, 0.25),
    transparent
  );
  transform: translateX(-150%) skewX(-25deg);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmerSweep {
  0% { transform: translateX(-150%) skewX(-25deg); }
  35%, 100% { transform: translateX(280%) skewX(-25deg); }
}

.vipCardInner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, #1e050d 0%, #110207 100%);
  border-radius: 16px;
  padding: 0.95rem 0.9rem 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (max-width: 480px) {
  .vipCardInner {
    padding: 0.75rem 0.6rem 0.85rem;
    gap: 0.55rem;
  }
}

.vipHeaderTags {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vipFeatureBadge {
  width: 100%;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.32), rgba(84, 5, 22, 0.4));
  border: 1px solid rgba(184, 25, 66, 0.38);
  color: #ffccd5;
  font-weight: 800;
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  letter-spacing: 0.03em;
  padding: 0.4rem 0;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 10px rgba(184, 25, 66, 0.2);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.vipBadgeTrack {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: vipMarquee 8s linear infinite;
  will-change: transform;
}

.vipCard:hover .vipBadgeTrack {
  animation-play-state: paused;
}

.vipBadgeText {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0 18px;
  text-shadow: 0 0 8px rgba(184, 25, 66, 0.5);
}

@keyframes vipMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.vipLogoWrap {
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.4rem;
}

@media (max-width: 480px) {
  .vipLogoWrap {
    height: 50px;
  }
}

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

.vipCard:hover .vipLogoImg {
  transform: scale(1.08);
}

.vipLogoPlaceholder {
  color: #f392a5;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  text-shadow: 0 0 8px rgba(184, 25, 66, 0.45);
}

.vipActionWrap {
  width: 100%;
}

.vipActionBtn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #800020 0%, #b81942 50%, #9e1236 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(0.76rem, 2vw, 0.86rem);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(184, 25, 66, 0.42);
  transition: all 0.25s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.vipCard:hover .vipActionBtn {
  background: linear-gradient(135deg, #9e1236 0%, #d42b58 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(184, 25, 66, 0.65);
}

.vipArrowIcon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.vipCard:hover .vipArrowIcon {
  transform: translateX(4px);
}

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

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

.referansBox {
  aspect-ratio: 2.8 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.5), rgba(184, 25, 66, 0.35), rgba(84, 5, 22, 0.5));
  background-size: 200% 200%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
  overflow: hidden;
}

.referansBox:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 28px rgba(184, 25, 66, 0.42);
  background-position: 100% 0;
}

.referansBoxInner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #140308;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.referansBoxLogo {
  width: auto !important;
  max-width: 75%;
  height: auto !important;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease;
}

.referansBox:hover .referansBoxLogo {
  transform: scale(1.08);
}

.referansBoxPlaceholder {
  color: rgba(255, 204, 213, 0.9);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 0 6px rgba(184, 25, 66, 0.4);
}

/* ==================== Hakkımda ==================== */
.hakkimdaSection {
  margin-top: 2.5rem;
}

.hakkimdaContent {
  padding: 1.85rem;
  background: rgba(23, 4, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(128, 0, 32, 0.55);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(128, 0, 32, 0.35);
}

@media (max-width: 767px) {
  .hakkimdaContent {
    padding: 1.35rem;
  }
}

.hakkimdaContent p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0.95rem;
}

.hakkimdaContent p strong {
  color: #c41e3a;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.85), 0 0 18px rgba(84, 5, 22, 0.6);
}

.hakkimdaFinal {
  margin-top: 0.85rem;
  color: #c41e3a !important;
  font-size: 1.08rem !important;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(128, 0, 32, 0.9), 0 0 24px rgba(84, 5, 22, 0.7);
}

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

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

.hakkimdaToggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.65rem 1.45rem;
  border: 1.5px solid rgba(128, 0, 32, 0.65);
  border-radius: 12px;
  background: rgba(84, 5, 22, 0.3);
  color: #d13b58;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hakkimdaToggle:hover {
  background: rgba(128, 0, 32, 0.5);
  border-color: #9e1236;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(128, 0, 32, 0.85), 0 0 10px rgba(84, 5, 22, 0.7);
  transform: translateY(-2px);
}

.hakkimdaToggleIcon {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}

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

.reklamIletisimBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.95rem 1.35rem;
  margin-top: 1.85rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #540516 0%, #800020 50%, #63081b 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(128, 0, 32, 0.55);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.reklamIletisimBtn:hover {
  background: linear-gradient(135deg, #800020 0%, #9e1236 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 28px rgba(128, 0, 32, 0.85);
}

.reklamIletisimIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

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

.footerDevLink {
  color: #b81942;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.88;
  transition: all 0.25s ease;
  display: inline-block;
  text-shadow: 0 0 10px rgba(184, 25, 66, 0.3);
}

.footerDevLink:hover {
  color: #f392a5;
  opacity: 1;
  text-shadow: 0 0 14px rgba(234, 69, 115, 0.7), 0 0 24px rgba(184, 25, 66, 0.4);
  transform: translateY(-1px);
}

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

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

@keyframes popupScale {
  from { transform: scale(0.85); 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: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 32px rgba(184, 25, 66, 0.35);
  border: 1.5px solid rgba(184, 25, 66, 0.35);
}

.popupClose {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #800020, #b81942);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 25, 66, 0.45);
  transition: transform 0.2s, background 0.2s;
}

.popupClose:hover {
  transform: scale(1.15) rotate(90deg);
  background: #d42b58;
}

/* ==================== Floating Back to Top Button ==================== */
.backToTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #800020, #b81942);
  border: 1px solid rgba(229, 185, 100, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.65), 0 0 16px rgba(184, 25, 66, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.backToTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.backToTopBtn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.75), 0 0 25px rgba(184, 25, 66, 0.65);
  border-color: #e5b964;
}

.backToTopIcon {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   🔑 ADMIN PANEL STİLLERİ (admin.html - Royal Bordo & Velvet Wine Theme)
   ========================================================================== */
.adminBody {
  background: #0d0205;
  color: #faeff3;
  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(circle at center, #260511 0%, #0d0205 100%);
}

.loginCard {
  width: 100%;
  max-width: 440px;
  background: rgba(23, 4, 10, 0.95);
  border: 1.5px solid rgba(184, 25, 66, 0.32);
  border-radius: 22px;
  padding: 2.75rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 32px rgba(184, 25, 66, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}

.loginLogo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 16px rgba(184, 25, 66, 0.45));
}

.loginTitle {
  font-size: 1.45rem;
  font-weight: 800;
  color: #f392a5;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 12px rgba(184, 25, 66, 0.4);
}

.loginSubtitle {
  font-size: 0.88rem;
  color: rgba(250, 239, 243, 0.72);
  margin-bottom: 1.85rem;
}

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

.loginError {
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.4);
  color: #ff6b6b;
  font-size: 0.85rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
}

.loginSubmitBtn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #800020, #b81942);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(184, 25, 66, 0.4);
}

.loginSubmitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 25, 66, 0.6);
}

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

.adminHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 3, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 25, 66, 0.24);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
}

.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: 52px;
  width: auto;
  border-radius: 8px;
}

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

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

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

.saveAllBtn {
  background: linear-gradient(135deg, #800020, #b81942);
  color: #fff;
  border: none;
  padding: 0.7rem 1.35rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(184, 25, 66, 0.42);
  transition: transform 0.2s, box-shadow 0.2s;
}

.saveAllBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 25, 66, 0.65);
}

.logoutBtn {
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.4);
  color: #ff6b6b;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s;
}

.logoutBtn:hover {
  background: rgba(255, 59, 59, 0.3);
}

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

/* Nav Tabs */
.adminNavTabs {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navTab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(250, 239, 243, 0.75);
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.navTab:hover {
  background: rgba(128, 0, 32, 0.2);
  color: #f392a5;
  border-color: rgba(184, 25, 66, 0.3);
}

.navTab.active {
  background: linear-gradient(135deg, #800020, #b81942);
  color: #ffffff;
  border-color: #b81942;
  box-shadow: 0 4px 18px rgba(184, 25, 66, 0.4);
}

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

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  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.3rem;
  font-weight: 800;
  color: #f392a5;
  text-shadow: 0 0 10px rgba(184, 25, 66, 0.3);
}

.paneDesc {
  font-size: 0.88rem;
  color: rgba(250, 239, 243, 0.68);
  margin-top: 0.25rem;
}

.addBtn {
  background: linear-gradient(135deg, #800020, #b81942);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(184, 25, 66, 0.35);
}

.addBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(184, 25, 66, 0.55);
}

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

.formLabel {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 204, 213, 0.95);
}

.formInput, .formTextarea {
  width: 100%;
  background: #180309;
  border: 1px solid rgba(184, 25, 66, 0.25);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.formInput:focus, .formTextarea:focus {
  outline: none;
  border-color: #b81942;
  box-shadow: 0 0 12px rgba(184, 25, 66, 0.4);
}

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

.uploadMiniBtn, .uploadBtn {
  background: rgba(128, 0, 32, 0.2);
  border: 1px solid rgba(184, 25, 66, 0.4);
  color: #f392a5;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.uploadMiniBtn:hover, .uploadBtn:hover {
  background: rgba(184, 25, 66, 0.32);
  color: #ffffff;
  transform: translateY(-1px);
}

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

.siteAdminItem {
  background: rgba(23, 4, 10, 0.92);
  border: 1px solid rgba(184, 25, 66, 0.25);
  border-radius: 16px;
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

.orderBtn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #f392a5;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s;
}

.orderBtn:hover:not(:disabled) {
  background: rgba(184, 25, 66, 0.3);
}

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

.orderNum {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(250, 239, 243, 0.6);
}

.itemLogoPreview {
  width: 84px;
  height: 52px;
  background: #120206;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(184, 25, 66, 0.2);
}

.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.85rem;
}

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

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

.deleteBtn {
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.4);
  color: #ff6b6b;
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s;
}

.deleteBtn:hover {
  background: rgba(255, 59, 59, 0.3);
}

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

.switchLabel input {
  display: none;
}

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

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

.switchLabel input:checked + .switchSlider {
  background: #b81942;
  box-shadow: 0 0 10px rgba(184, 25, 66, 0.5);
}

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

.switchText {
  font-size: 0.85rem;
  font-weight: 700;
}

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

.adminCard {
  background: rgba(23, 4, 10, 0.92);
  border: 1px solid rgba(184, 25, 66, 0.25);
  border-radius: 18px;
  padding: 1.65rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

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

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

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

.mediaPreviewWrap {
  width: 170px;
  height: 95px;
  background: #120206;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 25, 66, 0.25);
  flex-shrink: 0;
}

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

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

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

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

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

.toastSuccess {
  background: linear-gradient(135deg, #800020, #b81942);
  border: 1px solid #b81942;
  box-shadow: 0 8px 24px rgba(184, 25, 66, 0.45);
}

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