* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050505;
  font-family: Georgia, serif;
}

.main-index {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #050505;
}

.bg-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: 0.45;
}

.bg-image {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 111%;
    height: auto;

    transform: translate(-50%, -50%);
}

.dark-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,.02),
      rgba(0,0,0,.18)
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,.02),
      rgba(0,0,0,.18)
    );

  pointer-events: none;
}

.rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,0.22) 0 1px, transparent 1px 8px);
  background-size: 90px 90px;
  animation: rainMove 0.35s linear infinite;
  opacity: 0.28;
}

@keyframes rainMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -90px 90px;
  }
}
.portal-hotspots {
  position: absolute;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.portal-hotspots.show {
  opacity: 1;
}

.portal-action {
  --glow: 255, 170, 45;
  --gem: #ff9d22;

  position: absolute;
  width: 160px;
  height: 56px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #f8df9b;
  pointer-events: auto;

  transform: translate(-50%, -50%);
  transition: transform .25s ease, filter .25s ease;
}

.portal-80 {
  left: 29.8%;
  top: 74%;
  --glow: 255, 143, 24;
  --gem: #ff8f18;
}

.portal-100 {
  left: 49.9%;
  top: 74%;
  --glow: 80, 255, 115;
  --gem: #4fff73;
}

.portal-110 {
  left: 69.9%;
  top: 74%;
  --glow: 70, 185, 255;
  --gem: #46b9ff;
}

.portal-frame {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, rgba(52, 34, 12, .86), rgba(8, 6, 3, .9)),
    radial-gradient(circle at center, rgba(var(--glow), .16), transparent 65%);

  border: 1px solid rgba(var(--glow), .85);

  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    18px 100%,
    0 calc(100% - 18px),
    0 18px
  );

  box-shadow:
    inset 0 0 22px rgba(var(--glow), .16),
    inset 0 0 4px rgba(255, 235, 170, .35),
    0 0 22px rgba(var(--glow), .28);

  overflow: hidden;
}

.portal-frame::before {
  content: "";
  position: absolute;
  inset: 5px;

  border: 1px solid rgba(255, 220, 130, .42);

  clip-path: polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );
}

.portal-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 70%;
  height: 100%;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(255,255,255,.18),
    transparent
  );

  transform: skewX(-22deg);
  opacity: 0;
}

.portal-energy {
  position: absolute;
  inset: -12px;

  background:
    radial-gradient(circle at center, rgba(var(--glow), .28), transparent 60%),
    conic-gradient(
      from 0deg,
      transparent,
      rgba(var(--glow), .55),
      transparent,
      rgba(var(--glow), .35),
      transparent
    );

  filter: blur(10px);
  opacity: .22;
  animation: energyRotate 6s linear infinite;
}

.portal-gem {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 18px;
  height: 18px;

  background: var(--gem);
  transform: translateX(-50%) rotate(45deg);

  border: 1px solid rgba(255, 240, 180, .75);

  box-shadow:
    0 0 12px rgba(var(--glow), .75),
    inset 0 0 8px rgba(255,255,255,.35);
}

.portal-gem::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(0,0,0,.35);
}

.portal-action strong {
    position: relative;
    z-index: 3;

    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;

    color: #f8df9b;
    margin-top: 2px;
    text-shadow:
        0 0 8px rgba(var(--glow), .75),
        0 2px 0 rgba(0,0,0,.9);
}

.portal-action small {
    position: relative;
    z-index: 3;

    margin-top: 8px;

    font-family: 'Cormorant SC', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #f5d481;

    text-shadow:
        0 0 7px rgba(var(--glow), .65),
        0 2px 0 rgba(0,0,0,.9);
}

.portal-action::before,
.portal-action::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 2px;
  z-index: 4;

  background: linear-gradient(90deg, transparent, rgba(var(--glow), .95), transparent);
  box-shadow: 0 0 8px rgba(var(--glow), .8);
}

.portal-action::before {
  left: 21px;
}

.portal-action::after {
  right: 21px;
}

.portal-action:hover {
  transform: translate(-50%, -50%) scale(1.055);
  filter: brightness(1.14);
}

.portal-action:hover .portal-frame {
  box-shadow:
    inset 0 0 28px rgba(var(--glow), .28),
    inset 0 0 8px rgba(255, 235, 170, .5),
    0 0 36px rgba(var(--glow), .65),
    0 0 70px rgba(var(--glow), .28);
}

.portal-action:hover .portal-frame::after {
  opacity: 1;
  animation: buttonShine 1.1s ease;
}

.portal-action:hover .portal-energy {
  opacity: .55;
  filter: blur(12px);
  animation-duration: 2.8s;
}

.portal-action:hover .portal-gem {
  box-shadow:
    0 0 18px rgba(var(--glow), 1),
    0 0 34px rgba(var(--glow), .65),
    inset 0 0 10px rgba(255,255,255,.45);
}

@keyframes energyRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes buttonShine {
  from {
    left: -80%;
  }

  to {
    left: 120%;
  }
}
.portal-frame {
    animation: breathe 3.5s ease-in-out infinite;
}

@keyframes breathe {

    0% {
        box-shadow:
            inset 0 0 22px rgba(var(--glow), .16),
            inset 0 0 4px rgba(255,235,170,.35),
            0 0 18px rgba(var(--glow), .22);
    }

    50% {
        box-shadow:
            inset 0 0 30px rgba(var(--glow), .25),
            inset 0 0 8px rgba(255,235,170,.45),
            0 0 34px rgba(var(--glow), .55);
    }

    100% {
        box-shadow:
            inset 0 0 22px rgba(var(--glow), .16),
            inset 0 0 4px rgba(255,235,170,.35),
            0 0 18px rgba(var(--glow), .22);
    }

}
/* FORCE INTRO FIX */
.intro-cover {
  position: fixed !important;
  inset: 0 !important;
  background: #000 !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transition: opacity 2.2s ease !important;
}

.intro-cover.hide {
  opacity: 0 !important;
}

.portal-hotspots {
  opacity: 0 !important;
  transition: opacity 1.2s ease !important;
}

.portal-hotspots.show {
  opacity: 1 !important;
}

.portal-layer {
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
}

.portal-layer img {
  width: 111%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(6px) brightness(.75) saturate(.85);
  opacity: .88;
  transition: filter .45s ease, opacity .45s ease;
}

.portal-layer.active img {
  filter: blur(0px) brightness(1.22) contrast(1.10) saturate(1.18);
  opacity: 1;
}

.fire {
  position: absolute;
  width: 100px;
  height: 95.5px;
  z-index: 60;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.fire-1 {
  left: 19.5%;
  top: 71.7%;
}

.fire-2 {
  left: 39.8%;
  top: 71.7%;
}

.fire-3 {
  left: 41.0%;
  top: 71%;
}

.fire-4 {
  left: 58.9%;
  top: 71%;
}

.fire-5 {
  left: 60.2%;
  top: 71.7%;
}

.fire-6 {
  left: 80.3%;
  top: 71.7%;
}

.main-flag {
  position: absolute;
  inset: 0;

  width: 111%;
  height: auto;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  z-index: 40;
  pointer-events: none;
}
.main-flag {
  position: absolute;
  inset: 0;
  width: 111%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  pointer-events: none;
}

.flag-cloth{
    position:absolute;

    left:50%;
    top:50%;   /* bununla oyna */

    width:100%;
    height:auto;

    transform:translate(-50%,-50%);
}

.flag-logo {
  position: absolute;
  left: 50%;
  top: -17%;
  width: 16%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.cap-layer {
  position: absolute;
  inset: 0;
  z-index: 45;
  pointer-events: none;
}

.cap-layer img {
  position: absolute;
  width: 111%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: .95;
  transition:
    filter .35s ease,
    transform .35s ease,
    opacity .35s ease;
}

.cap-layer.active img {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.cap80.active img {
  filter:
    brightness(1.35)
    contrast(1.12)
    saturate(1.18)
    drop-shadow(0 0 10px rgba(255, 160, 35, .8))
    drop-shadow(0 0 28px rgba(255, 120, 20, .45));
}

.cap100.active img {
  filter:
    brightness(1.35)
    contrast(1.12)
    saturate(1.2)
    drop-shadow(0 0 10px rgba(80, 255, 115, .75))
    drop-shadow(0 0 28px rgba(50, 220, 80, .42));
}

.cap110.active img {
  filter:
    brightness(1.35)
    contrast(1.12)
    saturate(1.2)
    drop-shadow(0 0 10px rgba(80, 190, 255, .8))
    drop-shadow(0 0 30px rgba(40, 150, 255, .45));
}
.cap-layer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.6%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  filter: blur(.2px);
  transition: opacity .25s ease;
}

.cap-layer.active::before {
  opacity: 1;
  animation: capElectric 1.1s linear infinite;
}

.cap80::before {
  left: 30%;
  top: 40.5%;
  border: 2px dashed rgba(255, 170, 35, .95);
  box-shadow:
    0 0 10px rgba(255, 160, 35, .9),
    0 0 28px rgba(255, 120, 20, .45);
}

.cap100::before {
  left: 50%;
  top: 46%;
  border: 2px dashed rgba(80, 255, 115, .95);
  box-shadow:
    0 0 10px rgba(80, 255, 115, .85),
    0 0 28px rgba(50, 220, 80, .45);
}

.cap110::before {
  left: 69.9%;
  top: 40.5%;
  border: 2px dashed rgba(80, 190, 255, .95);
  box-shadow:
    0 0 10px rgba(80, 190, 255, .9),
    0 0 30px rgba(40, 150, 255, .45);
}

@keyframes capElectric {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.035);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}

#capLightningCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 75;
  pointer-events: none;
  mix-blend-mode: screen;
}

.world-loading {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(10px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}

.world-loading.active {
  opacity: 1;
  pointer-events: auto;
}

.loading-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(220, 170, 70, .25);
  border-top-color: rgba(255, 200, 90, .95);
  border-bottom-color: rgba(255, 120, 35, .65);

  box-shadow:
    0 0 22px rgba(255, 170, 45, .35),
    inset 0 0 25px rgba(255, 150, 35, .18);

  animation: loadingSpin 1.2s linear infinite;
  position: relative;
}

.loading-core {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,240,160,.95), rgba(255,130,30,.45), transparent 70%);

  box-shadow:
    0 0 28px rgba(255, 170, 45, .8),
    0 0 60px rgba(255, 80, 20, .35);

  animation: loadingPulse 1.4s ease-in-out infinite;
}

.world-loading h1 {
  margin-top: 34px;
  font-family: 'Cinzel Decorative', Georgia, serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: #f8df9b;
  text-shadow:
    0 0 12px rgba(255, 190, 70, .65),
    0 3px 0 rgba(0,0,0,.9);
}

.world-loading p {
  margin-top: 12px;
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: #d9bd76;
  text-shadow: 0 0 10px rgba(255, 160, 45, .35);
  transition: opacity .25s ease;
}

@keyframes loadingSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes loadingPulse {
  0%, 100% {
    transform: scale(.9);
    opacity: .7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.loading-logo{
    width:320px;
    height:320px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 10px;
}

.loading-logo video{

    width:100%;
    height:100%;

    object-fit:contain;

    pointer-events:none;

    filter:
        drop-shadow(0 0 18px rgba(255,175,50,.45))
        drop-shadow(0 0 40px rgba(255,140,40,.25));
}

#screenFade {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  pointer-events: none;
  overflow: hidden;
  background: rgba(0,0,0,0);
  transition: background 1.1s ease;
}

#screenFade.active {
  background: rgba(0,0,0,1);
}

.void-cloud {
  position: absolute;
  inset: -25%;
  opacity: 0;
  filter: blur(35px);
  transform: scale(1.45);
  transition:
    opacity 1.15s ease,
    transform 1.15s ease;

  background:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.95) 0 12%, transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(0,0,0,.92) 0 14%, transparent 30%),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,.95) 0 16%, transparent 34%),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,.95) 0 18%, transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.98) 0 20%, transparent 45%);
}

.cloud-a {
  transform: translate(-18%, -12%) scale(1.5);
}

.cloud-b {
  transform: translate(18%, 14%) scale(1.55) rotate(12deg);
}

.cloud-c {
  transform: translate(0, 0) scale(1.7) rotate(-8deg);
}

#screenFade.active .void-cloud {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* =====================================================
   ALT ZEMİN SİSİ
===================================================== */

.ground-fog {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 31vh;

  overflow: hidden;
  pointer-events: none;

  z-index: 50;

  opacity: 0;
  animation: fogEntrance 2.4s ease 1.2s forwards;

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, .25) 14%,
    #000 38%,
    #000 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, .25) 14%,
    #000 38%,
    #000 100%
  );
}

.ground-fog__layer {
  position: absolute;
  left: 50%;
  bottom: -4%;

  width: 125%;
  height: auto;
  max-width: none;

  transform: translateX(-50%);

  user-select: none;
  pointer-events: none;

  mix-blend-mode: screen;
  filter: blur(1.4px);
  will-change: transform, opacity;
}

/* Öndeki ve daha belirgin sis */
.ground-fog__layer--front {
  width: 128%;
  bottom: -7%;

  opacity: .34;

  animation:
    fogMoveFront 24s ease-in-out infinite alternate,
    fogBreathFront 6.5s ease-in-out infinite;
}

/* Ortadaki ters yönde hareket eden sis */
.ground-fog__layer--middle {
  width: 145%;
  bottom: 2%;

  opacity: .21;
  filter: blur(2.5px);

  animation:
    fogMoveMiddle 34s ease-in-out infinite alternate,
    fogBreathMiddle 8s ease-in-out infinite;
}

/* Arkadaki geniş ve yumuşak sis */
.ground-fog__layer--back {
  width: 165%;
  bottom: 8%;

  opacity: .13;
  filter: blur(4px);

  animation:
    fogMoveBack 45s ease-in-out infinite alternate,
    fogBreathBack 10s ease-in-out infinite;
}

@keyframes fogEntrance {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fogMoveFront {
  0% {
    transform: translateX(-58%) translateY(8px) scale(1.02);
  }

  50% {
    transform: translateX(-48%) translateY(-14px) scale(1.10);
  }

  100% {
    transform: translateX(-40%) translateY(2px) scale(1.04);
  }
}

@keyframes fogMoveMiddle {
  0% {
    transform: translateX(-39%) translateY(-2px) scale(1.04);
  }

  50% {
    transform: translateX(-51%) translateY(14px) scale(1.12);
  }

  100% {
    transform: translateX(-62%) translateY(-10px) scale(1.06);
  }
}

@keyframes fogMoveBack {
  0% {
    transform: translateX(-60%) translateY(10px) scale(1.08);
  }

  50% {
    transform: translateX(-49%) translateY(-18px) scale(1.17);
  }

  100% {
    transform: translateX(-38%) translateY(4px) scale(1.10);
  }
}

/* Küçük ekranlarda sisin fazla yükselmesini engeller */
@media (max-width: 900px) {
  .ground-fog {
    height: 27vh;
  }

  .ground-fog__layer--front {
  animation: fogFrontTest 8s linear infinite !important;
}

.ground-fog__layer--middle {
  animation: fogMiddleTest 12s linear infinite !important;
}

.ground-fog__layer--back {
  animation: fogBackTest 17s linear infinite !important;
}
}

/* Hareket hassasiyeti olan kullanıcılar*/ 
@media (prefers-reduced-motion: reduce) {
  .ground-fog__layer--front {
    animation-duration: 18s !important;
  }

  .ground-fog__layer--middle {
    animation-duration: 24s !important;
  }

  .ground-fog__layer--back {
    animation-duration: 32s !important;
  }
}

/* =====================================================
   RANDOM YILDIRIM / FIRTINA PARLAMASI
===================================================== */

#stormFlash {
  position: fixed;
  inset: 0;

  z-index: 9998;

  pointer-events: none;
  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(230, 240, 255, .82) 0%,
      rgba(170, 205, 255, .34) 25%,
      rgba(80, 120, 180, .12) 52%,
      transparent 78%
    ),
    rgba(200, 220, 255, .12);

  mix-blend-mode: screen;
}

/* Sayfanın tamamını aydınlatır */
.main-index.lightning-active {
  filter:
    brightness(1.28)
    contrast(1.08)
    saturate(.92);
}

/* Kısa kararma hissi */
.main-index.lightning-dark {
  filter:
    brightness(.72)
    contrast(1.14)
    saturate(.82);
}

/* =====================================================
   ASHUNT CUSTOM CURSOR V1
===================================================== */

@media (pointer: fine) {

  html,
  body,
  a,
  button,
  .portal-action {
    cursor: none !important;
  }

  .magic-cursor {
    --cursor-rgb: 80, 190, 255;

    position: fixed;
    left: 0;
    top: 0;

    width: 0;
    height: 0;

    z-index: 99999999;
    pointer-events: none;

    opacity: 0;

    transition:
      opacity .18s ease,
      filter .18s ease;

    will-change: transform;
  }

  .magic-cursor.visible {
    opacity: 1;
  }

  .magic-cursor__effects {
    position: absolute;

    left: -70px;
    top: -70px;

    width: 140px;
    height: 140px;

    pointer-events: none;
    mix-blend-mode: screen;
  }

  .magic-cursor__art {
    position: absolute;

    left: -7px;
    top: -7px;

    width: 54px;
    height: 81px;

    object-fit: contain;

    transform:
      rotate(-1deg)
      scale(1);

    transform-origin: 7px 7px;

    pointer-events: none;

    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;

    border: none;
    outline: none;
    background: transparent;

    filter:
      brightness(1.08)
      contrast(1.08)
      drop-shadow(
        0 0 4px
        rgba(var(--cursor-rgb), .65)
      )
      drop-shadow(
        0 0 10px
        rgba(var(--cursor-rgb), .32)
      );

    transition:
      transform .16s ease,
      filter .16s ease;

    will-change:
      transform,
      filter;
  }

  .magic-cursor.hovering .magic-cursor__art {
    transform:
      rotate(-1deg)
      scale(1.1);

    filter:
      brightness(1.22)
      contrast(1.12)
      drop-shadow(
        0 0 7px
        rgba(var(--cursor-rgb), .9)
      )
      drop-shadow(
        0 0 18px
        rgba(var(--cursor-rgb), .55)
      );
  }

  .magic-cursor.pressed .magic-cursor__art {
    transform:
      rotate(-1deg)
      scale(.88);

    filter:
      brightness(1.42)
      contrast(1.15)
      drop-shadow(
        0 0 8px
        rgba(var(--cursor-rgb), 1)
      )
      drop-shadow(
        0 0 20px
        rgba(var(--cursor-rgb), .7)
      );
  }

  .magic-cursor.lightning-flash .magic-cursor__art {
    filter:
      brightness(2)
      saturate(.45)
      drop-shadow(
        0 0 10px
        rgba(255,255,255,1)
      )
      drop-shadow(
        0 0 26px
        rgba(200,230,255,.95)
      );
  }

  .cursor-trail-layer {
    position: fixed;
    inset: 0;

    z-index: 99999990;
    pointer-events: none;
    overflow: hidden;
  }

  .cursor-trail {
    --trail-rgb: 80, 190, 255;

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    transform:
      translate(-50%, -50%);

    pointer-events: none;

    background:
      radial-gradient(
        circle,
        rgba(255,255,255,.95) 0%,
        rgba(var(--trail-rgb), .76) 34%,
        transparent 76%
      );

    box-shadow:
      0 0 7px
      rgba(var(--trail-rgb), .85);

    animation:
      ashuntCursorTrailFade
      .55s
      ease-out
      forwards;
  }

  @keyframes ashuntCursorTrailFade {
    0% {
      opacity: .88;

      transform:
        translate(-50%, -50%)
        scale(1);
    }

    100% {
      opacity: 0;

      transform:
        translate(-50%, -50%)
        scale(.1);
    }
  }
}

@media (pointer: coarse) {
  .magic-cursor,
  .cursor-trail-layer {
    display: none !important;
  }
}
/* =====================================================
   SAYFA GENELİNDE METİN SEÇİMİNİ ENGELLE
===================================================== */

html,
body,
body * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* =====================================================
   ASHUNT COPYRIGHT BAR
===================================================== */

.portal-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;

  background:
    linear-gradient(
      180deg,
      rgba(7, 8, 11, .42) 0%,
      rgba(2, 3, 5, .82) 100%
    );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-top:
    1px solid rgba(228, 181, 78, .26);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .025),
    0 -10px 28px rgba(0, 0, 0, .28);

  overflow: visible;
  z-index: 500;
}

/* Üstteki ince altın ışık çizgisi */
.portal-social::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  top: -1px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(193, 137, 43, .12) 18%,
      rgba(229, 181, 78, .58) 50%,
      rgba(193, 137, 43, .12) 82%,
      transparent 100%
    );

  box-shadow:
    0 0 8px rgba(229, 181, 78, .16);
}

/* Telif satırı */
.portal-social .copyright {
  position: relative;

  margin: 0;

  font-family:
    "Cormorant SC",
    serif;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.4;
  letter-spacing: .65px;

  color:
    rgba(231, 231, 231, .82);

  text-align: center;

  text-shadow:
    0 1px 3px rgba(0, 0, 0, .92);
}

/* Sadece ASHUNT ONLINE */
.portal-social .brand {
  position: relative;
  display: inline-block;

  margin: 0 3px;

  overflow: visible;

  font-family:
    "Cinzel Decorative",
    serif;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 1.7px;
  text-transform: uppercase;

  color: #e5b44d;

  text-shadow:
    0 0 4px rgba(255, 221, 137, .24),
    0 0 10px rgba(229, 180, 77, .22);

  transition:
    color .22s ease,
    text-shadow .22s ease,
    transform .22s ease,
    letter-spacing .22s ease,
    filter .22s ease;

  cursor: pointer;
}

/* ASHUNT ONLINE yazısının merkezindeki üst amblem */
.portal-social .brand::before {
  content: "";

  position: absolute;
  left: 50%;
  top: -25px;

  width: 14px;
  height: 14px;

  transform:
    translateX(-50%)
    rotate(45deg);

  background:
    radial-gradient(
      circle at 34% 30%,
      #fff1bd 0%,
      #efc361 17%,
      #c18528 40%,
      #63370d 64%,
      #080705 100%
    );

  border:
    1px solid rgba(247, 203, 101, .72);

  box-shadow:
    0 0 5px rgba(255, 220, 127, .42),
    0 0 12px rgba(228, 172, 65, .30),
    inset 0 0 5px rgba(255, 230, 157, .24);

  pointer-events: none;
  z-index: 3;

  animation:
    ashuntBrandRuneBreath
    2.2s
    ease-in-out
    infinite;
}

/* Amblemin içindeki küçük karanlık çekirdek */
.portal-social .brand::after {
  content: "";

  position: absolute;
  left: 50%;
  top: -20px;

  width: 4px;
  height: 4px;

  transform:
    translateX(-50%)
    rotate(45deg);

  background: #080603;

  border:
    1px solid rgba(239, 187, 71, .35);

  box-shadow:
    0 0 4px rgba(255, 203, 85, .74);

  pointer-events: none;
  z-index: 4;
}

/* ASHUNT ONLINE hover */
.portal-social .brand:hover {
  color: #ffd879;

  letter-spacing: 2.2px;

  transform:
    translateY(-1px)
    scale(1.045);

  filter: brightness(1.12);

  text-shadow:
    0 0 5px rgba(255, 241, 190, .72),
    0 0 12px rgba(255, 207, 99, .62),
    0 0 22px rgba(229, 173, 65, .34);

  box-shadow:
    inset 0 -1px 0 rgba(240, 200, 108, .7);
}

/* Hover sırasında amblem biraz daha güçlü parlar */
.portal-social .brand:hover::before {
  animation-duration: 1.25s;

  box-shadow:
    0 0 8px rgba(255, 235, 170, .86),
    0 0 18px rgba(239, 187, 71, .66),
    0 0 30px rgba(200, 127, 22, .32),
    inset 0 0 7px rgba(255, 238, 190, .44);
}

/* Nefes alan amblem animasyonu */
@keyframes ashuntBrandRuneBreath {
  0%,
  100% {
    opacity: .72;

    filter:
      brightness(.92)
      saturate(.94);

    box-shadow:
      0 0 4px rgba(255, 215, 115, .28),
      0 0 9px rgba(225, 169, 61, .18),
      inset 0 0 4px rgba(255, 229, 154, .16);
  }

  50% {
    opacity: 1;

    filter:
      brightness(1.38)
      saturate(1.12);

    box-shadow:
      0 0 8px rgba(255, 235, 173, .84),
      0 0 18px rgba(235, 181, 70, .60),
      0 0 30px rgba(195, 121, 21, .28),
      inset 0 0 7px rgba(255, 239, 195, .42);
  }
}

/* Küçük ekranlar */
@media (max-width: 700px) {
  .portal-social {
    min-height: 46px;
    padding: 10px 14px;
  }

  .portal-social .copyright {
    font-size: 11px;
    letter-spacing: .35px;
  }

  .portal-social .brand {
    font-size: 13px;
    letter-spacing: 1.1px;
  }

  .portal-social .brand::before {
    top: -21px;

    width: 12px;
    height: 12px;
  }

  .portal-social .brand::after {
    top: -17px;

    width: 3px;
    height: 3px;
  }

  .portal-social .brand:hover {
    letter-spacing: 1.4px;
  }
}

/* Hareket azaltma tercihi olan kullanıcılar */
@media (prefers-reduced-motion: reduce) {
  .portal-social .brand,
  .portal-social .brand::before {
    transition: none;
    animation: none;
  }
}