@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --font-title: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-kaan: 'Cinzel', serif;

  /* Color Palette */
  --bg-dark: #000000;
  --bg-deep: #050505;
  --bg-card: rgba(15, 15, 15, 0.75);
  --bg-glass: rgba(8, 8, 8, 0.85);
  --text-primary: #ffffff;
  --text-secondary: #c0c0c0;
  
  /* Gold Accents */
  --gold-primary: #bf953f;
  --gold-light: #fcf6ba;
  --gold-dark: #aa771c;
  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gold-glow: 0 0 15px rgba(191, 149, 63, 0.4);
  --gold-glow-large: 0 0 35px rgba(191, 149, 63, 0.75);
  --border-gold: rgba(191, 149, 63, 0.25);
  --border-gold-hover: rgba(191, 149, 63, 0.6);

  /* Silver/Platinum Accents */
  --silver-primary: #e5e5e5;
  --silver-light: #ffffff;
  --silver-dark: #b0b0b0;
  --silver-gradient: linear-gradient(135deg, #b0b0b0 0%, #ffffff 50%, #b0b0b0 100%);
  --border-silver: rgba(255, 255, 255, 0.08);
  --border-silver-hover: rgba(255, 255, 255, 0.25);

  /* Utilities */
  --glass-blur: blur(12px);
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.25s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Hide default cursor for custom cursor follower */
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Enable normal scroll when loader finishes */
body.loaded {
  overflow-y: auto;
}

body.loader-active {
  overflow: hidden;
}

/* ==========================================
   CUSTOM SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gold-gradient);
  z-index: 10000;
  box-shadow: var(--gold-glow);
}

/* ==========================================
   CUSTOM CURSOR FOLLOWER
   ========================================== */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--gold-light);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999 !important;
  mix-blend-mode: difference;
  transition: width 0.1s, height 0.1s, background-color 0.1s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999998 !important;
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
  box-shadow: var(--gold-glow);
}

/* Hover States for Cursor */
.hovered-link .custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--gold-primary);
  mix-blend-mode: normal;
}

.hovered-link .custom-cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--gold-light);
  background-color: rgba(191, 149, 63, 0.1);
  box-shadow: var(--gold-glow-large);
}

/* ==========================================
   ŞİFRE GİRİŞ EKRANI (PASSWORD GATE)
   ========================================== */
#password-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #100d08 0%, #000000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

#password-gate.fade-out {
  opacity: 0;
  pointer-events: none;
}

.gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--gold-glow-large), 0 10px 40px rgba(0, 0, 0, 0.8);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gate-card.shake {
  animation: gateShake 0.5s ease-in-out;
  border-color: #ff3333;
}

@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}

.gate-logo {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--gold-glow);
  margin-bottom: 10px;
}

.gate-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.8;
}

.password-input-wrapper {
  position: relative;
  margin-bottom: 30px;
}

#gate-password {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 5px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-align: center;
  outline: none;
  transition: var(--transition-fast);
}

#gate-password::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#gate-password:focus ~ .input-line {
  width: 100%;
}

#gate-password:focus {
  border-bottom-color: transparent;
}

.gate-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 12px 35px;
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: var(--gold-glow);
  width: 100%;
}

.gate-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  box-shadow: var(--gold-glow-large);
  border-color: transparent;
  transform: translateY(-2px);
}

.gate-error-message {
  height: 20px;
  color: #ff4d4d;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.gate-error-message.show {
  opacity: 1;
}

/* ==========================================
   LOADING EKRANI (PRELOADER)
   ========================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

#preloader-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.loader-logo {
  font-family: var(--font-title);
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: 0.8rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseLogo 2.5s infinite ease-in-out;
  text-shadow: var(--gold-glow);
  position: relative;
  display: inline-block;
}

.loader-logo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: center;
  animation: logoLine 2.5s infinite ease-in-out;
}

.loader-status {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
  animation: fadeInStatus 1.5s forwards 0.5s;
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 10px rgba(191, 149, 63, 0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(191, 149, 63, 0.8));
  }
  100% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 10px rgba(191, 149, 63, 0.3));
  }
}

@keyframes logoLine {
  0% { transform: scaleX(0); opacity: 0.2; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0.2; }
}

@keyframes fadeInStatus {
  to { opacity: 0.7; }
}

/* ==========================================
   PARTICLE CANVAS (BACKGROUND)
   ========================================== */
#bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #0c0a05 0%, #000000 100%);
}

/* ==========================================
   NAVIGATION (MENU)
   ========================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(191, 149, 63, 0);
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.nav-logo:hover {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(191, 149, 63, 0.4));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  transform: scaleX(1);
  background: var(--gold-gradient);
}

.nav-cta-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
  margin-left: 20px;
  display: inline-block;
  box-shadow: var(--gold-glow);
}

.nav-cta-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  box-shadow: var(--gold-glow-large);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-fast);
}

/* ==========================================
   HERO AREA (GİRİŞ)
   ========================================== */
#home {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 4s ease-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay dark glass filter on hero background */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 90%), 
              radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.hero-welcome {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.6rem;
  color: var(--silver-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s forwards 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 6.5rem;
  font-weight: 900;
  letter-spacing: 1.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  line-height: 1.1;
  text-shadow: var(--gold-glow);
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s forwards 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.4rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s forwards 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.scroll-down-indicator:hover {
  opacity: 1;
}

.scroll-down-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  color: var(--silver-primary);
  text-transform: uppercase;
}

.scroll-down-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  position: relative;
  box-shadow: var(--gold-glow);
}

.scroll-down-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--gold-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelBounce 1.8s infinite ease-in-out;
}

@keyframes scrollWheelBounce {
  0% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0; }
  100% { top: 8px; opacity: 1; }
}

/* ==========================================
   GLOBAL SECTION SETUPS
   ========================================== */
section {
  padding: 120px 20px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-pretitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gold-gradient);
  box-shadow: var(--gold-glow);
}

/* Scroll reveal class animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   HAKKIMDA BÖLÜMÜ (ABOUT)
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: stretch;
}

.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--gold-glow-large);
  aspect-ratio: 4/5;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.about-image-wrap:hover::before {
  left: 125%;
}

.about-image-wrap:hover {
  border-color: var(--border-gold-hover);
  box-shadow: 0 15px 50px rgba(191, 149, 63, 0.3);
  transform: translateY(-5px);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 50px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(191, 149, 63, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: 0 15px 50px rgba(191, 149, 63, 0.15);
  transform: translateY(-5px);
}

.about-card h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 25px;
  letter-spacing: 0.1rem;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.detail-item {
  border-left: 2px solid var(--gold-primary);
  padding-left: 15px;
}

.detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 5px;
}

.about-stats {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-silver);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  flex: 1;
}

.stat-box:hover {
  border-color: var(--border-silver-hover);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.03);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: var(--gold-glow);
}

.stat-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 500;
}

/* ==========================================
   FOTOĞRAFLAR BÖLÜMÜ (GALLERY)
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-silver);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}

.gallery-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-info {
  padding: 20px 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--gold-glow);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.gallery-category {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 20000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  box-shadow: var(--gold-glow-large);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  font-family: var(--font-title);
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-top: 20px;
  letter-spacing: 0.1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--text-primary);
  font-size: 2rem;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-primary);
  transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid var(--border-silver);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
  backdrop-filter: var(--glass-blur);
}

.lightbox-prev:hover, .lightbox-next:hover {
  border-color: var(--border-gold);
  color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* ==========================================
   TANIŞALIM BÖLÜMÜ (INTRODUCE)
   ========================================== */
.story-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}

.story-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border-gold) 15%, var(--border-gold) 85%, transparent);
}

.story-node {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.story-node:nth-child(even) {
  direction: rtl;
}

.story-node:nth-child(even) .story-card {
  direction: ltr;
}

.story-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--bg-dark);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: var(--gold-glow);
  transition: var(--transition-smooth);
}

.story-node:hover .story-badge {
  background-color: var(--gold-light);
  transform: translateX(-50%) scale(1.3);
  box-shadow: var(--gold-glow-large);
}

.story-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-silver);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition-smooth);
}

.story-node:hover .story-image {
  transform: scale(1.05);
}

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.story-node:hover .story-card {
  border-color: var(--border-gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-5px);
}

.story-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 15px;
}

.story-card h4 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.story-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   PORTAL (REVIEWS - SEVENLER & SEVMEYENLER)
   ========================================== */
.portal-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

.review-system {
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.review-system.lovers {
  border-color: var(--border-gold);
}

.review-system.lovers::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(191, 149, 63, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.review-system.haters::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 229, 229, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Premium Dashboard Header */
.portal-dashboard {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--border-silver);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.review-system.lovers .portal-dashboard {
  border-bottom-color: rgba(191, 149, 63, 0.15);
}

.rating-summary {
  text-align: center;
  border-right: 1px solid var(--border-silver);
  padding-right: 40px;
}

.review-system.lovers .rating-summary {
  border-right-color: rgba(191, 149, 63, 0.15);
}

.big-rating {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.review-system.lovers .big-rating {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--gold-glow);
}

.review-system.haters .big-rating {
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.star-gold {
  color: #ffc107;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.star-silver {
  color: var(--silver-dark);
}

.star-empty {
  color: rgba(255, 255, 255, 0.15);
}

.total-reviews-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* Rating Bar Breakdown */
.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
}

.row-label {
  width: 50px;
  text-align: right;
  color: var(--text-secondary);
  font-weight: 500;
}

.row-bar-wrap {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.row-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-system.lovers .row-bar-fill {
  background: var(--gold-gradient);
  box-shadow: var(--gold-glow);
}

.review-system.haters .row-bar-fill {
  background: var(--silver-gradient);
}

.row-value {
  width: 45px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Action Button */
.write-review-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-primary);
  padding: 15px 30px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.review-system.lovers .write-review-btn:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--bg-dark);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.review-system.haters .write-review-btn {
  border-color: var(--silver-primary);
}

.review-system.haters .write-review-btn:hover {
  background: var(--silver-gradient);
  border-color: transparent;
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Reviews Feed Grid */
.reviews-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-height: 550px;
  overflow-y: auto;
  padding-right: 15px;
}

.reviews-feed::-webkit-scrollbar {
  width: 4px;
}

.reviews-feed::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-silver);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.review-system.lovers .review-card:hover {
  border-color: var(--border-gold);
}

.review-user-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-silver);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
}

.review-system.lovers .user-avatar {
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.user-info-text h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   İLETİŞİM BÖLÜMÜ (CONTACT)
   ========================================== */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.contact-wrap {
  text-align: center;
  max-width: 700px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: var(--gold-glow-large);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.contact-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(191, 149, 63, 0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: rotateGlow 20s linear infinite;
  z-index: 1;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contact-wrap:hover {
  box-shadow: 0 20px 60px rgba(191, 149, 63, 0.25);
  border-color: var(--border-gold-hover);
}

.contact-wrap p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* High-end Glowing Gold CTA Button */
.tanis-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--bg-dark);
  padding: 22px 55px;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.3rem;
  border-radius: 50px;
  box-shadow: var(--gold-glow-large);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 2;
  animation: pulseButton 3s infinite alternate;
}

@keyframes pulseButton {
  0% { box-shadow: 0 0 20px rgba(191, 149, 63, 0.5); }
  100% { box-shadow: 0 0 45px rgba(191, 149, 63, 0.9), 0 0 15px rgba(252, 246, 186, 0.4); }
}

.tanis-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-30deg);
  transition: 0.75s;
  opacity: 0;
}

.tanis-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 55px rgba(191, 149, 63, 0.95);
  filter: brightness(1.1);
  animation-play-state: paused;
}

.tanis-btn:hover::after {
  left: 120%;
  opacity: 1;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 25px;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(15, 15, 15, 0.5);
  transition: var(--transition-smooth);
  box-shadow: var(--gold-glow);
}

.contact-social-link svg {
  transition: fill 0.3s ease;
}

.contact-social-link:hover {
  transform: translateY(-3px);
  color: var(--bg-dark);
  border-color: transparent;
}

.contact-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.5);
}

.contact-social-link.whatsapp:hover {
  background: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.contact-social-link.onlyfans:hover {
  background: #00aff0;
  box-shadow: 0 0 20px rgba(0, 175, 240, 0.5);
}

/* ==========================================
   MODALS (COMMON & SPECIFIC)
   ========================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 19999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-window {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  box-shadow: var(--gold-glow-large);
  border-radius: 20px;
  width: 90%;
  max-width: 550px;
  padding: 50px;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-window::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(191,149,63,0.25)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.modal-window.error-window {
  border-color: #ff3333;
  box-shadow: 0 0 35px rgba(255, 51, 51, 0.35);
}

.modal-window.error-window::after {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,51,51,0.25)) border-box;
}

.error-state {
  text-align: center;
  padding: 20px 0;
}

.error-icon {
  font-size: 4rem;
  color: #ff3333;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
  animation: pulseError 1.5s infinite ease-in-out;
}

@keyframes pulseError {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); filter: brightness(1.2); }
  100% { transform: scale(1); }
}

.error-state h4 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: #ff4444;
  margin-bottom: 15px;
  letter-spacing: 0.15rem;
}

.error-state p {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.error-btn {
  background: linear-gradient(135deg, #ff3333 0%, #aa2222 100%);
  border: none;
  color: white;
  padding: 12px 35px;
  border-radius: 25px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.error-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
  filter: brightness(1.1);
}

.modal-overlay.active .modal-window {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold-primary);
  transform: scale(1.1);
}

.modal-title {
  font-family: var(--font-title);
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-group {
  position: relative;
  margin-bottom: 35px;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-silver);
  padding: 10px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23bf953f' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 15px;
  padding-right: 25px;
}

select.form-input option {
  background-color: #0c0c0c;
  color: var(--text-primary);
  font-family: var(--font-body);
  padding: 10px;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--gold-primary);
}

.form-label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-secondary);
  pointer-events: none;
  transition: var(--transition-fast);
  font-size: 1rem;
  font-weight: 300;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
select.form-input:valid ~ .form-label {
  top: -15px;
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.star-rating-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 30px;
}

.star-rating-select input {
  display: none;
}

.star-rating-select label {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.15);
  transition: var(--transition-fast);
}

.star-rating-select label:hover,
.star-rating-select label:hover ~ label,
.star-rating-select input:checked ~ label {
  color: #ffc107;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

/* Modal Submit Button */
.modal-submit {
  width: 100%;
  background: var(--gold-gradient);
  border: none;
  color: var(--bg-dark);
  padding: 16px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  box-shadow: var(--gold-glow);
  transition: var(--transition-smooth);
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-large);
  filter: brightness(1.1);
}

/* Thank You Message state */
.thankyou-state {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  animation: scaleBounce 0.5s ease-out;
}

.thankyou-state h4 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.thankyou-state p {
  color: var(--text-secondary);
}

@keyframes scaleBounce {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  border-top: 1px solid var(--border-silver);
  background: var(--bg-deep);
  padding: 50px 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-primary);
}

.footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-social-link {
  color: var(--text-secondary);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-silver);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
}

.footer-social-link svg {
  transition: fill 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  color: var(--bg-dark);
}

.footer-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
}

.footer-social-link.whatsapp:hover {
  background: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.footer-social-link.onlyfans:hover {
  background: #00aff0;
  box-shadow: 0 0 15px rgba(0, 175, 240, 0.4);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.05rem;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats {
    flex-direction: row;
  }
  .stat-box {
    flex: 1;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    display: none; /* Can implement mobile navigation overlay */
  }
  
  .portal-dashboard {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .rating-summary {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
  }
  
  .reviews-feed {
    grid-template-columns: 1fr;
  }
  
  .story-node {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .story-node:nth-child(even) {
    direction: ltr;
  }
  
  .story-wrapper::before {
    left: 20px;
  }
  
  .story-badge {
    left: 20px;
  }
  
  .story-image-wrap {
    order: 1;
  }
  
  .story-card {
    order: 2;
  }
  
  .lightbox-prev, .lightbox-next {
    display: none; /* Use swipe or tap on mobile */
  }
}

@media (max-width: 768px) {
  .loader-logo {
    font-size: 4rem;
    letter-spacing: 0.4rem;
  }
  
  .hero-title {
    font-size: 4rem;
    letter-spacing: 0.6rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-direction: column;
  }
  
  .modal-window {
    padding: 30px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  background: #20ba5a;
}

/* Mobile responsive fixes for Nav CTA Button */
@media (max-width: 991px) {
  .nav-cta-btn {
    display: none;
  }
}

/* Custom Font styling for Kaan/Kaancık word */
.font-kaan {
  font-family: var(--font-kaan) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05rem !important;
}

/* Hero Gay Button styling */
.hero-gay-btn {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 14px 32px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
  box-shadow: var(--gold-glow);
}

.hero-gay-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  box-shadow: var(--gold-glow-large);
  border-color: transparent;
  transform: translateY(-3px);
}

/* Fire Blast Button styling */
#fire-blast-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 0 24px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, #222222 0%, #050505 100%);
  border: 2px solid #3a1a0c;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-kaan) !important;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #ff5500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 85, 0, 0.2);
  z-index: 9999;
  outline: none;
  cursor: none; /* Hide default cursor to align with custom cursor */
  transition: var(--transition-smooth);
}

#fire-blast-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(255, 68, 0, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-fast);
}

#fire-blast-btn:hover {
  transform: scale(1.1) translateY(-5px);
  color: #ffaa00;
  border-color: #ff5500;
  box-shadow: 0 8px 30px rgba(255, 85, 0, 0.5), 0 0 20px rgba(255, 170, 0, 0.4);
}

#fire-blast-btn:hover::before {
  opacity: 1;
}

#fire-blast-btn:active {
  transform: scale(0.95);
}

/* Fire particles overlay canvas */
#fire-canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
}

/* ==========================================
   KAAN'I DÖV MİNİ-OYUN STİLLERİ (NEON RETRO GAME THEME)
   ========================================== */

/* Nav Actions Wrapper to fix alignment */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

/* Navbar Button */
.nav-game-btn {
  background: transparent;
  border: 1px solid #ff0055;
  color: #ffb3cc;
  padding: 10px 22px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  margin-left: 0; /* Handled by flex gap */
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
  cursor: none;
}

.nav-game-btn:hover {
  background: #ff0055;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.7);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Mini-game entry styling */

/* Full Screen Game Overlay */
.game-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 100000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-body);
  user-select: none;
  transition: opacity 0.5s ease;
}

#game-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Hide Cyber Grid Background as we want solid white background */
.game-grid-bg {
  display: none;
}

/* Header Scoring Dashboard - merged to background */
.game-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.game-header-left, .game-header-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.game-header-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.game-neon-btn {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #00f3ff;
  color: #00f3ff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
  transition: all 0.25s ease;
  cursor: none;
}

.game-neon-btn:hover {
  background: #00f3ff;
  color: #000;
  box-shadow: 0 0 20px #00f3ff, 0 0 5px rgba(0, 243, 255, 0.5);
  transform: translateY(-2px);
}

.game-neon-btn:active {
  transform: translateY(1px);
}

.game-neon-btn.big {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Neon Text Colors */
.neon-text-blue {
  color: #00f3ff;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.8), 0 0 20px rgba(0, 243, 255, 0.4);
}

.neon-text-red {
  color: #ff0055;
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.8), 0 0 20px rgba(255, 0, 85, 0.4);
}

.neon-text-green {
  color: #39ff14;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.8), 0 0 20px rgba(57, 255, 20, 0.4);
}

.neon-text-gold {
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.4);
}

/* Time & Score Counters - black backdrops to pop neon text */
.game-timer-panel {
  background: #000000;
  border: 2px solid #00f3ff;
  border-radius: 12px;
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 243, 255, 0.25);
}

.timer-label, .score-label {
  font-size: 0.65rem;
  letter-spacing: 0.15rem;
  color: #888;
  margin-bottom: 2px;
  font-weight: 600;
}

#game-timer {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: monospace;
}

.score-box {
  background: #000000;
  border: 2px solid #ff0055;
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.2);
}

.score-box:first-of-type {
  border-color: #ffcc00;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.score-val {
  font-size: 1.4rem;
  font-weight: 800;
}

/* Play Zone & Character Wrapper */
.game-play-area {
  position: relative;
  z-index: 5;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Combos Panel */
.game-combo-container {
  position: absolute;
  top: 20px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: pulseCombo 1s infinite alternate;
}

.combo-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff0055;
  letter-spacing: 0.2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.combo-val {
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
}

@keyframes pulseCombo {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.game-character-wrapper {
  position: relative;
  width: 620px;
  height: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.1s ease;
}

.character-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Enlaged Single Game Character Image sizing and shadow */
.game-character-img {
  max-width: 100%;
  max-height: 680px;
  object-fit: contain;
  transition: transform 0.1s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.22));
}

/* Red-tinted hurt styling for score > 500 */
.game-character-img.injured {
  filter: sepia(0.15) saturate(1.5) hue-rotate(-12deg) drop-shadow(0 15px 30px rgba(255, 0, 0, 0.35));
}

/* Speech Bubble */
.speech-bubble {
  position: absolute;
  top: -40px;
  left: 170px;
  background: #fff;
  border: 3px solid #ff0055;
  border-radius: 16px;
  padding: 10px 16px;
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 8;
  animation: bubblePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.speech-arrow {
  position: absolute;
  bottom: -12px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #ff0055;
}

.speech-arrow::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
}

@keyframes bubblePop {
  0% { transform: scale(0) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Action Controls Panel */
.game-controls {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 30px 40px 40px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.attack-btn {
  background: #000000;
  border: 2px solid #ff0055;
  border-radius: 16px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(255, 0, 85, 0.15), inset 0 0 10px rgba(255, 0, 85, 0.1);
  cursor: none;
}

.attack-btn .attack-icon {
  font-size: 1.8rem;
  transition: transform 0.2s ease;
}

.attack-btn.slap-btn { border-color: #e0a320; box-shadow: 0 4px 10px rgba(224, 163, 32, 0.15); }
.attack-btn.kick-btn { border-color: #00f3ff; box-shadow: 0 4px 10px rgba(0, 243, 255, 0.15); }
.attack-btn.bat-btn { border-color: #d946ef; box-shadow: 0 4px 10px rgba(217, 70, 239, 0.15); }

.attack-btn.slap-btn:hover { background: #e0a320; color: #000; box-shadow: 0 0 25px #e0a320; }
.attack-btn.kick-btn:hover { background: #00f3ff; color: #000; box-shadow: 0 0 25px #00f3ff; }
.attack-btn.bat-btn:hover { background: #d946ef; color: #000; box-shadow: 0 0 25px #d946ef; }

.attack-btn:hover .attack-icon {
  transform: scale(1.2) rotate(-5deg);
}

.attack-btn:active {
  transform: scale(0.95);
}

/* Float Floating score / critical indicator effects */
.float-effect {
  position: absolute;
  font-family: var(--font-body);
  font-weight: 900;
  pointer-events: none;
  z-index: 100;
  animation: floatUpAndFade 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.float-effect.damage {
  font-size: 1.8rem;
  color: #39ff14;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.float-effect.critical {
  font-size: 2.6rem;
  color: #ff0055;
  text-shadow: 0 0 12px #ff0055, 0 2px 5px rgba(0,0,0,0.5);
  font-style: italic;
}

@keyframes floatUpAndFade {
  0% { transform: translate(-50%, -50%) scale(0.5) translateY(0); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1) translateY(-30px); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1) translateY(-70px); opacity: 0; }
}

/* Modals & Overlays (Restart window) */
.game-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease forwards;
}

.game-modal-content {
  background: #000000;
  border: 3px solid #ff0055;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 0, 85, 0.4);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transform: scale(0.85);
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  to { transform: scale(1); }
}

.game-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #ccc;
}

.result-row strong {
  font-size: 1.15rem;
}

.blink {
  animation: simpleBlink 1s infinite alternate;
}

@keyframes simpleBlink {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Physics Actions animations */
.shake-screen {
  animation: screenShakeAnim 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes screenShakeAnim {
  10%, 90% { transform: translate3d(-4px, 2px, 0); }
  20%, 80% { transform: translate3d(6px, -4px, 0); }
  30%, 50%, 70% { transform: translate3d(-8px, 6px, 0); }
  40%, 60% { transform: translate3d(8px, -6px, 0); }
}

/* Wobble Slap */
.character-wobble {
  animation: charWobbleAnim 0.3s ease-in-out;
}

@keyframes charWobbleAnim {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg) scaleX(0.95); }
  75% { transform: rotate(15deg) scaleX(0.95); }
  100% { transform: rotate(0deg); }
}

/* Jump Kick */
.character-jump {
  animation: charJumpAnim 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes charJumpAnim {
  0% { transform: translateY(0) scaleY(1); }
  20% { transform: translateY(15px) scaleY(0.85); }
  50% { transform: translateY(-120px) scaleY(1.05); }
  80% { transform: translateY(5px) scaleY(0.95); }
  100% { transform: translateY(0) scaleY(1); }
}

/* Spin Bat */
.character-spin {
  animation: charSpinAnim 0.5s ease-in-out;
}

@keyframes charSpinAnim {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(0.9) rotate(-180deg); }
  100% { transform: scale(1) rotate(-360deg); }
}

/* Responsive Mobile overrides */
@media (max-width: 768px) {
  .game-header {
    padding: 15px;
  }
  #game-timer {
    font-size: 1.4rem;
  }
  .score-box {
    padding: 6px 10px;
    min-width: 70px;
  }
  .score-val {
    font-size: 1.1rem;
  }
  .game-character-wrapper {
    width: 420px;
    height: 520px;
  }
  .game-character-img {
    max-height: 480px;
  }
  .game-controls {
    padding: 15px;
    gap: 10px;
  }
  .attack-btn {
    padding: 10px 5px;
    font-size: 0.75rem;
    border-radius: 12px;
  }
  .attack-btn .attack-icon {
    font-size: 1.3rem;
  }
  .game-combo-container {
    top: 15px;
    left: 20px;
  }
  .combo-val {
    font-size: 1.8rem;
  }
}


