* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #000;
  color: #e1bf6e;
  font-family: "Crimson Text", serif;
  overflow-x: hidden;
   cursor: url('https://aenor2-img.b-cdn.net/cursors/normal.cur'), auto;
}

a, button, .feature-item, .class-item, .lang-item, .cta-button, .lang-btn,
.talisman-dot, .wiki-dot, .lonca-panel, .ability-item, .horse-skill, .simya-dot {
    cursor: url('https://aenor2-img.b-cdn.net/cursors/link.cur'), pointer;
}

body.loading {
    cursor: url('https://aenor2-img.b-cdn.net/cursors/buzy.cur'), wait;
}

.disabled, [disabled] {
    cursor: url('https://aenor2-img.b-cdn.net/cursors/not_available.cur'), not-allowed;
}
/* ==========================================
           LANGUAGE DROPDOWN
        ========================================== */
.language-dropdown {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9998;
}
.lang-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(225, 191, 110, 0.5);
  color: #e1bf6e;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.lang-btn:hover {
  border-color: #e1bf6e;
  box-shadow: 0 0 20px rgba(225, 191, 110, 0.3);
  transform: scale(1.05);
}
.lang-menu {
  position: absolute;
  top: 60px;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(225, 191, 110, 0.3);
  border-radius: 15px;
  padding: 10px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.lang-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #deb594;
  font-family: "Crimson Text", serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-item:hover {
  background: rgba(225, 191, 110, 0.1);
  color: #e1bf6e;
}
.lang-item.active {
  color: #e1bf6e;
  background: rgba(225, 191, 110, 0.15);
}
.lang-flag {
  font-size: 18px;
}

.discord-float {
    position: fixed;
    bottom: 20px;
    left: 20px;   /* SOL TARAF */
    right: auto;  /* SAĞI KAPAT */
    z-index: 9999;
}

.discord-float img {
    width: 300px;   /* BURAYI DEĞİŞTİR */
    height: auto;
    transition: transform 0.25s ease;
}

.discord-float:hover img {
    transform: scale(1.1);
}

.social-float {
    position: fixed;
    bottom: 220px;   /* ARTIK ÇALIŞIR */
    left: 20px;
    display: flex;
    gap: 12px;
    z-index: 9999;
}

.instagram-float img {
    width: 300px;
    height: auto;        /* ORANI KORUR */
    max-width: none;     /* FLEX KISITINI KALDIRIR */
    object-fit: contain; /* GÜVENLİ */
}

.instagram-float img {
    width: 300px;   /* Discord ile aynı olsun */
    height: auto;
    transition: transform 0.25s ease;
}

.instagram-float:hover img {
    transform: scale(1.1);
}


/* ==========================================
           SIDE NAVIGATION
        ========================================== */
.side-navigation {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  transition: all 0.4s ease;
}

.side-navigation.collapsed .nav-content {
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
}

.nav-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #8d0004 0%, #5a0003 100%);
  border: 2px solid #e1bf6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(141, 0, 4, 0.6);
  z-index: 10;
}

.nav-toggle:hover {
  border-color: #eaa738;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(234, 167, 56, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.nav-toggle-icon {
  color: #e1bf6e;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.side-navigation.collapsed .nav-toggle-icon {
  transform: rotate(180deg);
}

.nav-content {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 21, 16, 0.95) 100%);
  border: 2px solid rgba(225, 191, 110, 0.5);
  border-radius: 8px;
  padding: 20px;
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(225, 191, 110, 0.2),
    0 0 30px rgba(141, 0, 4, 0.4);
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}

.nav-content::-webkit-scrollbar {
  width: 6px;
}

.nav-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

.nav-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e1bf6e 0%, #914914 100%);
  border-radius: 3px;
}

.nav-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #eaa738 0%, #e1bf6e 100%);
}

.nav-title {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e1bf6e;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 0 10px rgba(225, 191, 110, 0.4);
  border-bottom: 1px solid rgba(225, 191, 110, 0.3);
  padding-bottom: 10px;
}

.nav-search {
  position: relative;
  margin-bottom: 15px;
}

.nav-search-input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-family: "Crimson Text", serif;
  font-size: 0.95rem;
  color: #deb594;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(225, 191, 110, 0.3);
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.nav-search-input::placeholder {
  color: rgba(222, 181, 148, 0.5);
}

.nav-search-input:focus {
  border-color: #e1bf6e;
  box-shadow: 0 0 10px rgba(225, 191, 110, 0.2);
}

.nav-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.6;
  pointer-events: none;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin-bottom: 8px;
}

.nav-link {
  display: block;
  font-family: "Crimson Text", serif;
  font-size: 0.95rem;
  color: #deb594;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e1bf6e 0%, #914914 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #e1bf6e;
  background: rgba(225, 191, 110, 0.1);
  padding-left: 16px;
  text-shadow: 0 0 8px rgba(225, 191, 110, 0.4);
}

.nav-link:hover::before {
  transform: scaleY(1);
}

.nav-link.active {
  color: #eaa738;
  background: rgba(234, 167, 56, 0.15);
  border-left-color: #eaa738;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(234, 167, 56, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .side-navigation {
    right: 10px;
  }
  
  .nav-content {
    right: 55px;
    min-width: 180px;
    max-height: 60vh;
  }
  
  .nav-title {
    font-size: 1rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

/* Hide on very small screens or when needed */
@media (max-width: 480px) {
  .side-navigation {
    display: none;
  }
}

/* ==========================================
           GLOBAL STYLES
        ========================================== */
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #e1bf6e;
  text-shadow: 0 0 20px rgba(225, 191, 110, 0.5),
    0 0 40px rgba(225, 191, 110, 0.3);
  margin-bottom: 30px;
  text-align: center;
}
.section-subtitle {
  font-family: "Cinzel", serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #914914;
  margin-bottom: 15px;
  text-align: center;
}
.gold-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e1bf6e, transparent);
  margin: 30px auto;
}
.separator-image {
  display: block;
  margin: 30px auto;
  max-width: 300px;
  height: auto;
  opacity: 0.8;
}
.date-separator-img {
  display: block;
  margin: 15px auto 0;
  max-width: 150px;
  height: auto;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
.content-text {
  max-width: 800px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.9;
  color: #deb594;
  text-align: center;
  margin: 0 auto;
}

#section-15 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}

#section-41 .screenshot-text {
  transform: translateX(-250px) scale(1.10) !important;
  transform-origin: center center;
}


#section-15 .screenshot-text {
  transform: translateX(-250px) scale(1.10) !important;
  transform-origin: center center;
}


#section-41 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}


#section-40 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}


#section-12 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}



#section-14 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}


#section-29 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}

#section-17 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}


#section-22 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}

#section-38 .screenshot-image {
  transform: translateX(-150px) scale(1.45) !important;
  transform-origin: center center;
}

/* ==========================================
           HERO SECTION WITH VIDEO
        ========================================== */
.hero-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section {
  position: relative;
  height: 300vh;
  z-index: 2;
}
.hero-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.logo-container {
  opacity: 0;
  transform: scale(0.8);
}
.logo-container img {
  max-width: 600px;
  width: 80vw;
  filter: drop-shadow(0 0 30px rgba(225, 191, 110, 0.5));
}
.scroll-indicator {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: scrollPulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
  }
}
.scroll-text {
  font-family: "Cinzel", serif;
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #e1bf6e;
  text-shadow: 0 0 20px rgba(225, 191, 110, 0.8),
               0 0 40px rgba(225, 191, 110, 0.5);
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid #e1bf6e;
  border-bottom: 3px solid #e1bf6e;
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
  box-shadow: 0 0 20px rgba(225, 191, 110, 0.6);
}
@keyframes scrollBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(10px);
  }
  60% {
    transform: rotate(45deg) translateY(5px);
  }
}
.particles-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(225, 191, 110, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(141, 0, 4, 0.05) 0%,
      transparent 50%
    );
}
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.9);
}

/* ==========================================
           CONTENT SECTIONS BASE
        ========================================== */
.content-section {
  position: relative;
  min-height: 100vh;
  z-index: 100;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.section-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 70%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 15%,
      transparent 85%,
      rgba(0, 0, 0, 0.4) 100%
    );
}
.section-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

/* Section Edge Fade - üst ve alt kenarları siyaha geçiş */
.section-edge-fade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.section-edge-fade::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Sadece alt kenar fade - intro section için */
.section-edge-fade-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.section-giris {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.95) 5%,
    #000 10%
  );
}

/* ==========================================
           DATE & COUNTDOWN
        ========================================== */
.date-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.date-box {
  padding: 35px 50px;
  text-align: center;
  position: relative;
  overflow: visible;
  min-width: 180px;
}
.date-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}
.date-box::before {
  display: none;
}
.date-box:hover::before {
  display: none;
}
.date-number {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #e1bf6e;
  line-height: 1;
  text-shadow: 0 0 30px rgba(225, 191, 110, 0.5),
               inset 0 0 10px rgba(255, 255, 255, 0.3),
               0 2px 4px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
.date-label {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #deb594;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.date-separator {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: #914914;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 4vw, 40px);
  flex-wrap: wrap;
  margin-top: 50px;
}
.countdown-item {
  text-align: center;
  min-width: 80px;
}
.countdown-value {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #e1bf6e;
  text-shadow: 0 0 20px rgba(225, 191, 110, 0.4);
}
.countdown-unit {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #deb594;
  margin-top: 5px;
}
.countdown-colon {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #914914;
  animation: colonPulse 1s infinite;
}
@keyframes colonPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ==========================================
           FEATURES GRID
        ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
}
.feature-item {
  padding: 18px 25px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #deb594;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.feature-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}
.feature-item span {
  position: relative;
  z-index: 1;
}
.feature-item:hover {
  transform: translateY(-3px);
}
.feature-item::before {
  display: none;
}
.feature-item:hover::before {
  display: none;
}

/* ==========================================
           LANGUAGES
        ========================================== */
.languages-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.language-item {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: #e1bf6e;
  letter-spacing: 3px;
}

/* ==========================================
           CHARACTER CLASSES
        ========================================== */
.classes-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
}
@media (max-width: 1000px) {
  .classes-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .classes-showcase {
    grid-template-columns: 1fr;
  }
}
.class-item {
  text-align: center;
  transition: all 0.4s ease;
}
.class-item:hover {
  transform: translateY(-10px);
}
.class-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
}
.class-char {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: all 0.5s ease;
}
.class-item:hover .class-char {
  transform: scale(1.05);
}
.class-name {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e1bf6e;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(225, 191, 110, 0.4);
}
.class-desc {
  font-size: 1rem;
  color: #deb594;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* ==========================================
           MULTI FARM SECTION
        ========================================== */
.multifarm-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.multifarm-box {
  position: relative;
  width: 220px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multifarm-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

.multifarm-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.multifarm-number {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #e1bf6e;
  text-shadow: 0 0 20px rgba(225, 191, 110, 0.5);
  margin-bottom: 15px;
}

.multifarm-number.red {
  color: #ff4444;
  text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.multifarm-label {
  font-size: 1rem;
  color: #deb594;
  letter-spacing: 1px;
}

.multifarm-operator {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #914914;
  text-shadow: 0 0 15px rgba(145, 73, 20, 0.6);
}

/* ==========================================
           SCREENSHOT SECTIONS
        ========================================== */
.screenshot-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .screenshot-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.screenshot-text {
  text-align: left;
}
.screenshot-text h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #e1bf6e;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(225, 191, 110, 0.4);
}
.screenshot-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #deb594;
}
.screenshot-image {
  position: relative;
  padding: 0;
}

.screenshot-image img {
  width: 100%;
  border: 3px solid #1a1510;
  box-shadow: 
    inset 0 0 40px rgba(0, 0, 0, 0.9),
    0 0 0 1px #8d0004,
    0 0 0 2px #e1bf6e,
    0 0 0 3px #8d0004,
    0 20px 60px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(141, 0, 4, 0.4);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  display: block;
}

.screenshot-image:hover img {
  box-shadow: 
    inset 0 0 40px rgba(0, 0, 0, 0.9),
    0 0 0 1px #8d0004,
    0 0 0 2px #eaa738,
    0 0 0 3px #8d0004,
    0 25px 70px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(234, 167, 56, 0.6);
  transform: scale(1.01);
}

/* ==========================================
   UNIVERSAL CORNER FRAMES - Tüm görseller için
   ========================================== */
.corner-tl {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 80px;
  height: 80px;
  background-image: url('https://aenor2-img.b-cdn.net/decorative/frame-big/top-left.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 0 10px rgba(225, 191, 110, 0.4));
  transition: all 0.4s ease;
}

.corner-tr {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  background-image: url('https://aenor2-img.b-cdn.net/decorative/frame-big/top-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 0 10px rgba(225, 191, 110, 0.4));
  transition: all 0.4s ease;
}

.corner-bl {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 80px;
  height: 80px;
  background-image: url('https://aenor2-img.b-cdn.net/decorative/frame-big/bot-left.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 0 10px rgba(225, 191, 110, 0.4));
  transition: all 0.4s ease;
}

.corner-br {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  background-image: url('https://aenor2-img.b-cdn.net/decorative/frame-big/bot-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 0 10px rgba(225, 191, 110, 0.4));
  transition: all 0.4s ease;
}

/* Hover efekti - parent hover olunca köşeler parlar */
.screenshot-image:hover .corner-tl,
.screenshot-image:hover .corner-tr,
.screenshot-image:hover .corner-bl,
.screenshot-image:hover .corner-br,
.wiki-panel-image:hover .corner-tl,
.wiki-panel-image:hover .corner-tr,
.wiki-panel-image:hover .corner-bl,
.wiki-panel-image:hover .corner-br {
  filter: drop-shadow(0 0 20px rgba(234, 167, 56, 0.8));
  transform: scale(1.05);
}
.screenshot-section.reverse {
  direction: rtl;
}
.screenshot-section.reverse > * {
  direction: ltr;
}

/* ==========================================
           RUNES GRID (SİMYA TAŞLARI)
        ========================================== */
.rune-stones-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 20px;
}

.rune-stones-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  transition: all 0.3s ease;
}

.rune-stones-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(225, 191, 110, 0.3));
  transition: all 0.3s ease;
}

.rune-stones-screenshot {
  position: relative;
  width: 90%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  border-radius: 8px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
  transition: all 0.3s ease;
}

.rune-stones-item:hover {
  transform: translateY(-5px);
}

.rune-stones-item:hover .rune-stones-frame {
  filter: drop-shadow(0 0 20px rgba(225, 191, 110, 0.6));
  transform: scale(1.05);
}

.rune-stones-item:hover .rune-stones-screenshot {
  transform: scale(1.02);
  filter: drop-shadow(0 6px 15px rgba(225, 191, 110, 0.4));
}

@media (max-width: 768px) {
  .rune-stones-item {
    max-width: 100%;
  }
}

.rolik-rune-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  aspect-ratio: 1;
  transition: all 0.3s ease;
} 

.rolik-rune-frame {
  position: absolute;
  width: 60%;
  height: 60%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(225, 191, 110, 0.3));
  transition: all 0.3s ease;
}

.rolik-rune-icon {
  position: relative;
  width: 65%;
  height: 65%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
  transition: all 0.3s ease;
}


.rune-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  transition: all 0.3s ease;
}

.rune-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(225, 191, 110, 0.3));
  transition: all 0.3s ease;
}

.rune-icon {
  position: relative;
  width: 65%;
  height: 65%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
  transition: all 0.3s ease;
}

.rune-item:hover {
  transform: translateY(-5px);
}

.rune-item:hover .rune-frame {
  filter: drop-shadow(0 0 20px rgba(225, 191, 110, 0.6));
  transform: scale(1.05);
}

.rune-item:hover .rune-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 15px rgba(225, 191, 110, 0.4));
}

/* ==========================================
           WIKIPEDIA HORIZONTAL SCROLL
        ========================================== */
.wiki-horizontal-wrapper {
  position: relative;
  overflow: hidden;
  background: #000;
}
.wiki-horizontal-container {
  display: flex;
  width: 300vw;
}
.wiki-panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
}
.wiki-panel-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  width: 100%;
}
@media (max-width: 900px) {
  .wiki-panel-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.wiki-panel-text h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #e1bf6e;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(225, 191, 110, 0.5);
}
.wiki-panel-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #deb594;
}
.wiki-panel-image {
  position: relative;
  padding: 0;
}
.wiki-panel-image img {
  width: 100%;
  border: 2px solid rgba(225, 191, 110, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.wiki-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.wiki-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(225, 191, 110, 0.3);
  border: 1px solid rgba(225, 191, 110, 0.5);
  transition: all 0.3s ease;
}
.wiki-dot.active {
  background: #e1bf6e;
  box-shadow: 0 0 15px rgba(225, 191, 110, 0.8);
}

/* ==========================================
           ZINDAN ADALARI CAROUSEL
        ========================================== */
.zindan-carousel-section {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  overflow: hidden;
}

.zindan-carousel-container {
  width: 100%;
  max-width: 100%;
}

.zindan-carousel-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 40px;
}

.zindan-carousel-header .section-title {
  font-size: 2.5rem;
  text-shadow: 0 0 30px rgba(225, 191, 110, 0.5);
}

.zindan-carousel-header .gold-line {
  margin: 15px auto;
}

.zindan-description {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #deb594;
  text-align: center;
}

/* Carousel Container */
.zindan-carousel {
  position: relative;
  width: 100%;
}

/* Viewport - visible area */
.zindan-carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Track - holds all slides */
.zindan-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Slide */
.zindan-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.zindan-carousel-slide video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.zindan-carousel-slide.active video {
  /* Active state için ek stil gerekirse */
}

.zindan-slide-name {
  text-align: center;
  margin-top: 20px;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e1bf6e;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(225, 191, 110, 0.5);
}

/* Navigation Arrows */
.zindan-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(225, 191, 110, 0.4);
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.zindan-carousel-arrow svg {
  width: 32px;
  height: 32px;
  color: #e1bf6e;
  transition: all 0.3s ease;
}

.zindan-carousel-arrow:hover {
  background: rgba(141, 0, 4, 0.9);
  border-color: #e1bf6e;
  box-shadow: 0 0 40px rgba(225, 191, 110, 0.6);
  transform: translateY(-50%) scale(1.15);
}

.zindan-carousel-arrow:hover svg {
  color: #fcfeb2;
}

.zindan-carousel-prev {
  left: 30px;
}

.zindan-carousel-next {
  right: 30px;
}

/* Dots Navigation */
.zindan-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.zindan-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(225, 191, 110, 0.3);
  border: 1px solid rgba(225, 191, 110, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.zindan-carousel-dot:hover {
  background: rgba(225, 191, 110, 0.5);
  transform: scale(1.2);
}

.zindan-carousel-dot.active {
  background: #e1bf6e;
  box-shadow: 0 0 15px rgba(225, 191, 110, 0.8);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .zindan-carousel-arrow {
    width: 60px;
    height: 60px;
  }

  .zindan-carousel-arrow svg {
    width: 28px;
    height: 28px;
  }

  .zindan-carousel-prev {
    left: 20px;
  }

  .zindan-carousel-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .zindan-carousel-section {
    padding: 40px 0;
  }

  .zindan-carousel-header .section-title {
    font-size: 1.8rem;
  }

  .zindan-carousel-arrow {
    width: 50px;
    height: 50px;
  }

  .zindan-carousel-arrow svg {
    width: 24px;
    height: 24px;
  }

  .zindan-carousel-prev {
    left: 10px;
  }

  .zindan-carousel-next {
    right: 10px;
  }

  .zindan-slide-name {
    font-size: 1.1rem;
  }

  .zindan-carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* ==========================================
           ABILITIES GRID
        ========================================== */
.abilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

@media (max-width: 900px) {
  .abilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ability-item {
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.ability-item:hover {
  transform: translateY(-10px);
}

.ability-box {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.ability-item:hover .ability-box {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.ability-name {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: #e1bf6e;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================
           TALISMAN HORIZONTAL SHOWCASE
        ========================================== */
.talisman-horizontal-wrapper {
  position: relative;
  overflow: hidden;
  background: #000;
}
.talisman-horizontal-container {
  display: flex;
  width: 600vw;
}
.talisman-panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
}

.talisman-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.talisman-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.talisman-panel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
.talisman-panel-content {
  position: relative;
    z-index: 1;
  text-align: center;
  max-width: 800px;
}
.talisman-image-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.talisman-image-showcase::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 30%, transparent 70%);
  border-radius: 50%;
  animation: talismanGlow 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes talismanGlow {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.talisman-image-showcase img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 50px var(--glow-color, rgba(225, 191, 110, 0.5)));
    mask-image: radial-gradient(ellipse 70% 70% at center, black 50%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 50%, transparent 100%);
    transition: all 0.4s ease;
}
.talisman-panel:hover .talisman-image-showcase img {
  transform: scale(1.1);
}
.talisman-panel.fire {
  --glow-color: rgba(255, 100, 0, 0.6);
}
.talisman-panel.ice {
  --glow-color: rgba(0, 200, 255, 0.6);
}
.talisman-panel.earth {
  --glow-color: rgba(139, 90, 43, 0.6);
}
.talisman-panel.wind {
  --glow-color: rgba(200, 255, 200, 0.6);
}
.talisman-panel.lightning {
  --glow-color: rgba(255, 255, 0, 0.6);
}
.talisman-panel.dark {
  --glow-color: rgba(128, 0, 128, 0.6);
}
.talisman-name {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #e1bf6e;
  letter-spacing: 6px;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(225, 191, 110, 0.5);
}
.talisman-desc {
  font-size: 1.2rem;
  color: #deb594;
  line-height: 1.8;
}
.talisman-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.talisman-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(225, 191, 110, 0.3);
  border: 1px solid rgba(225, 191, 110, 0.5);
  transition: all 0.3s ease;
}
.talisman-dot.active {
  background: #e1bf6e;
  box-shadow: 0 0 15px rgba(225, 191, 110, 0.8);
}
@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

/* ==========================================
           SIMYA HORIZONTAL SHOWCASE
        ========================================== */
.simya-horizontal-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.simya-horizontal-container {
    display: flex;
    width: 800vw;
}

.simya-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
}

.simya-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.simya-panel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.simya-panel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 60%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.simya-panel-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.simya-image-showcase {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simya-image-showcase img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--glow-color));
    transition: all 0.4s ease;
}

.simya-image-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    animation: simyaGlow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes simyaGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.simya-panel:hover .simya-image-showcase img {
    transform: scale(1.1);
}

.simya-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #E1BF6E;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(225, 191, 110, 0.5);
}

.simya-bonus {
    font-size: 1.2rem;
    color: #FCFEB2;
    margin-bottom: 25px;
    font-weight: 600;
}

.simya-bonuses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.simya-bonus-item {
    background: rgba(225, 191, 110, 0.1);
    border: 1px solid rgba(225, 191, 110, 0.3);
    padding: 12px 24px;
    font-size: 0.95rem;
    color: #DEB594;
    transition: all 0.3s ease;
}

.simya-bonus-item:hover {
    border-color: #E1BF6E;
    background: rgba(225, 191, 110, 0.2);
}

/* Simya Renkleri */
.simya-panel.onyx { --glow-color: rgba(80, 80, 80, 0.7); }
.simya-panel.diamond { --glow-color: rgba(220, 240, 255, 0.7); }
.simya-panel.ruby { --glow-color: rgba(255, 50, 50, 0.7); }
.simya-panel.jade { --glow-color: rgba(50, 200, 50, 0.7); }
.simya-panel.sapphire { --glow-color: rgba(50, 100, 255, 0.7); }
.simya-panel.garnet { --glow-color: rgba(255, 150, 50, 0.7); }
.simya-panel.amethyst { --glow-color: rgba(180, 50, 255, 0.7); }
.simya-panel.citrine { --glow-color: rgba(255, 220, 50, 0.7); }

.simya-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.simya-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(225, 191, 110, 0.3);
    border: 1px solid rgba(225, 191, 110, 0.5);
    transition: all 0.3s ease;
}

.simya-dot.active {
    background: #E1BF6E;
    box-shadow: 0 0 15px rgba(225, 191, 110, 0.8);
}

/* ==========================================
           LONCA GRID
        ========================================== */
.lonca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto;
}
.lonca-panel {
  position: relative;
  padding: 30px;
  transition: all 0.3s ease;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lonca-panel:hover {
  transform: translateY(-5px);
}
.lonca-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}
.lonca-content {
  position: relative;
  z-index: 1;
}
.lonca-panel h4 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: #e1bf6e;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lonca-panel p {
  font-size: 0.95rem;
  color: #deb594;
  line-height: 1.7;
}

/* ==========================================
           HORSE SKILLS
        ========================================== */
.horse-skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 40px auto;
}
.horse-skill {
  position: relative;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.horse-skill:hover {
  transform: translateY(-5px);
}
.horse-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}
.horse-content {
  position: relative;
  z-index: 1;
}
.horse-skill-num {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: #e1bf6e;
  margin-bottom: 5px;
}
.horse-skill-name {
  font-size: 0.8rem;
  color: #deb594;
  letter-spacing: 1px;
}

/* ==========================================
           FINAL CTA
        ========================================== */
.final-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.final-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #e1bf6e;
  text-shadow: 0 0 40px rgba(225, 191, 110, 0.6);
  margin-bottom: 30px;
}
.final-text {
  max-width: 800px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 2;
  color: #deb594;
  margin-bottom: 50px;
  text-align: center;
  justify-self: center;
}
.cta-button {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #e1bf6e 0%, #fcfeb2 50%, #e1bf6e 100%);
  padding: 20px 60px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: block;
  margin: 20px auto 0;
}
.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(225, 191, 110, 0.5);
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}
.cta-button:hover::before {
  left: 100%;
}

/* ==========================================
           LOADING & PARTICLES
        ========================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.loading-text {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #e1bf6e;
}
.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(225, 191, 110, 0.2);
  position: relative;
  overflow: hidden;
}
.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #e1bf6e;
  animation: loading 2s ease-in-out forwards;
}
@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e1bf6e;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 10s infinite;
}
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

/* ==========================================
           DECORATIVE & ANIMATIONS
        ========================================== */
.decor-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.decor-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e1bf6e);
}
.decor-line.right {
  background: linear-gradient(90deg, #e1bf6e, transparent);
}
.decor-diamond {
  width: 10px;
  height: 10px;
  background: #e1bf6e;
  transform: rotate(45deg);
  box-shadow: 0 0 15px rgba(225, 191, 110, 0.8);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}
.slide-right {
  opacity: 0;
  transform: translateX(50px);
}
.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

/* ==========================================
           CURSOR GLOW
        ========================================== */
.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(225, 191, 110, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-glow.active {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(225, 191, 110, 0.8) 0%, transparent 70%);
}

/* ==========================================
   IMAGE SLIDER (for multiple screenshots)
========================================== */
.image-slider {
    position: relative;
    width: 100%;
}

.img-slider-images {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-slider .img-slider-img {
    width: 100%;
    height: auto;
    display: none !important;
    border: 3px solid #1a1510;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        0 0 0 1px #8d0004,
        0 0 0 2px #e1bf6e,
        0 0 0 3px #8d0004,
        0 20px 60px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(141, 0, 4, 0.4);
}

.image-slider .img-slider-img.active {
    display: block !important;
}

.img-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(225, 191, 110, 0.5);
    color: #e1bf6e;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-slider-nav:hover {
    background: rgba(225, 191, 110, 0.3);
    border-color: #e1bf6e;
    box-shadow: 0 0 15px rgba(225, 191, 110, 0.5);
}

.img-slider-prev {
    left: 10px;
}

.img-slider-next {
    right: 10px;
}

.img-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.img-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(225, 191, 110, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.img-slider-dot:hover {
    background: rgba(225, 191, 110, 0.5);
}

.img-slider-dot.active {
    background: #e1bf6e;
    border-color: #e1bf6e;
    box-shadow: 0 0 10px rgba(225, 191, 110, 0.8);
}

@media (max-width: 768px) {
    .img-slider-nav {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .img-slider-prev {
        left: 5px;
    }

    .img-slider-next {
        right: 5px;
    }

    .img-slider-dots {
        bottom: 10px;
    }

    .img-slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Video Player Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid #1a1510;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        0 0 0 1px #8d0004,
        0 0 0 2px #e1bf6e,
        0 0 0 3px #8d0004,
        0 20px 60px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(141, 0, 4, 0.4);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-container .corner-tl,
.video-container .corner-tr,
.video-container .corner-bl,
.video-container .corner-br {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.video-container .corner-tl {
    top: -2px;
    left: -2px;
    border-top: 3px solid #e1bf6e;
    border-left: 3px solid #e1bf6e;
}

.video-container .corner-tr {
    top: -2px;
    right: -2px;
    border-top: 3px solid #e1bf6e;
    border-right: 3px solid #e1bf6e;
}

.video-container .corner-bl {
    bottom: -2px;
    left: -2px;
    border-bottom: 3px solid #e1bf6e;
    border-left: 3px solid #e1bf6e;
}

.video-container .corner-br {
    bottom: -2px;
    right: -2px;
    border-bottom: 3px solid #e1bf6e;
    border-right: 3px solid #e1bf6e;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 20px auto 0;
    }
}

/* ==========================================
           PARTNER KADROSU
        ========================================== */
.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(225, 191, 110, 0.5);
    box-shadow: 0 0 20px rgba(225, 191, 110, 0.3);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    border-color: #e1bf6e;
    box-shadow: 0 0 30px rgba(225, 191, 110, 0.5);
}

.partner-name {
    margin-top: 12px;
    font-family: "Cinzel", serif;
    font-size: 14px;
    color: #e1bf6e;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .partners-list {
        gap: 20px;
    }

    .partner-item img {
        width: 80px;
        height: 80px;
    }

    .partner-name {
        font-size: 12px;
    }
}