* {
  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;
}

/* ==========================================
           WEBBROWSER WIDGET
        ========================================== */
.webbrowser-widget {
  display: none !important;
  position: fixed;
  left: 50%;
  top: 50%;
  --browser-x: 0px;
  --browser-y: 34px;
  --browser-scale: 0.68;
  transform: translate3d(calc(-50% + var(--browser-x)), calc(-50% + var(--browser-y)), 0) scale(var(--browser-scale));
  transform-origin: center center;
  z-index: 9996;
  width: min(560px, calc(100vw - 120px));
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.webbrowser-widget.is-interactive {
  pointer-events: auto;
}

.webbrowser-widget-button {
  width: 100%;
  border: 1px solid rgba(225, 191, 110, 0.4);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 14, 11, 0.98), rgba(4, 4, 4, 0.98));
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(141, 0, 4, 0.35);
  backdrop-filter: blur(14px);
  color: #f4e1ab;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.webbrowser-widget-button:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 191, 110, 0.8);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 36px rgba(225, 191, 110, 0.18);
}

.webbrowser-widget-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(225, 191, 110, 0.12);
  background: linear-gradient(180deg, rgba(46, 25, 18, 0.95), rgba(20, 10, 8, 0.95));
}

.webbrowser-widget-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.webbrowser-widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(244, 225, 171, 0.42);
}

.webbrowser-widget-dot:first-child {
  background: #d37b64;
}

.webbrowser-widget-dot:nth-child(2) {
  background: #d6b15b;
}

.webbrowser-widget-dot:nth-child(3) {
  background: #78b56f;
}

.webbrowser-widget-address {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid rgba(225, 191, 110, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(244, 225, 171, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.webbrowser-widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 16px;
}

.webbrowser-widget-frame {
  display: block;
  width: 100%;
  padding: 16px 16px 0;
}

.webbrowser-widget-preview {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at top left, rgba(225, 191, 110, 0.2), transparent 36%),
    linear-gradient(135deg, #150804, #040404 72%);
  pointer-events: none;
}

.webbrowser-widget-preview-shot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  background:
    radial-gradient(circle at center, rgba(141, 0, 4, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(17, 8, 6, 0.32), rgba(0, 0, 0, 0.7));
}

.webbrowser-widget-preview-image {
  display: block;
  width: min(220px, 42%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.54));
}

.webbrowser-widget-preview-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.76));
}

.webbrowser-widget-preview-logo {
  font-family: "Cinzel", serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #f6dca0;
  text-align: left;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.webbrowser-widget-preview-label {
  color: rgba(244, 225, 171, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.webbrowser-widget-footer {
  justify-content: flex-start;
  color: rgba(244, 225, 171, 0.8);
  font-size: 0.92rem;
}

.webbrowser-modal {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.webbrowser-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.webbrowser-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.webbrowser-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(18, 10, 8, 0.98), rgba(0, 0, 0, 0.98));
  box-shadow: none;
}

.webbrowser-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(225, 191, 110, 0.15);
  background: linear-gradient(180deg, rgba(34, 17, 12, 0.95), rgba(14, 7, 5, 0.95));
}

.webbrowser-modal-title-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.webbrowser-modal-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f6d27d;
}

.webbrowser-modal-url {
  color: rgba(244, 225, 171, 0.72);
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.webbrowser-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.webbrowser-modal-link,
.webbrowser-modal-close {
  border: 1px solid rgba(225, 191, 110, 0.32);
  background: rgba(0, 0, 0, 0.35);
  color: #f4e1ab;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.webbrowser-modal-link {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.webbrowser-modal-close {
  width: 42px;
  height: 42px;
  font-size: 1.8rem;
  line-height: 1;
}

.webbrowser-modal-link:hover,
.webbrowser-modal-close:hover {
  border-color: rgba(225, 191, 110, 0.7);
  background: rgba(141, 0, 4, 0.32);
}

.webbrowser-modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.webbrowser-modal-iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #000;
}

.webbrowser-modal-note {
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(225, 191, 110, 0.12);
  color: rgba(244, 225, 171, 0.72);
  font-size: 0.88rem;
}

body.webbrowser-modal-open {
  overflow: hidden;
}

body.webbrowser-modal-open .hero-video-bg,
body.webbrowser-modal-open #hero-canvas,
body.webbrowser-modal-open .particles-overlay,
body.webbrowser-modal-open .vignette,
body.webbrowser-modal-open .cursor-glow {
  opacity: 0;
}

body.webbrowser-modal-open .hero-video-bg,
body.webbrowser-modal-open #hero-canvas,
body.webbrowser-modal-open .particles-overlay,
body.webbrowser-modal-open .vignette {
  pointer-events: none;
}

body.webbrowser-modal-open * {
  animation-play-state: paused !important;
}

/* ==========================================
           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;
  pointer-events: none;
  transform: translate3d(24px, -50%, 0) scale(0.92);
}

.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: translate3d(0, -50%, 0) scale(1);
  transform-origin: right center;
  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:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.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;
  }
}

/* Mobile navigation - hamburger style */
@media (max-width: 480px) {
  .side-navigation {
    right: 20px;
    top: 80px;
    bottom: auto;
    transform: none;
  }

  .nav-toggle {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 45px;
    height: 45px;
  }

  .nav-toggle:hover {
    transform: scale(1.05);
  }

  .side-navigation.collapsed .nav-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.96);
  }

  .side-navigation:not(.collapsed) .nav-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: fixed;
    top: 135px;
    right: 10px;
    left: 10px;
    max-height: 65vh;
    width: auto;
    min-width: auto;
    transform: translateY(0) scale(1);
    transform-origin: top right;
    background: rgba(0, 0, 0, 0.97);
    border-radius: 15px;
    z-index: 9998;
  }

  .nav-content {
    max-height: 65vh;
    overflow-y: auto;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 12px 16px;
  }

  .nav-title {
    font-size: 1.1rem;
    padding: 15px;
  }

  .nav-list {
    padding-bottom: 15px;
  }
}

/* ==========================================
           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;
}

/* Starter items: move all texts up together with equal layout */
#section-6 .section-content {
  /* Baslangic Esyalari manual position */
  left: 0px; /* saga: 40px | sola: -40px */
  top: 0px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  max-width: min(92vw, 620px);
}
#section-6 .content-text {
  margin-top: 14px;
}
#section-6 .section-title,
#section-6 .gold-line,
#section-6 .feature-accordion-toggle,
#section-6 .feature-accordion-content {
  position: relative;
  left: 0;
  right: 0;
}
#section-6 .gold-line {
  margin-bottom: 6px;
}
#section-6 .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

#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-15 .screenshot-text {
  /* Savas Bileti manual position */
  left: 0px; /* saga: 40px | sola: -40px */
  top: 0px; /* asagi: 40px | yukari: -40px */
  width: 420px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
}
#section-15 .screenshot-text h3,
#section-15 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}


#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-12 .screenshot-text {
  /* Mucadele Sistemi manual position */
  left: -1000px; /* saga: 40px | sola: -40px */
  top: -200px; /* asagi: 40px | yukari: -40px */
  width: 420px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}

#section-12 .screenshot-text h3,
#section-12 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-14 .screenshot-text {
  /* Siralama manual position */
  left: 200px; /* saga: 40px | sola: -40px */
  top: -250px; /* asagi: 40px | yukari: -40px */
  width: 420px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}

#section-14 .screenshot-text h3,
#section-14 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}



#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-17 .screenshot-text {
  /* Efsun Botu manual position */
  left: -100px; /* saga: 40px | sola: -40px */
  top: -300px; /* asagi: 40px | yukari: -40px */
  width: 420px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}

#section-17 .screenshot-text h3,
#section-17 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-18 .section-content {
  /* Dunya Patronu manual position */
  left: 0px; /* saga: 40px | sola: -40px */
  top: -150px; /* asagi: 40px | yukari: -40px */
  width: 420px; /* cerceve genisligi */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 4px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
}

#section-18 .section-title,
#section-18 .gold-line,
#section-18 .feature-accordion-toggle,
#section-18 .feature-accordion-content {
  position: relative;
  left: 0;
  right: 0;
}

#section-18 .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
  line-height: 1.05;
}

#section-18 .gold-line {
  margin: 4px 0 6px;
}

#section-18 .feature-accordion-toggle {
  margin-top: 2px;
}

#section-18 .feature-accordion-content {
  width: 100%;
}

#section-19 .screenshot-text {
  /* Etkinlik Takvimi manual position */
  left: 0px; /* saga: 40px | sola: -40px */
  top: -300px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 8px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}

#section-19 .section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 8px;
  line-height: 1.05;
}

#section-19 .feature-accordion-toggle {
  margin-top: 2px;
}

#section-19 .screenshot-text h2,
#section-19 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-22 .screenshot-text {
  /* Derece Sistemi manual position */
  left: -250px; /* saga: 40px | sola: -40px */
  top: 200px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-22 .screenshot-text h3,
#section-22 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-27 .screenshot-text {
  /* Otomatik Simya manual position */
  left: -200px; /* saga: 40px | sola: -40px */
  top: -100px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-27 .screenshot-text h3,
#section-27 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-29 .screenshot-text {
  /* Detayli Oyun Secenekleri manual position */
  left: 150px; /* saga: 40px | sola: -40px */
  top: 0px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-29 .screenshot-text h3,
#section-29 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-32 .screenshot-text {
  /* Otomatik Av manual position */
  left: 150px; /* saga: 40px | sola: -40px */
  top: 150px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-32 .screenshot-text h2,
#section-32 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-32 .section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

#section-34 .screenshot-text {
  /* Alan Patronu Takip manual position */
  left: 0px; /* saga: 40px | sola: -40px */
  top: 200px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-34 .screenshot-text h3,
#section-34 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-36 .screenshot-text {
  /* Pazar Sistemi manual position */
  left: 800px; /* saga: 40px | sola: -40px */
  top: 0px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-36 .screenshot-text h3,
#section-36 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-38 .screenshot-text {
  /* Ticaret Cami manual position */
  left: 200px; /* saga: 40px | sola: -40px */
  top: -300px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-38 .screenshot-text h3,
#section-38 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-39 .screenshot-text {
  /* Uzaktan Biyolog manual position */
  left: -250px; /* saga: 40px | sola: -40px */
  top: -250px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-39 .screenshot-text h3,
#section-39 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-40 .screenshot-text {
  /* Cark Sistemi manual position */
  left: -900px; /* saga: 40px | sola: -40px */
  top: -200px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}

#section-41 .screenshot-text {
  /* Zindan Takip manual position */
  left: 800px; /* saga: 40px | sola: -40px */
  top: -250px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
}
#section-40 .screenshot-text h3,
#section-40 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-41 .screenshot-text h3,
#section-41 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#section-26 .section-content {
  /* Arena Lig Sistemi manual position */
  left: 0px; /* saga: 40px | sola: -40px */
  top: 200px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
}
#section-26 .section-title,
#section-26 .gold-line,
#section-26 .feature-accordion-toggle,
#section-26 .feature-accordion-content {
  position: relative;
  left: 0;
  right: 0;
}
#section-26 .section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
#section-26 .feature-accordion-content {
  width: 100%;
}

#section-33 .section-content {
  /* Legal Satis manual position */
  left: 0px; /* saga: 40px | sola: -40px */
  top: 0px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
}
#section-33 .section-title,
#section-33 .gold-line,
#section-33 .feature-accordion-toggle,
#section-33 .feature-accordion-content {
  position: relative;
  left: 0;
  right: 0;
}
#section-33 .feature-accordion-content {
  width: 100%;
}


#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;
  -webkit-overflow-scrolling: touch;
}
.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;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* iOS Safari scroll fix */
@supports (-webkit-touch-callout: none) {
  .hero-content {
    position: absolute;
  }
}
.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: 14px 22px;
  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: 72px;
  height: 72px;
}
.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:not(.feature-badge-new) {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.2;
  max-width: 92%;
}
.feature-badge-new {
  position: absolute !important;
  top: 6px;
  right: 8px;
  z-index: 2 !important;
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: #fff7de;
  background: linear-gradient(135deg, #b00000 0%, #ff3b1f 100%);
  border: 1px solid rgba(255, 214, 150, 0.8);
  border-radius: 999px;
  padding: 2px 7px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  animation: featureNewPulse 1.6s ease-in-out infinite;
}
@keyframes featureNewPulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  }
  50% {
    transform: translateY(-1px) scale(1.09);
    box-shadow: 0 4px 14px rgba(255, 80, 40, 0.55);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  }
}
.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;
}

/* Improve readability on pet system section */
#section-25 .screenshot-text {
  /* Seviyeli Pet Sistemi manual position */
  left: -300px; /* saga: 40px | sola: -40px */
  top: -200px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin-left: 0 !important;
}
#section-25 .screenshot-text h3,
#section-25 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}
#section-6 .feature-accordion-toggle,
#section-7 .feature-accordion-toggle,
#section-11 .feature-accordion-toggle,
#section-12 .feature-accordion-toggle,
#section-14 .feature-accordion-toggle,
#section-15 .feature-accordion-toggle,
#section-17 .feature-accordion-toggle,
#section-18 .feature-accordion-toggle,
#section-19 .feature-accordion-toggle,
#section-22 .feature-accordion-toggle,
#section-26 .feature-accordion-toggle,
#section-27 .feature-accordion-toggle,
#section-29 .feature-accordion-toggle,
#section-32 .feature-accordion-toggle,
#section-33 .feature-accordion-toggle,
#section-34 .feature-accordion-toggle,
#section-36 .feature-accordion-toggle,
#section-38 .feature-accordion-toggle,
#section-39 .feature-accordion-toggle,
#section-40 .feature-accordion-toggle,
#section-41 .feature-accordion-toggle,
#section-25 .feature-accordion-toggle {
  width: auto;
  min-height: 34px;
  padding: 6px 14px;
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(225, 191, 110, 0.6);
  background: rgba(15, 15, 18, 0.68);
  color: #e1bf6e;
  cursor: pointer;
  transition: all 0.25s ease;
}
#section-6 .feature-accordion-toggle:hover,
#section-7 .feature-accordion-toggle:hover,
#section-11 .feature-accordion-toggle:hover,
#section-12 .feature-accordion-toggle:hover,
#section-14 .feature-accordion-toggle:hover,
#section-15 .feature-accordion-toggle:hover,
#section-17 .feature-accordion-toggle:hover,
#section-18 .feature-accordion-toggle:hover,
#section-19 .feature-accordion-toggle:hover,
#section-22 .feature-accordion-toggle:hover,
#section-26 .feature-accordion-toggle:hover,
#section-27 .feature-accordion-toggle:hover,
#section-29 .feature-accordion-toggle:hover,
#section-32 .feature-accordion-toggle:hover,
#section-33 .feature-accordion-toggle:hover,
#section-34 .feature-accordion-toggle:hover,
#section-36 .feature-accordion-toggle:hover,
#section-38 .feature-accordion-toggle:hover,
#section-39 .feature-accordion-toggle:hover,
#section-40 .feature-accordion-toggle:hover,
#section-41 .feature-accordion-toggle:hover,
#section-25 .feature-accordion-toggle:hover {
  background: rgba(30, 30, 36, 0.8);
}
#section-6 .feature-accordion-label,
#section-7 .feature-accordion-label,
#section-11 .feature-accordion-label,
#section-12 .feature-accordion-label,
#section-14 .feature-accordion-label,
#section-15 .feature-accordion-label,
#section-17 .feature-accordion-label,
#section-18 .feature-accordion-label,
#section-19 .feature-accordion-label,
#section-22 .feature-accordion-label,
#section-26 .feature-accordion-label,
#section-27 .feature-accordion-label,
#section-29 .feature-accordion-label,
#section-32 .feature-accordion-label,
#section-33 .feature-accordion-label,
#section-34 .feature-accordion-label,
#section-36 .feature-accordion-label,
#section-38 .feature-accordion-label,
#section-39 .feature-accordion-label,
#section-40 .feature-accordion-label,
#section-41 .feature-accordion-label,
#section-25 .feature-accordion-label {
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  line-height: 1.2;
}
#section-6 .section-content,
#section-11 .section-content,
#section-12 .screenshot-text,
#section-14 .screenshot-text,
#section-15 .screenshot-text,
#section-17 .screenshot-text,
#section-18 .section-content,
#section-19 .screenshot-text,
#section-22 .screenshot-text,
#section-25 .screenshot-text,
#section-26 .section-content,
#section-27 .screenshot-text,
#section-29 .screenshot-text,
#section-32 .screenshot-text,
#section-33 .section-content,
#section-34 .screenshot-text,
#section-36 .screenshot-text,
#section-38 .screenshot-text,
#section-39 .screenshot-text,
#section-40 .screenshot-text,
#section-41 .screenshot-text {
  text-align: center;
}
#section-6 .feature-accordion-content,
#section-7 .feature-accordion-content,
#section-11 .feature-accordion-content,
#section-12 .feature-accordion-content,
#section-14 .feature-accordion-content,
#section-15 .feature-accordion-content,
#section-17 .feature-accordion-content,
#section-18 .feature-accordion-content,
#section-19 .feature-accordion-content,
#section-22 .feature-accordion-content,
#section-26 .feature-accordion-content,
#section-27 .feature-accordion-content,
#section-29 .feature-accordion-content,
#section-32 .feature-accordion-content,
#section-33 .feature-accordion-content,
#section-34 .feature-accordion-content,
#section-36 .feature-accordion-content,
#section-38 .feature-accordion-content,
#section-39 .feature-accordion-content,
#section-40 .feature-accordion-content,
#section-41 .feature-accordion-content,
#section-25 .feature-accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
  text-align: center;
}
#section-6 .feature-accordion-content.is-open,
#section-7 .feature-accordion-content.is-open,
#section-11 .feature-accordion-content.is-open,
#section-12 .feature-accordion-content.is-open,
#section-14 .feature-accordion-content.is-open,
#section-15 .feature-accordion-content.is-open,
#section-17 .feature-accordion-content.is-open,
#section-18 .feature-accordion-content.is-open,
#section-19 .feature-accordion-content.is-open,
#section-22 .feature-accordion-content.is-open,
#section-26 .feature-accordion-content.is-open,
#section-27 .feature-accordion-content.is-open,
#section-29 .feature-accordion-content.is-open,
#section-32 .feature-accordion-content.is-open,
#section-33 .feature-accordion-content.is-open,
#section-34 .feature-accordion-content.is-open,
#section-36 .feature-accordion-content.is-open,
#section-38 .feature-accordion-content.is-open,
#section-39 .feature-accordion-content.is-open,
#section-40 .feature-accordion-content.is-open,
#section-41 .feature-accordion-content.is-open,
#section-25 .feature-accordion-content.is-open {
  opacity: 1;
  margin-top: 14px;
}
#section-7 .screenshot-text {
  /* Reward Pool manual position */
  left: -200px; /* saga: 40px | sola: -40px */
  top: -150px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
  margin: 0 auto;
  text-align: center;
}
#section-7 .screenshot-text h3,
#section-7 .screenshot-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}
#section-7 .feature-accordion-content {
  width: 100%;
}
#section-11 .section-content {
  /* Vote4Buff manual position */
  left: -500px; /* saga: 40px | sola: -40px */
  top: -100px; /* asagi: 40px | yukari: -40px */
  width: 620px; /* cerceve genisligi */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(8, 8, 10, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(225, 191, 110, 0.28);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  max-width: min(92vw, 620px);
}
#section-11 .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}
#section-11 .feature-accordion-content {
  width: 100%;
}
#section-11 .vote-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
#section-11 .vote-image-wrap img {
  display: block;
  max-width: min(100%, 720px);
  height: auto;
}

@media (max-width: 768px) {
  #section-7 .screenshot-text {
    padding: 18px 16px;
    width: min(94vw, 620px);
    max-width: min(94vw, 620px);
    left: 0;
    top: 0;
  }

  #section-11 .section-content {
    padding: 18px 16px;
    width: min(94vw, 620px);
    max-width: min(94vw, 620px);
    left: 0;
    top: 0;
  }
}
#section-6 .feature-accordion-content .content-text {
  margin-top: 0;
}
#section-6 .feature-accordion-content {
  width: 100%;
}

@media (max-width: 768px) {
  #section-6 .section-content {
    width: min(94vw, 620px);
    max-width: min(94vw, 620px);
    top: 0;
    padding: 18px 16px;
    left: 0;
  }
}

@media (max-width: 768px) {
  #section-6 .section-content,
  #section-7 .screenshot-text,
  #section-11 .section-content,
  #section-12 .screenshot-text,
  #section-14 .screenshot-text,
  #section-15 .screenshot-text,
  #section-17 .screenshot-text,
  #section-18 .section-content,
  #section-19 .screenshot-text,
  #section-22 .screenshot-text,
  #section-25 .screenshot-text,
  #section-26 .section-content,
  #section-27 .screenshot-text,
  #section-29 .screenshot-text,
  #section-32 .screenshot-text,
  #section-33 .section-content,
  #section-34 .screenshot-text,
  #section-36 .screenshot-text,
  #section-38 .screenshot-text,
  #section-39 .screenshot-text,
  #section-40 .screenshot-text,
  #section-41 .screenshot-text {
    left: 0 !important;
    top: 0 !important;
    width: min(94vw, 620px) !important;
    max-width: min(94vw, 620px) !important;
    margin: 0 auto !important;
    padding: 16px 14px !important;
    transform: none !important;
  }

  #section-6 .section-content,
  #section-11 .section-content,
  #section-18 .section-content,
  #section-26 .section-content,
  #section-33 .section-content {
    align-items: center;
    text-align: center;
  }

  #section-15 .screenshot-text,
  #section-25 .screenshot-text,
  #section-41 .screenshot-text {
    margin-top: 0 !important;
  }

  #section-18 .section-title,
  #section-19 .section-title,
  #section-26 .section-title,
  #section-32 .section-title {
    margin-bottom: 8px;
  }

  #section-18 .gold-line,
  #section-26 .gold-line {
    margin: 4px 0 8px;
  }

  #section-18 .feature-accordion-content,
  #section-26 .feature-accordion-content,
  #section-33 .feature-accordion-content {
    width: 100%;
  }
}
.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 img {
    width: 100%;
    height: auto;
    display: block;
}

.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;
    }
}

@media (max-width: 768px) {
  .webbrowser-widget {
    top: auto;
    bottom: 88px;
    left: 50%;
    --browser-y: 0px;
    transform: translate3d(calc(-50% + var(--browser-x)), var(--browser-y), 0) scale(var(--browser-scale));
    width: min(440px, calc(100vw - 40px));
  }

  .webbrowser-widget-button {
    padding: 12px;
    gap: 10px;
  }

  .webbrowser-modal {
    padding: 0;
  }

  .webbrowser-modal-dialog {
    height: 100vh;
    border-radius: 0;
  }

  .webbrowser-modal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .webbrowser-modal-actions {
    width: 100%;
    justify-content: space-between;
  }

  .webbrowser-modal-link {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .webbrowser-widget {
    left: 50%;
    right: auto;
    width: min(360px, calc(100vw - 24px));
    bottom: 84px;
  }

  .webbrowser-widget-address {
    font-size: 0.76rem;
  }

  .webbrowser-widget-title {
    font-size: 0.85rem;
  }

  .webbrowser-widget-footer {
    font-size: 0.8rem;
  }
}
