:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --primary-red: #AD000F;
  --dark-red: #8B0000;
  --light-red: #C91020;
}

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

body {
  overflow-x: hidden;
  background: #000;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none !important;
}

.main-container {
  position: relative;
  width: 100%;
  min-width: 100vw;
  min-height: 2735px;
  margin: 0;
  background: #000000;
  overflow-x: hidden;
  z-index: 2;
  animation: fadeIn 1.2s ease-out;
  pointer-events: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.header {
  position: relative;
  width: 100%;
  height: 118px;
  margin: 0;
  z-index: 27;
  overflow: hidden;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.server-name {
  position: relative;
  width: 216px;
  height: 30px;
  margin: 39px 0 0 200px;
  z-index: 32;
}

.xentra-v {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: absolute;
  width: 120px;
  height: 30px;
  top: 0;
  left: 0;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 33;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 30px rgba(255, 255, 255, 0.4);
  animation: neonPulseWhite 2s ease-in-out infinite;
}

@keyframes neonPulseWhite {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                 0 0 30px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.6),
                 0 0 50px rgba(255, 255, 255, 0.4);
  }
}

.server-name:hover .xentra-v {
  transform: scale(1.1);
  color: #ffffff;
}

.roleplay {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  height: 17px;
  top: 10px;
  left: 125px;
  color: var(--primary-red);
  font-family: Outfit, var(--default-font-family);
  font-size: 14px;
  font-weight: 800;
  line-height: 17px;
  text-align: left;
  white-space: nowrap;
  z-index: 34;
  text-shadow: 0 0 10px rgba(173, 0, 15, 0.8),
               0 0 20px rgba(173, 0, 15, 0.6),
               0 0 30px rgba(173, 0, 15, 0.4);
  animation: neonPulseRed 2s ease-in-out infinite;
}

@keyframes neonPulseRed {
  0%, 100% {
    text-shadow: 0 0 10px rgba(173, 0, 15, 0.8),
                 0 0 20px rgba(173, 0, 15, 0.6),
                 0 0 30px rgba(173, 0, 15, 0.4);
  }
  50% {
    text-shadow: 0 0 20px rgba(173, 0, 15, 1),
                 0 0 30px rgba(173, 0, 15, 0.8),
                 0 0 40px rgba(173, 0, 15, 0.6),
                 0 0 50px rgba(173, 0, 15, 0.4);
  }
}

.menu {
  position: absolute;
  width: 100%;
  height: 118px;
  top: 0;
  left: 0;
  z-index: 28;
}

.main-bg {
  position: absolute;
  width: 100%;
  height: 118px;
  top: 0;
  left: 0;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(3px);
  z-index: 29;
  transition: all 0.3s ease;
}

.ana-sayfa-yonetim-ekibi-iletisim {
  position: absolute;
  width: 400px;
  height: 20px;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  justify-content: center;
  z-index: 30;
}

.nav-link {
  color: #949494;
  font-family: Outfit, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 10px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

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

.nav-link.active::after {
  width: 100%;
}

.magaza-yakinda {
  position: absolute;
  width: 126px;
  height: 20px;
  top: 49px;
  left: 50%;
  transform: translateX(250px);
  font-family: Outfit, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  white-space: nowrap;
  opacity: 0.31;
  z-index: 31;
}

.text-7 {
  color: #bababa;
  font-family: Outfit, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-8 {
  color: #bababa;
  font-family: Outfit, var(--default-font-family);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.wrapper-3 {
  position: relative;
  width: 1154.932px;
  max-width: 90%;
  height: 1143px;
  margin: 346px auto 0;
  z-index: 38;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.group-2 {
  position: absolute;
  width: 450px;
  height: 1143px;
  top: 0;
  left: 0;
  font-size: 0px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(173, 0, 15, 0.2);
  z-index: 6;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.group-2:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(173, 0, 15, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(173, 0, 15, 0.3);
}

.text-9 {
  display: block;
  position: relative;
  height: 25px;
  margin: 36px 0 0 32px;
  color: var(--primary-red);
  font-family: Outfit, var(--default-font-family);
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 9;
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.text-a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 298px;
  height: 120px;
  margin: 4px 0 0 32px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 40.2px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
}

.text-b {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 278px;
  height: 60px;
  margin: 4px 0 0 32px;
  color: #c2c2c2;
  font-family: Outfit, var(--default-font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 20.16px;
  text-align: left;
  letter-spacing: 0.8px;
  z-index: 11;
}

.box-2 {
  position: relative;
  width: 385px;
  height: 100px;
  margin: 10px 0 0 32px;
  background: linear-gradient(135deg, rgba(173, 0, 15, 0.3), rgba(139, 0, 0, 0.3));
  z-index: 13;
  border-radius: 10px;
  border: 2px solid var(--primary-red);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.box-2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.box-2:hover::before {
  width: 400px;
  height: 400px;
}

.box-2:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(173, 0, 15, 0.5);
}

.text-c {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 40px;
  top: 30px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1.6px;
  z-index: 14;
  transition: all 0.3s ease;
}

.box-2:hover .text-c {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.img {
  position: relative;
  width: 0px;
  height: 49px;
  margin: 44px 0 0 65px;
  z-index: 25;
}

.text-d {
  display: block;
  position: relative;
  height: 25px;
  margin: 60px 0 0 32px;
  color: var(--primary-red);
  font-family: Outfit, var(--default-font-family);
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 17;
}

.text-e {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 245px;
  height: 80px;
  margin: 4px 0 0 32px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 40.2px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 18;
}

.text-f {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 278px;
  height: 100px;
  margin: 11px 0 0 32px;
  color: #c2c2c2;
  font-family: Outfit, var(--default-font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 20.16px;
  text-align: left;
  letter-spacing: 0.8px;
  z-index: 19;
}

.arrow {
  position: relative;
  width: 0px;
  height: 49px;
  margin: 59.5px 0 0 65px;
  z-index: 26;
}

.step {
  display: block;
  position: relative;
  height: 25px;
  margin: 30px 0 0 32px;
  color: var(--primary-red);
  font-family: Outfit, var(--default-font-family);
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 22;
}

.whitelist-form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 385px;
  height: 80px;
  margin: 4px 0 0 32px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 40.2px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 23;
}

.whitelist-application {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 385px;
  height: 80px;
  margin: 40px 0 0 32px;
  color: #c2c2c2;
  font-family: Outfit, var(--default-font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 20.16px;
  text-align: left;
  letter-spacing: 0.8px;
  z-index: 24;
}

.gun {
  position: absolute;
  width: 656.932px;
  height: 548.972px;
  top: 321px;
  left: 498px;
  font-size: 0px;
  background: url(https://codia-f2c.s3.us-west-1.amazonaws.com/image/2026-02-14/3PrAJSWt0L.png)
    no-repeat center;
  background-size: cover;
  z-index: 36;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(173, 0, 15, 0.3));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.about-us {
  display: block;
  position: relative;
  height: 60px;
  margin: 294px 0 0 77.999px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
  white-space: nowrap;
  z-index: 37;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.line {
  position: relative;
  width: 365px;
  height: 5px;
  margin: -2px 0 0 77.999px;
  background: linear-gradient(90deg, var(--primary-red), transparent);
  z-index: 39;
  animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 365px;
  }
}

.roleplay-description {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  width: 515px;
  height: 271px;
  top: 690px;
  left: 576px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 20.16px;
  text-align: left;
  z-index: 38;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1.2s ease-out 0.6s both;
}

.discord-join {
  display: block;
  position: relative;
  height: 45px;
  margin: 109px 0 0 192px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  text-align: left;
  white-space: nowrap;
  z-index: 46;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.discord-community {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 640px;
  height: 54px;
  margin: 2px 0 0 192px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: 17.64px;
  text-align: left;
  z-index: 45;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.rectangle {
  position: relative;
  width: 406px;
  height: 270px;
  margin: 25px 0 0 192px;
  background: rgba(3, 3, 3, 0);
  z-index: 42;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.rectangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(173, 0, 15, 0.3), transparent);
  transition: left 0.6s ease;
}

.rectangle:hover::before {
  left: 100%;
}

.rectangle:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(173, 0, 15, 0.4);
}

.bg {
  position: absolute;
  width: 406px;
  height: 270px;
  top: 0;
  left: 0;
  background: url(https://codia-f2c.s3.us-west-1.amazonaws.com/image/2026-02-14/umZbQUfKci.png)
    no-repeat center;
  background-size: cover;
  opacity: 0.36;
  z-index: 43;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.rectangle:hover .bg {
  opacity: 0.6;
  transform: scale(1.1);
}

.discord {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 45px;
  top: 113px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 44;
  transition: all 0.5s ease;
}

.rectangle:hover .discord {
  transform: scale(1.15);
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
               0 0 30px rgba(200, 200, 200, 0.6);
}

.sikca-sorulan-sorular {
  display: block;
  position: relative;
  height: 45px;
  margin: 54px 0 0 189px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  text-align: left;
  white-space: nowrap;
  z-index: 72;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.flex-row-fdf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 1061px;
  height: 140px;
  margin: 8px 0 0 189px;
  z-index: 69;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.rectangle-3,
.rectangle-4,
.rectangle-5,
.rectangle-6,
.rectangle-7,
.rectangle-8 {
  flex-shrink: 0;
  position: relative;
  width: 332px;
  height: 140px;
  font-size: 0px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(173, 0, 15, 0.3);
  z-index: 69;
  transition: all 0.3s ease;
  border-radius: 10px;
  cursor: pointer;
}

.rectangle-3:hover,
.rectangle-4:hover,
.rectangle-5:hover,
.rectangle-6:hover,
.rectangle-7:hover,
.rectangle-8:hover {
  background: rgba(173, 0, 15, 0.2);
  border-color: var(--primary-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(173, 0, 15, 0.3);
}

.sunucuya-nasil-katilabilirim,
.yetkili-basvurulari-nereden-yapiliyor,
.sunucuda-hangi-rol-kurallari-gecerli,
.discord-question,
.role-question,
.support-question {
  display: block;
  position: relative;
  height: 18px;
  margin: 25px 0 0 24px;
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 17.64px;
  text-align: left;
  white-space: nowrap;
  z-index: 71;
}

.sunucumuzu-aratabilir-veya-discord-sunucumuza-katilarak-baglanti-bilgilerine-ulabilirsiniz,
.yetkili-basvurulari-yalnizca-discord-sunucumuzda-paylasilan-basvuru-formu-uzerinden-alinmaktadir,
.sunucumuzda-gerceklik-ve-rol-kalitesi-on-plandadir-tum-kurallar-discord-sunucusunda-detayli-olarak-paylasilmaktadir,
.discord-answer,
.role-answer,
.support-answer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 284px;
  height: 61px;
  margin: 12px 0 0 24px;
  color: #c2c2c2;
  font-family: Outfit, var(--default-font-family);
  font-size: 12px;
  font-weight: 300;
  line-height: 15.12px;
  text-align: left;
  z-index: 70;
}

.flex-row-aaf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 1061px;
  height: 140px;
  margin: 32px 0 0 189px;
  z-index: 61;
  animation: fadeInUp 0.8s ease-out 1.3s both;
}

.line-9 {
  position: relative;
  width: 1062px;
  height: 1px;
  margin: 100.973px 0 0 188.5px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  z-index: 4;
  animation: fadeIn 1s ease-out 1.4s both;
}

.flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 1061px;
  height: 24px;
  margin: 27.027px 0 0 189px;
  z-index: 3;
  animation: fadeIn 1s ease-out 1.5s both;
}

.sub-menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 556px;
  height: 24px;
  color: #757575;
  font-family: Jost, var(--default-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.26px;
  z-index: 3;
}

.copyright {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-shrink: 0;
  position: relative;
  width: 422px;
  height: 24px;
  color: #757575;
  font-family: Jost, var(--default-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: right;
  white-space: nowrap;
  letter-spacing: 0.26px;
  z-index: 2;
}

.bg-a {
  position: absolute;
  width: 100%;
  min-width: 100vw;
  height: 3283px;
  top: -548px;
  left: 0;
  background: url(https://codia-f2c.s3.us-west-1.amazonaws.com/image/2026-02-14/MgaCcDbhPE.png)
    no-repeat center;
  background-size: cover;
  opacity: 0.72;
  filter: hue-rotate(-10deg) saturate(1.2);
}


/* Responsive - Mobil Uyumluluk */
/* Responsive - Mobil Uyumluluk */

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(173, 0, 15, 0.3);
  border: 2px solid var(--primary-red);
  cursor: pointer;
  padding: 10px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  border-radius: 8px;
  transition: all 0.3s ease;
  pointer-events: auto !important;
  width: 48px;
  height: 48px;
}

.hamburger * {
  pointer-events: none;
}

.hamburger svg {
  color: var(--primary-red);
  transition: all 0.3s ease;
  pointer-events: none;
}

.hamburger:hover {
  background: rgba(173, 0, 15, 0.5);
  transform: scale(1.05);
}

.hamburger:hover svg {
  color: #ffffff;
}

.hamburger.active {
  background: var(--primary-red);
}

.hamburger.active svg {
  color: #ffffff;
  transform: rotate(90deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98));
  backdrop-filter: blur(15px);
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-right: 3px solid var(--primary-red);
  box-shadow: 5px 0 30px rgba(173, 0, 15, 0.5);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  border-bottom: 2px solid rgba(173, 0, 15, 0.5);
  background: rgba(173, 0, 15, 0.1);
}

.mobile-menu-title {
  color: var(--primary-red);
  font-family: Outfit, var(--default-font-family);
  font-size: 22px;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(173, 0, 15, 0.8);
}

.mobile-menu-close {
  background: rgba(173, 0, 15, 0.2);
  border: 2px solid var(--primary-red);
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-close:hover {
  background: var(--primary-red);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  gap: 5px;
}

.mobile-nav-link {
  color: #ffffff;
  font-family: Outfit, var(--default-font-family);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 25px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(173, 0, 15, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  border-left-color: var(--primary-red);
  color: var(--primary-red);
  padding-left: 35px;
  text-shadow: 0 0 10px rgba(173, 0, 15, 0.8);
}

/* FAQ Carousel - Sadece mobilde görünür */
.faq-carousel-container {
  display: none !important;
}

.faq-dots {
  display: none !important;
}

.faq-carousel {
  display: none;
}

.faq-arrow {
  display: none;
}

.faq-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  min-height: 160px;
}

.faq-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.faq-slide.active {
  display: block;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-arrow {
  background: linear-gradient(135deg, rgba(173, 0, 15, 0.5), rgba(139, 0, 0, 0.5));
  border: 2px solid var(--primary-red);
  color: #ffffff;
  font-size: 0;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(173, 0, 15, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  user-select: none;
  z-index: 9999;
  pointer-events: auto !important;
  position: relative;
}

.faq-arrow * {
  pointer-events: none;
}

.faq-arrow svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.faq-arrow:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(173, 0, 15, 0.6);
}

.faq-arrow:hover svg {
  transform: scale(1.1);
}

.faq-arrow:active {
  transform: scale(1.0);
}

.faq-arrow-left:hover {
  transform: scale(1.15) translateX(-5px);
}

.faq-arrow-right:hover {
  transform: scale(1.15) translateX(5px);
}

.faq-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(173, 0, 15, 0.6);
  border: 2px solid var(--primary-red);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-dot:hover {
  background: rgba(173, 0, 15, 0.9);
  transform: scale(1.3);
}

.faq-dot.active {
  background: var(--primary-red);
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(173, 0, 15, 1);
}

/* Desktop FAQ - Normal grid düzeni */
.flex-row-fdf {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 1061px;
  height: 140px;
  margin: 8px 0 0 189px;
  z-index: 69;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.flex-row-aaf {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 1061px;
  height: 140px;
  margin: 32px 0 0 189px;
  z-index: 61;
  animation: fadeInUp 0.8s ease-out 1.3s both;
}

@media (max-width: 768px) {
  /* Mobilde carousel göster, grid gizle */
  .faq-carousel-container {
    position: relative;
    width: 90%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 9999;
    pointer-events: auto;
  }

  .faq-arrow {
    display: flex;
    width: 45px;
    height: 45px;
    font-size: 0;
    z-index: 9999;
    pointer-events: auto !important;
  }

  .faq-arrow svg {
    width: 20px;
    height: 20px;
  }

  .faq-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
    z-index: 9999;
    pointer-events: auto;
  }

  .faq-dot {
    pointer-events: auto !important;
  }

  .flex-row-fdf,
  .flex-row-aaf {
    display: none !important;
  }
}
    width: 90%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .faq-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
  }

  .flex-row-fdf,
  .flex-row-aaf {
    display: none !important;
  }
}

.faq-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  min-height: 160px;
}

.faq-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.faq-slide.active {
  display: block;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-arrow {
  background: linear-gradient(135deg, rgba(173, 0, 15, 0.5), rgba(139, 0, 0, 0.5));
  border: 3px solid var(--primary-red);
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex-shrink: 0;
  box-shadow: 0 5px 25px rgba(173, 0, 15, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.faq-arrow:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  transform: scale(1.2);
  box-shadow: 0 10px 35px rgba(173, 0, 15, 0.7);
}

.faq-arrow:active {
  transform: scale(1.05);
}

.faq-arrow-left:hover {
  transform: scale(1.2) translateX(-8px);
}

.faq-arrow-right:hover {
  transform: scale(1.2) translateX(8px);
}

.faq-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.faq-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(173, 0, 15, 0.3);
  border: 2px solid var(--primary-red);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-dot:hover {
  background: rgba(173, 0, 15, 0.6);
  transform: scale(1.3);
}

.faq-dot.active {
  background: var(--primary-red);
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(173, 0, 15, 1);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .mobile-menu-overlay,
  .mobile-menu {
    display: block;
  }

  /* PC'de FAQ grid'i gizle, mobilde carousel göster */
  .flex-row-fdf,
  .flex-row-aaf {
    display: none !important;
  }

  .faq-carousel-container {
    position: relative;
    width: 90%;
    margin: 30px auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 9999;
    pointer-events: auto;
  }

  .faq-carousel {
    display: block !important;
    max-width: 100%;
    min-height: 180px;
  }

  .faq-arrow {
    display: flex !important;
    width: 45px;
    height: 45px;
    font-size: 0;
    z-index: 9999;
    pointer-events: auto !important;
  }

  .faq-arrow svg {
    width: 20px;
    height: 20px;
  }

  .faq-dots {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
    z-index: 9999;
    pointer-events: auto;
  }

  .faq-dot {
    pointer-events: auto !important;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0;
    background: transparent;
    z-index: 500;
    pointer-events: none;
  }

  .menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
  }

  .main-bg {
    display: block;
    backdrop-filter: blur(8px);
    background: rgba(20, 20, 20, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
  }

  .server-name {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 501;
    pointer-events: none;
  }

  .ana-sayfa-yonetim-ekibi-iletisim {
    display: none;
  }

  .magaza-yakinda {
    display: none;
  }

  .main-container {
    width: 100%;
    min-width: 100%;
    padding-top: 80px;
  }

  .header {
    height: 80px;
    padding: 0;
    background: transparent;
  }

  .menu {
    display: block;
  }

  .main-bg {
    display: block;
    backdrop-filter: blur(5px);
  }

  .xentra-v {
    font-size: 18px;
    width: 90px;
  }

  .roleplay {
    font-size: 11px;
    left: 95px;
    top: 8px;
  }

  .wrapper-3 {
    width: 95%;
    margin: 180px auto 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .group-2 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 25px 20px;
    margin: 0;
  }

  .text-9, .text-d, .step {
    margin: 0 0 10px 0;
    font-size: 18px;
  }

  .text-a, .text-e, .whitelist-form {
    width: 100%;
    margin: 10px 0;
    font-size: 26px;
    height: auto;
    line-height: 30px;
  }

  .text-b, .text-f, .whitelist-application {
    width: 100%;
    margin: 15px 0 20px 0;
    font-size: 14px;
    height: auto;
    line-height: 18px;
  }

  .box-2 {
    width: 100%;
    margin: 15px 0;
    height: 70px;
  }

  .text-c {
    font-size: 22px;
    top: 15px;
  }

  .img, .arrow {
    display: none;
  }

  .gun {
    display: none;
  }

  .about-us {
    position: relative;
    margin: 60px 0 0 0;
    font-size: 40px;
    text-align: center;
    width: 100%;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(173, 0, 15, 1),
                 0 0 30px rgba(173, 0, 15, 0.8),
                 0 0 40px rgba(173, 0, 15, 0.6);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .line {
    margin: 15px auto 0;
    width: 80%;
  }

  .gun {
    display: block;
    position: relative;
    width: 90%;
    max-width: 400px;
    height: 300px;
    margin: 30px auto 0;
    left: 0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .roleplay-description {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    margin: 30px 0;
    font-size: 14px;
    padding: 0 20px;
    text-align: justify;
  }

  .discord-join {
    margin: 40px auto 0;
    text-align: center;
    font-size: 26px;
    width: 90%;
  }

  .discord-community {
    width: 95%;
    margin: 15px auto 0;
    text-align: center;
    font-size: 13px;
    padding: 0 20px;
    height: auto;
  }

  .rectangle {
    width: 90%;
    max-width: 350px;
    height: 200px;
    margin: 25px auto 0;
  }

  .bg {
    width: 100%;
    height: 200px;
  }

  .discord {
    font-size: 32px;
    top: 75px;
  }

  .sikca-sorulan-sorular {
    margin: 50px auto 0;
    text-align: center;
    font-size: 26px;
    width: 90%;
  }

  .faq-carousel-container {
    width: 90%;
    margin: 30px auto;
    gap: 10px;
  }

  .faq-carousel {
    max-width: 100%;
    min-height: 180px;
  }

  .faq-arrow {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  .flex-row-fdf {
    display: none !important;
  }

  .rectangle-3, .rectangle-4, .rectangle-5,
  .rectangle-6, .rectangle-7, .rectangle-8 {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 20px;
    margin: 0;
  }

  .sunucuya-nasil-katilabilirim,
  .yetkili-basvurulari-nereden-yapiliyor,
  .sunucuda-hangi-rol-kurallari-gecerli,
  .discord-question,
  .role-question,
  .support-question {
    margin: 0 0 15px 0;
    font-size: 15px;
    height: auto;
  }

  .sunucumuzu-aratabilir-veya-discord-sunucumuza-katilarak-baglanti-bilgilerine-ulabilirsiniz,
  .yetkili-basvurulari-yalnizca-discord-sunucumuzda-paylasilan-basvuru-formu-uzerinden-alinmaktadir,
  .sunucumuzda-gerceklik-ve-rol-kalitesi-on-plandadir-tum-kurallar-discord-sunucusunda-detayli-olarak-paylasilmaktadir,
  .discord-answer,
  .role-answer,
  .support-answer {
    width: 100%;
    margin: 0;
    font-size: 13px;
    height: auto;
    line-height: 17px;
  }

  .line-9 {
    width: 90%;
    margin: 50px auto 0;
  }

  .flex-row {
    flex-direction: column;
    width: 95%;
    margin: 20px auto 30px;
    height: auto;
    gap: 10px;
    text-align: center;
  }

  .sub-menu, .copyright {
    width: 100%;
    text-align: center;
    font-size: 10px;
    justify-content: center;
  }

  .bg-a {
    background-position: center;
  }
}

@media (max-width: 480px) {
  .main-container {
    width: 100%;
    min-width: 100%;
  }

  .header {
    height: auto;
    padding: 15px 0;
  }

  .server-name {
    margin: 10px auto;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }

  .xentra-v {
    font-size: 20px;
    width: 100px;
  }

  .roleplay {
    font-size: 12px;
    left: 105px;
  }

  .ana-sayfa-yonetim-ekibi-iletisim {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    top: 70px;
    padding: 10px 0;
  }

  .nav-link {
    font-size: 14px;
  }

  .magaza-yakinda {
    display: none;
  }

  .wrapper-3 {
    width: 95%;
    margin: 50px auto 0;
    padding: 0 10px;
  }

  .group-2 {
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }

  .text-9, .text-d, .step {
    margin-left: 15px;
    font-size: 16px;
  }

  .text-a, .text-e, .whitelist-form {
    width: 90%;
    margin-left: 15px;
    font-size: 28px;
    height: auto;
  }

  .text-b, .text-f, .whitelist-application {
    width: 90%;
    margin-left: 15px;
    font-size: 14px;
    height: auto;
  }

  .box-2 {
    width: 90%;
    margin-left: 15px;
    height: 80px;
  }

  .text-c {
    font-size: 24px;
    top: 20px;
  }

  .gun {
    display: none;
  }

  .about-us {
    margin: 30px 0 0 15px;
    font-size: 32px;
  }

  .line {
    margin-left: 15px;
    width: 90%;
  }

  .roleplay-description {
    position: relative;
    width: 95%;
    height: auto;
    top: auto;
    left: auto;
    margin: 30px auto;
    font-size: 14px;
    padding: 0 15px;
  }

  .discord-join {
    margin: 50px auto 0;
    text-align: center;
    font-size: 28px;
    width: 90%;
  }

  .discord-community {
    width: 95%;
    margin: 10px auto 0;
    text-align: center;
    font-size: 13px;
    padding: 0 15px;
  }

  .rectangle {
    width: 90%;
    max-width: 400px;
    height: 200px;
    margin: 20px auto 0;
  }

  .bg {
    width: 100%;
    height: 200px;
  }

  .discord {
    font-size: 28px;
    top: 80px;
  }

  .sikca-sorulan-sorular {
    margin: 40px auto 0;
    text-align: center;
    font-size: 28px;
    width: 90%;
  }

  .flex-row-fdf, .flex-row-aaf {
    flex-direction: column;
    width: 95%;
    height: auto;
    margin: 20px auto 0;
    gap: 20px;
  }

  .rectangle-3, .rectangle-4, .rectangle-5,
  .rectangle-6, .rectangle-7, .rectangle-8 {
    width: 100%;
    height: auto;
    min-height: 140px;
    padding: 20px 15px;
  }

  .sunucuya-nasil-katilabilirim,
  .yetkili-basvurulari-nereden-yapiliyor,
  .sunucuda-hangi-rol-kurallari-gecerli,
  .discord-question,
  .role-question,
  .support-question {
    margin: 0 0 10px 0;
    font-size: 13px;
  }

  .sunucumuzu-aratabilir-veya-discord-sunucumuza-katilarak-baglanti-bilgilerine-ulabilirsiniz,
  .yetkili-basvurulari-yalnizca-discord-sunucumuzda-paylasilan-basvuru-formu-uzerinden-alinmaktadir,
  .sunucumuzda-gerceklik-ve-rol-kalitesi-on-plandadir-tum-kurallar-discord-sunucusunda-detayli-olarak-paylasilmaktadir,
  .discord-answer,
  .role-answer,
  .support-answer {
    width: 100%;
    margin: 0;
    font-size: 11px;
    height: auto;
  }

  .line-9 {
    width: 90%;
    margin: 50px auto 0;
  }

  .flex-row {
    flex-direction: column;
    width: 95%;
    margin: 20px auto 0;
    height: auto;
    gap: 10px;
    text-align: center;
  }

  .sub-menu, .copyright {
    width: 100%;
    text-align: center;
    font-size: 10px;
    justify-content: center;
  }

  .bg-a {
    background-position: center;
  }
}

@media (max-width: 480px) {
  .xentra-v {
    font-size: 18px;
  }

  .roleplay {
    font-size: 10px;
  }

  .nav-link {
    font-size: 12px;
  }

  .text-a, .text-e, .whitelist-form {
    font-size: 24px;
  }

  .discord-join {
    font-size: 24px;
  }

  .sikca-sorulan-sorular {
    font-size: 24px;
  }

  .about-us {
    font-size: 28px;
  }
}
