@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oxanium:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --title-font: "Oxanium", Helvetica, Arial, sans-serif;
  --body-font: "Manrope", Helvetica, Arial, sans-serif;
  --body-font-weight: 500;
  --border-default: solid 1px rgba(30, 30, 30, 1);
  --bg-color-even: #E8E8E8;
  --bg-color-odd: #F4F4F4;
  --bg-dark-1: #010314;
  --bg-dark-1-rgb: 1, 3, 20;
  --bg-dark-2: #0F101E;
  --bg-dark-3: #303030;
  --body-font-color: #4C5671;
  --dark-body-font-color: #92939e;
  --swiper-theme-color: var(--secondary-color);
}

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

html {
  overflow-x: hidden;
  background: var(--bg-dark-1);
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-font-weight);
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-font-color);
  background: var(--bg-dark-1);
}

a, a:hover {
  text-decoration: none;
  color: inherit;
}

body,
button,
input,
textarea,
select {
  font-family: var(--body-font) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--body-font) !important;
}

a,
.btn-main,
.menu-item,
.subtitle,
.slider-title,
.slider-text {
  font-family: var(--body-font) !important;
}

section {
  padding: 5px 0;
}

#content {
  padding-top: 5px;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: transparent;
  transition: all 0.3s ease;
}
#header.full-header {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
#header #header-wrap {
  padding: 20px 0;
  transition: all 0.3s ease;
}
#header #header-wrap:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
#header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#header #logo {
  display: flex;
  align-items: center;
  height: 60px;
  margin-right: 2rem;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}
#header #logo a.standard-logo {
  display: block;
  height: 100%;
}
#header #logo a.standard-logo img,
#header #logo a.retina-logo img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
#header #logo a.standard-logo img:hover,
#header #logo a.retina-logo img:hover {
  transform: scale(1.05);
}
#header #primary-menu {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
}
#header #primary-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
#header #primary-menu ul li {
  position: relative;
  margin-left: 1.5rem;
}
#header #primary-menu ul li.current > a > div {
  color: #00c3ff;
  position: relative;
}
#header #primary-menu ul li.current > a > div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #00c3ff;
  transform: scaleX(1);
}
#header #primary-menu ul li a > div {
  position: relative;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
#header #primary-menu ul li a > div::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #00c3ff;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
}
#header #primary-menu ul li a > div:hover {
  color: #00c3ff;
}
#header #primary-menu ul li a > div:hover::after {
  transform: scaleX(1);
}
#header #primary-menu ul li.submenu:hover > ul {
  display: block;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
#header #primary-menu ul li.submenu ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#header #primary-menu ul li.submenu ul li {
  margin: 0;
}
#header #primary-menu ul li.submenu ul li a > div {
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
}
#header #primary-menu ul li.submenu ul li a > div::after {
  display: none;
}
#header #primary-menu ul li.submenu ul li:hover > a > div {
  background: rgba(0, 195, 255, 0.1);
}
#header #primary-menu #primary-menu-trigger {
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#header #primary-menu #primary-menu-trigger i {
  font-size: 1.5rem;
  color: #fff;
}
#header #primary-menu #primary-menu-trigger:hover i {
  color: #00c3ff;
}
#header #top-tools {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
#header #top-tools #header-search-trigger {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
#header #top-tools #header-search-trigger:hover {
  color: #00c3ff;
}
#header #top-tools #header-search {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.75rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
#header #top-tools #header-search form input.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: all 0.3s ease;
}
#header #top-tools #header-search form input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#header #top-tools #header-search form input.form-control:focus {
  border-color: #00c3ff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 195, 255, 0.3);
}
#header #top-tools #header-search-trigger.active + #header-search {
  display: block;
}

@media (max-width: 992px) {
  #header .header-row {
    justify-content: space-between;
  }
  #header #logo {
    margin-right: 1rem;
  }
  #header #primary-menu {
    flex: 0 1 auto;
  }
  #header #primary-menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  #header #primary-menu ul li {
    margin: 0;
  }
  #header #primary-menu ul li a > div {
    padding: 0.75rem 1.5rem;
  }
  #header #primary-menu ul li a > div::after {
    display: none;
  }
  #header #primary-menu ul li.submenu ul {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding-left: 2rem;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  #header #primary-menu #primary-menu-trigger {
    display: block;
  }
}
@media (max-width: 576px) {
  #header #logo {
    height: 50px;
  }
}
#header #logo a.standard-logo img {
  transition: transform 0.2s;
}

#header #logo a.standard-logo img:hover {
  transform: scale(1.08);
}

/* =========================================
   1) Caption (sw-caption) konum ayarı
   ========================================= */
/* =========================================
   1) Caption (sw-caption) konum ayarı
   ========================================= */
#swiper-s2 .sw-caption.s2 {
  position: absolute;
  /* --- Dikeyde %71 noktasına yerleştiriyoruz --- */
  top: 65% !important;
  /* --- Yatayda %45 noktasına (orta + sola kaydırma) --- */
  left: 35% !important;
  /* --- 
       translateX(-45%) 
         → soldaki left:45% değerinin yarısıyla (yani içeriği tam ortalamak için) 
       translateY(-60%) 
         → top:71% değerinin yaklaşık yarısını (71/2≈35 dese de biraz yukarı çekmek için %60) 
     ikisini aynı anda uyguluyoruz 
  --- */
  transform: translate(-45%, -45%) !important;
  width: auto; /* kapsayıcının genişliğini içeriğe bırakıyoruz */
  z-index: 1; /* diğer öğelerin üstünde kalması için */
}

/* =========================================
   2) Caption-Panel Container
   ========================================= */
#swiper-s2 .sw-caption.s2 .caption-panel {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(32, 40, 60, 0.55) 100%);
  backdrop-filter: blur(18px) saturate(1.2);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  border-radius: 2.5rem 1.5rem 2.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), 0 1.5px 8px rgba(0, 195, 255, 0.08);
  border: 1.5px solid rgba(0, 195, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  transition: background 0.3s, box-shadow 0.3s;
}

/* =========================================
   3) Başlık ve Açıklama Metni
   ========================================= */
#swiper-s2 .caption-panel .slider-title {
  font-size: 2.5rem !important; /* Başlık boyutu */
  line-height: 1.2 !important; /* Satır yüksekliği */
  color: #00c3ff; /* Altın sarısı rengi */
  text-shadow: 0 2px 16px rgba(0, 195, 255, 0.18), 0 1px 2px #000;
}

#swiper-s2 .caption-panel .slider-text {
  font-size: 1rem !important; /* Paragraf metni boyutu */
  line-height: 1.5 !important; /* Satır yüksekliği */
  color: #DDDDDD; /* Açık gri metin rengi */
}

/* =========================================
   4) Bilgi Kartları (Info Cards)
   ========================================= */
/* Kartları yatayda yan yana dizer */
#swiper-s2 .caption-panel .info-cards {
  display: flex; /* Flex konteyner */
  justify-content: space-between; /* Eşit boşluk bırak */
  gap: 1rem; /* Kartlar arası boşluk */
}

/* Ortak kart stili */
#swiper-s2 .caption-panel .info-card {
  flex: 1 1 calc(50% - 0.5rem);
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.13) 0%, rgba(0, 195, 255, 0.1) 100%);
  border-radius: 1.25rem;
  border: 1.2px solid rgba(0, 195, 255, 0.13);
  box-shadow: 0 2px 12px rgba(0, 195, 255, 0.07), 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 0.85rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  backdrop-filter: blur(6px) saturate(1.1);
}

/* Kart içindeki ikon ve metin arası boşluk */
#swiper-s2 .caption-panel .info-card i {
  font-size: 2rem; /* İkon boyutu */
  color: #FFF; /* Beyaz ikon rengi */
  margin-right: 0.75rem; /* İkon ile metin arası boşluk */
}

/* "249/500" gibi sayı kartındaki stil */
#swiper-s2 .caption-panel .info-card.online .count {
  font-size: 1.5rem; /* Sayı boyutu */
  font-weight: 700; /* Kalın metin */
  color: #00c3ff; /* Altın sarısı */
}

/* Sunucu kartının iç metinlerini dikey istifler */
#swiper-s2 .caption-panel .info-card.server .details {
  display: flex;
  flex-direction: column;
}

/* Sunucu adı */
#swiper-s2 .caption-panel .info-card.server .title {
  font-size: 1rem; /* Metin boyutu */
  font-weight: 700; /* Kalın */
  color: #FFF; /* Beyaz */
}

/* Sunucu adresi alttaki metin */
#swiper-s2 .caption-panel .info-card.server .sub {
  font-size: 0.9rem; /* Biraz daha küçük metin */
  font-weight: 700; /* Kalın */
  color: #00c3ff; /* Altın sarısı */
}

/* =========================================
   5) Çağrı (CTA) Butonu
   ========================================= */
#swiper-s2 .caption-panel .btn-main {
  align-self: flex-start; /* Panel içinde sola hizala */
  padding: 0.75rem 1.5rem !important; /* Buton iç boşluğu */
  font-size: 1rem !important; /* Buton yazı boyutu */
  background: linear-gradient(90deg, #663AFF 0%, #00c3ff 100%);
  color: #FFF !important; /* Beyaz yazı */
  border-radius: 0.5rem; /* Buton köşeleri yuvarlak */
  box-shadow: 0 2px 12px rgba(102, 58, 255, 0.18);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

#swiper-s2 .caption-panel .btn-main:hover {
  background: linear-gradient(90deg, #00c3ff 0%, #663AFF 100%);
  box-shadow: 0 4px 24px 0 rgba(0, 195, 255, 0.2666666667), 0 2px 12px rgba(102, 58, 255, 0.2666666667);
  transform: translateY(-2px) scale(1.04);
}

/* -----------------------------------------
   0) Arkaplana hafif karartma + blur katmanı
-------------------------------------------*/
/*  .gallery-top .swiper-slide içindeki resmi
    biraz kararır ve çok hafif bulanıklaşır. */
#swiper-s2 .gallery-top .swiper-slide {
  position: relative; /* pseudo-element kapsayıcı olması için */
  overflow: hidden;
  transition: filter 0.5s, transform 2.2s cubic-bezier(0.22, 0.68, 0.53, 1.01);
  filter: brightness(0.92) saturate(1.1);
}

/* overlay katmanı: rgba ile film gibi karartma, 
   backdrop-filter ile altı çok hafif flu yapıyoruz */
#swiper-s2 .gallery-top .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* %20 karartma */
  backdrop-filter: blur(1px); /* 2px'lik çok hafif bulanık */
  z-index: 0; /* caption'ın altında kalacak */
  pointer-events: none; /* fare tıklamalarını geçsin */
}

/* caption içeriği overlay'in üstünde gözüksün */
#swiper-s2 .gallery-top .swiper-slide .sw-caption {
  z-index: 1 !important;
}

#swiper-s2 .gallery-top .swiper-slide img {
  transition: transform 2.2s cubic-bezier(0.22, 0.68, 0.53, 1.01), filter 0.5s;
  filter: brightness(0.92) saturate(1.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#swiper-s2 .gallery-top .swiper-slide.swiper-slide-active {
  transform: scale(1.07);
  filter: brightness(1.05) saturate(1.22);
}

@media (hover: hover) and (pointer: fine) {
  #swiper-s2 .gallery-top .swiper-slide.swiper-slide-active:hover {
    filter: brightness(1.12) saturate(1.28);
    transform: scale(1.11);
  }
}
#swiper-s2 .caption-panel .info-card:hover {
  box-shadow: 0 6px 24px 0 rgba(0, 195, 255, 0.2), 0 2px 8px rgba(255, 255, 255, 0.1333333333);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(0, 195, 255, 0.16) 100%);
  border-color: rgba(0, 195, 255, 0.3333333333);
  transform: translateY(-4px) scale(1.045);
  filter: brightness(1.08);
}

.requirements-section {
  width: 100%;
  padding: 64px 0 50px 0;
  background: linear-gradient(120deg, #161a24 60%, #222b40 100%), url("/images/bg-pattern.png") repeat;
}
.requirements-section .requirements-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.requirements-section .feature-box {
  position: relative;
  background: rgba(15, 18, 30, 0.96);
  border-radius: 18px;
  min-width: 230px;
  max-width: 265px;
  padding: 32px 18px 24px 18px;
  box-shadow: 0 4px 22px 0 rgba(33, 241, 244, 0.1), 0 1.5px 14px 0 #10101a;
  transition: box-shadow 0.21s, transform 0.19s;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 13px;
  border-top: 3px solid #25d3e7;
}
.requirements-section .feature-box .step-number {
  position: absolute;
  top: 12px;
  left: 13px;
  background: #22283a;
  color: #3ee2fc;
  font-size: 0.95rem;
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.04em;
  z-index: 2;
  pointer-events: none;
}
.requirements-section .feature-box .icon-bg {
  background: rgba(40, 255, 255, 0.13);
  border-radius: 50%;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px 0 rgba(40, 255, 255, 0.18);
  margin-right: 8px;
}
.requirements-section .feature-box .icon-bg img {
  width: 30px;
  height: 30px;
  display: block;
  filter: drop-shadow(0 2px 7px rgba(24, 250, 255, 0.4));
}
.requirements-section .feature-box .feature-header {
  font-size: 1.11rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.requirements-section .feature-box .feature-desc {
  font-size: 0.98rem;
  color: #cbe7f7;
  opacity: 0.9;
  line-height: 1.6;
  margin-top: 2px;
}
.requirements-section .feature-box:hover {
  box-shadow: 0 7px 32px 0 rgba(30, 238, 255, 0.2666666667), 0 3px 16px 0 #10101a;
  transform: translateY(-6px) scale(1.04);
  border-top: 3.2px solid #39f4a5;
}

:root {
  --grid-card-bg: rgba(15,20,30,0.4);
  --card-hover-bg: rgba(20,25,35,0.6);
  --card-active-bg: rgba(25,30,40,0.8);
  --card-border: rgba(255,255,255,0.1);
  --card-hover-border: rgba(255,255,255,0.2);
  --card-shadow: 0 8px 32px rgba(0,0,0,0.3);
  --card-hover-shadow: 0 16px 48px rgba(0,0,0,0.4);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-grid-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url('/images/background/interactivebg.webp') no-repeat center center !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}
.interactive-grid-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.interactive-grid-section .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem 2rem;
}
.interactive-grid-section .section-header {
  text-align: center;
  margin: 0 0 3rem 0;
  position: relative;
  z-index: 3;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.interactive-grid-section .section-header .section-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(91, 155, 213, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
  text-shadow: 0 0 20px rgba(91, 155, 213, 0.5);
}
.interactive-grid-section .section-header .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff !important;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.interactive-grid-section .section-header .section-title span {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}
.interactive-grid-section .section-header .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7) !important;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.interactive-grid-section .section-header .subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.interactive-grid-section .section-header .description {
  font-size: 1.1rem;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .interactive-grid-section .section-header .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .interactive-grid-section .section-header {
    margin-bottom: 3rem;
  }
  .interactive-grid-section .section-header .section-title {
    font-size: 2.5rem;
  }
  .interactive-grid-section .section-header .section-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}
.interactive-grid-section .grid-cards {
  margin-top: 0.5rem;
  display: flex;
  min-height: 500px;
  gap: 1.5rem;
  align-items: stretch;
  perspective: 1000px;
}
.interactive-grid-section .grid-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--grid-card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.interactive-grid-section .grid-card:focus-visible {
  outline: 3px solid rgba(91, 155, 213, 0.5);
  outline-offset: 2px;
}
.interactive-grid-section .grid-card:hover:not(.active) {
  transform: translateY(-5px);
}
.interactive-grid-section .grid-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.interactive-grid-section .grid-card:hover .card-bg, .interactive-grid-section .grid-card.active .card-bg {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.interactive-grid-section .grid-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  color: #fff;
  transform: translateY(30%);
  opacity: 0;
  transition: all 0.4s ease;
}
.interactive-grid-section .grid-card .card-overlay .card-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.interactive-grid-section .grid-card .card-overlay .card-header .card-icon {
  font-size: 1.5rem;
  opacity: 0.9;
}
.interactive-grid-section .grid-card .card-overlay .card-header .card-title-group h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.interactive-grid-section .grid-card .card-overlay .card-header .card-title-group p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.interactive-grid-section .grid-card .card-overlay .card-description p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}
.interactive-grid-section .grid-card .card-overlay .card-description p.details {
  display: none;
  font-size: 0.95rem;
  opacity: 0.8;
}
.interactive-grid-section .grid-card .card-overlay .card-description .btn-details {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(91, 155, 213, 0.9);
  border: none;
  border-radius: 2rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.interactive-grid-section .grid-card .card-overlay .card-description .btn-details:hover {
  background: rgb(91, 155, 213);
  transform: translateY(-2px);
}
.interactive-grid-section .grid-card .card-overlay .card-description .btn-details::after {
  content: "→";
  transition: transform 0.3s ease;
}
.interactive-grid-section .grid-card .card-overlay .card-description .btn-details:hover::after {
  transform: translateX(4px);
}
.interactive-grid-section .grid-card:hover .card-overlay, .interactive-grid-section .grid-card.active .card-overlay {
  transform: translateY(0);
  opacity: 1;
}
.interactive-grid-section .grid-card.active {
  flex: 2;
  transform: translateZ(10px);
}
.interactive-grid-section .grid-card.active .card-bg {
  transform: scale(1.05);
  filter: brightness(0.3);
}
.interactive-grid-section .grid-card.active .card-description p.details {
  display: block;
}
.grid-cards:has(.active) .interactive-grid-section .grid-card:not(.active) {
  flex: 0.75;
  filter: brightness(0.7);
  transform: scale(0.98);
}
@media (max-width: 1200px) {
  .interactive-grid-section .grid-cards {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .interactive-grid-section .grid-card {
    flex: 1 1 calc(50% - 1rem);
    min-height: 400px;
  }
  .interactive-grid-section .grid-card.active {
    flex: 1 1 100%;
  }
  .interactive-grid-section .grid-card.active .card-details {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .interactive-grid-section .container {
    padding: 2rem 1rem;
  }
  .interactive-grid-section .grid-cards {
    gap: 1rem;
  }
  .interactive-grid-section .grid-card {
    flex: 1 1 100%;
    min-height: 350px;
  }
  .interactive-grid-section .grid-card.active .card-details {
    position: relative;
    width: 100%;
    right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    margin-top: 1rem;
  }
  .interactive-grid-section .grid-card .card-overlay {
    padding: 1.5rem;
  }
  .interactive-grid-section .grid-card .card-overlay h3 {
    font-size: 1.5rem;
  }
}

#cta-3col {
  background-color: #0F101E;
  padding: 80px 0;
  text-align: center;
}
#cta-3col .row {
  justify-content: center;
}
#cta-3col .cta-box {
  padding: 0 1rem;
  margin-bottom: 2rem;
}
#cta-3col .cta-box h3 {
  color: #fff;
}
#cta-3col .cta-box p {
  color: #ccc;
}
#cta-3col .cta-box .btn-main {
  background: var(--swiper-theme-color);
  /* … */
}

.download-app .padding60 {
  padding: 60px;
}
@media (max-width: 768px) {
  .download-app .sm-padding40 {
    padding: 40px;
  }
}
.download-app .jarallax {
  position: relative;
  overflow: hidden;
}
.download-app .jarallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download-app .subtitle {
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
}
.download-app h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.download-app p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.download-app a {
  display: inline-block;
}
.download-app a img.img-fluid {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.download-app .position-absolute {
  position: absolute !important;
}
.download-app .bottom-0 {
  bottom: 0 !important;
}
.download-app .end-0 {
  right: 0 !important;
}

:root {
  --faq-accent: #00c3ff;
  --faq-bg: rgba(0, 0, 0, 0.5);
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.12);
  --text-light: #F5F5F5;
  --text-muted: rgba(255, 255, 255, 0.7);
}

#faq {
  position: relative;
  background: url("/images/fivembg.png") no-repeat center -50px;
  background-size: cover;
  padding: 4rem 0;
  overflow: hidden;
}
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--faq-bg);
  z-index: 1;
}
#faq .container {
  position: relative;
  z-index: 2;
}
#faq .subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--faq-accent);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
#faq .section-title {
  font-size: 2.25rem;
  color: var(--text-light);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
#faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
#faq .faq-item {
  background: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}
#faq .faq-item:hover {
  background: var(--card-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}
#faq .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}
#faq .faq-item .faq-question::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  height: 3px;
  width: calc(100% - 2.5rem);
  background: var(--faq-accent);
}
#faq .faq-item .faq-question i {
  transition: transform 0.3s;
  color: var(--faq-accent);
  font-size: 1.2rem;
}
#faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
#faq .faq-item .faq-answer p {
  margin: 1rem 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
#faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
#faq .faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.25rem 1rem;
}
@media (max-width: 800px) {
  #faq .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #faq .faq-item {
    border-radius: 0.75rem;
  }
  #faq .faq-item .faq-question {
    padding: 0.75rem 1rem;
  }
  #faq .faq-item .faq-question::after {
    left: 1rem;
    width: calc(100% - 2rem);
  }
  #faq .faq-item .faq-answer {
    padding: 0 1rem;
  }
}

#payments .subtitle {
  margin-bottom: 1rem;
}
#payments h2 {
  margin-bottom: 1.5rem;
}
#payments .row.g-4 {
  gap: 1.5rem;
}
#payments .p-2 {
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
}
#payments .rounded-10 {
  border-radius: 10px;
  /* Eğer eski tarayıcılar için prefix isterseniz aşağıyı açabilirsiniz:
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  */
}
#payments img.img-fluid {
  max-width: 100%;
  height: auto;
}

html, body {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.login-steps {
  background: url("/images/background/4.webp") no-repeat center -50px !important;
  background-size: cover !important;
  padding: 4rem 0 !important;
  min-height: 600px !important;
  position: relative;
}
.login-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.login-steps .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.login-steps .main-header {
  text-align: center;
  margin-bottom: 3rem;
}
.login-steps .main-header .section-number {
  font-size: 1.1rem;
  font-weight: 500;
  color: #5B9BD5;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(91, 155, 213, 0.5);
}
.login-steps .main-header .main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.login-steps .main-header .subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.login-steps .main-header .description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
  .login-steps .main-header .main-title {
    font-size: 3.5rem;
  }
  .login-steps .main-header .subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .login-steps .main-header {
    margin-bottom: 3rem;
  }
  .login-steps .main-header .main-title {
    font-size: 2.5rem;
  }
  .login-steps .main-header .subtitle {
    font-size: 1.25rem;
  }
  .login-steps .main-header .description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}
.login-steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 1200px) {
  .login-steps .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .login-steps .steps-grid {
    grid-template-columns: 1fr;
  }
}
.login-steps .step-card {
  background: rgba(15, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.login-steps .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 195, 255, 0.3);
}
.login-steps .step-card .step-header {
  padding: 2rem;
}
.login-steps .step-card .step-header .step-number {
  color: #00c3ff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.login-steps .step-card .step-header .step-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.login-steps .step-card .step-subtitle {
  padding: 0 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.login-steps .step-card .step-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.login-steps .step-card .step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.login-steps .step-card .step-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.login-steps .step-card .step-links {
  padding: 2rem;
}
.login-steps .step-card .step-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-steps .step-card .step-links a {
  display: block;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 195, 255, 0.1);
  border: 1px solid rgba(0, 195, 255, 0.2);
  border-radius: 0.5rem;
  color: #00c3ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.login-steps .step-card .step-links a:hover {
  background: #00c3ff;
  color: #000;
  transform: translateX(5px);
}

.login-section {
  position: relative;
  min-height: 100vh;
  background: url("/images/bg/bg2.webp") no-repeat center center !important;
  background-size: cover !important;
  overflow: hidden;
}
.login-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
.login-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 4rem 2rem;
}
.login-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.login-section .section-header .section-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(91, 155, 213, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 0 20px rgba(91, 155, 213, 0.5);
}
.login-section .section-header .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-section .section-header .section-title span {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}
.login-section .section-header .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
  .login-section .section-header .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .login-section .section-header {
    margin-bottom: 3rem;
  }
  .login-section .section-header .section-title {
    font-size: 2.5rem;
  }
  .login-section .section-header .section-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

:root {
  --theme-speed: linear-gradient(135deg, #ff6b6b, #ee5253);
  --theme-tech: linear-gradient(135deg, #48dbfb, #0abde3);
  --theme-support: linear-gradient(135deg, #1dd1a1, #10ac84);
  --theme-social: linear-gradient(135deg, #ff9f43, #ee5253);
  --theme-fun: linear-gradient(135deg, #a55eea, #8854d0);
  --theme-money: linear-gradient(135deg, #ffd32a, #f0932b);
  --theme-shield: linear-gradient(135deg, #00d2d3, #01a3a4);
  --theme-update: linear-gradient(135deg, #ff9ff3, #f368e0);
  --theme-custom: linear-gradient(135deg, #00b894, #00cec9);
}

#welcome-verse {
  position: relative;
  padding: 4rem 0;
  background: url("/images/background/5.webp") no-repeat center center;
  background-size: cover;
  min-height: 90vh;
}
#welcome-verse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85));
  z-index: 1;
}
#welcome-verse .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
#welcome-verse .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#welcome-verse .section-header .section-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(91, 155, 213, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
  text-shadow: 0 0 20px rgba(91, 155, 213, 0.5);
}
#welcome-verse .section-header .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#welcome-verse .section-header .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
  #welcome-verse .section-header .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  #welcome-verse .section-header {
    margin-bottom: 2rem;
  }
  #welcome-verse .section-header .section-title {
    font-size: 2.5rem;
  }
  #welcome-verse .section-header .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
#welcome-verse .welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
#welcome-verse .welcome-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#welcome-verse .welcome-visual {
  position: relative;
}
#welcome-verse .welcome-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(var(--accent-color-rgb), 0.1), transparent 70%);
  z-index: -1;
}
#welcome-verse .welcome-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  display: block;
}
#welcome-verse .feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 20, 30, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
#welcome-verse .feature-box {
  background: rgba(30, 30, 40, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#welcome-verse .feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}
#welcome-verse .feature-box.theme-speed::before {
  background: var(--theme-speed);
}
#welcome-verse .feature-box.theme-tech::before {
  background: var(--theme-tech);
}
#welcome-verse .feature-box.theme-support::before {
  background: var(--theme-support);
}
#welcome-verse .feature-box.theme-social::before {
  background: var(--theme-social);
}
#welcome-verse .feature-box.theme-fun::before {
  background: var(--theme-fun);
}
#welcome-verse .feature-box.theme-money::before {
  background: var(--theme-money);
}
#welcome-verse .feature-box.theme-shield::before {
  background: var(--theme-shield);
}
#welcome-verse .feature-box.theme-update::before {
  background: var(--theme-update);
}
#welcome-verse .feature-box.theme-custom::before {
  background: var(--theme-custom);
}
#welcome-verse .feature-box:hover {
  transform: translateY(-5px);
  background: rgba(40, 40, 50, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
#welcome-verse .feature-box:hover::before {
  height: 100%;
  opacity: 0.1;
}
#welcome-verse .feature-box:hover .feature-icon {
  transform: scale(1.1);
}
#welcome-verse .feature-box.active {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
#welcome-verse .feature-box.active::before {
  height: 100%;
  opacity: 0.2;
}
#welcome-verse .feature-box .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
#welcome-verse .feature-box h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
#welcome-verse .welcome-right {
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#welcome-verse .feature-content {
  position: relative;
  height: 100%;
}
#welcome-verse .feature-banner {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
#welcome-verse .feature-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}
#welcome-verse .feature-banner h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}
#welcome-verse .optimization-banner {
  background-image: url("https://images.unsplash.com/photo-1563089145-599997674d42?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .mods-banner {
  background-image: url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .support-banner {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .community-banner {
  background-image: url("https://images.unsplash.com/photo-1511882150382-421056c89033?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .events-banner {
  background-image: url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .economy-banner {
  background-image: url("https://images.unsplash.com/photo-1565514020179-026b92b2d0b5?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .security-banner {
  background-image: url("https://images.unsplash.com/photo-1555949963-ff9fe0c870eb?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .updates-banner {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .custom-banner {
  background-image: url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1200&q=80");
}
#welcome-verse .default-banner {
  background-image: linear-gradient(135deg, #2c3e50, #3498db);
  min-height: 150px;
}
#welcome-verse .feature-details {
  padding: 2.5rem;
  flex-grow: 1;
  background: rgba(15, 20, 30, 0.95);
}
#welcome-verse .feature-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
#welcome-verse .feature-details ul li {
  position: relative;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent-color);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
#welcome-verse .feature-details ul li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
  color: #fff;
}
#welcome-verse .feature-details ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#welcome-verse .feature-details ul li:hover::before {
  opacity: 1;
}
#welcome-verse .feature-details ul li::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
  opacity: 0.5;
}
.feature-detail[data-feature=optimization] #welcome-verse .feature-details li {
  --accent-color: #ff6b6b;
}
.feature-detail[data-feature=mods] #welcome-verse .feature-details li {
  --accent-color: #48dbfb;
}
.feature-detail[data-feature=support] #welcome-verse .feature-details li {
  --accent-color: #1dd1a1;
}
.feature-detail[data-feature=community] #welcome-verse .feature-details li {
  --accent-color: #ff9f43;
}
.feature-detail[data-feature=events] #welcome-verse .feature-details li {
  --accent-color: #a55eea;
}
.feature-detail[data-feature=economy] #welcome-verse .feature-details li {
  --accent-color: #ffd32a;
}
.feature-detail[data-feature=security] #welcome-verse .feature-details li {
  --accent-color: #00d2d3;
}
.feature-detail[data-feature=updates] #welcome-verse .feature-details li {
  --accent-color: #ff9ff3;
}
.feature-detail[data-feature=customization] #welcome-verse .feature-details li {
  --accent-color: #00b894;
}
#welcome-verse .feature-default,
#welcome-verse .feature-detail {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
#welcome-verse .feature-default.active,
#welcome-verse .feature-detail.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
@media (max-width: 1200px) {
  #welcome-verse {
    padding: 4rem 0;
  }
  #welcome-verse .container {
    padding: 0 2rem;
  }
  #welcome-verse .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #welcome-verse .feature-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  #welcome-verse .container {
    padding: 0 1.5rem;
  }
  #welcome-verse .welcome-title {
    font-size: 2.5rem;
  }
  #welcome-verse .welcome-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  #welcome-verse .feature-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  #welcome-verse .welcome-right {
    padding: 1.5rem;
  }
  #welcome-verse .feature-detail h3 {
    font-size: 1.5rem;
  }
}

.roleplay-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url('/images/background/interactivebg.webp') no-repeat center center !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}
.roleplay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.roleplay-section .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem 2rem;
}
.roleplay-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.roleplay-section .section-header .section-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(91, 155, 213, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
  text-shadow: 0 0 20px rgba(91, 155, 213, 0.5);
}
.roleplay-section .section-header .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff !important;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.roleplay-section .section-header .section-title span {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}
.roleplay-section .section-header .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
  #welcome-verse .section-header .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  #welcome-verse .section-header {
    margin-bottom: 2rem;
  }
  #welcome-verse .section-header .section-title {
    font-size: 2.5rem;
  }
  #welcome-verse .section-header .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
