/* ========================= */
/* IMAGE CYCLE / SLIDER */
/* ========================= */

.image-cycle {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 34px auto 0;
  z-index: 2;
}

.cycle-image-wrap {
  position: relative;
  height: 520px;

  overflow: hidden;
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.55),
    0 0 38px rgba(88, 101, 242, 0.16),
    inset 0 0 22px rgba(255, 255, 255, 0.03);
}

.cycle-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition:
    opacity 0.35s ease,
    transform 0.6s ease,
    filter 0.6s ease;
}

.cycle-image-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.cycle-image-wrap.fade img {
  opacity: 0;
}

.cycle-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 38px;

  text-align: left;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.55),
      transparent
    );
}

.cycle-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;

  border-radius: 999px;

  background: rgba(88, 101, 242, 0.22);
  border: 1px solid rgba(129, 140, 248, 0.45);

  color: #c7d2fe;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cycle-overlay h4 {
  margin: 0 0 10px;

  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cycle-overlay p {
  max-width: 650px;
  margin: 0;

  color: #d1d5db;
  font-size: 1.02rem;
  line-height: 1.6;
}

.cycle-btn {
  position: absolute;
  top: 50%;

  width: 54px;
  height: 54px;

  transform: translateY(-50%);

  border: none;
  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #5865f2,
      #8b5cf6
    );

  color: white;

  font-size: 38px;
  line-height: 1;

  cursor: pointer;
  z-index: 5;

  box-shadow:
    0 0 25px rgba(88, 101, 242, 0.45),
    0 12px 28px rgba(0, 0, 0, 0.45);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.cycle-btn:hover {
  transform: translateY(-50%) scale(1.08);

  box-shadow:
    0 0 40px rgba(88, 101, 242, 0.7),
    0 16px 36px rgba(0, 0, 0, 0.55);
}

.cycle-prev {
  left: -27px;
}

.cycle-next {
  right: -27px;
}

.cycle-dots {
  display: flex;
  justify-content: center;
  gap: 10px;

  margin-top: 22px;
}

.cycle-dot {
  width: 11px;
  height: 11px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.cycle-dot.active {
  background: #5865f2;

  transform: scale(1.35);

  box-shadow:
    0 0 16px rgba(88, 101, 242, 0.8);
}

@media (max-width: 900px) {
  .cycle-image-wrap {
    height: 360px;
  }

  .cycle-overlay {
    padding: 26px;
  }

  .cycle-btn {
    width: 46px;
    height: 46px;

    font-size: 32px;
  }

  .cycle-prev {
    left: 10px;
  }

  .cycle-next {
    right: 10px;
  }
}

@media (max-width: 550px) {
  .cycle-image-wrap {
    height: 300px;
  }

  .cycle-overlay {
    padding: 22px;
  }

  .cycle-overlay p {
    font-size: 0.9rem;
  }
}

/* ========================= */
/* SCROLL ARROW BUTTON */
/* ========================= */

.scroll-arrow {
  position: fixed;
  right: 28px;
  bottom: 28px;

  width: 54px;
  height: 54px;

  border: none;
  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #5865f2,
      #8b5cf6
    );

  color: white;

  font-size: 28px;
  font-weight: 900;

  cursor: pointer;

  z-index: 2000;

  box-shadow:
    0 0 25px rgba(88, 101, 242, 0.45),
    0 12px 30px rgba(0, 0, 0, 0.45);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.scroll-arrow:hover {
  transform: translateY(-5px) scale(1.08);

  box-shadow:
    0 0 40px rgba(88, 101, 242, 0.75),
    0 16px 40px rgba(0, 0, 0, 0.55);
}

.scroll-arrow.hide {
  opacity: 0;
  pointer-events: none;
}

.scroll-arrow.bounce {
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .scroll-arrow {
    right: 18px;
    bottom: 18px;

    width: 48px;
    height: 48px;

    font-size: 24px;
  }
}

/* ========================= */
/* PICTURE BOX / GALLERY */
/* ========================= */

.gallery-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
}
.gallery-section {
  padding-top: 35px;
  padding-bottom: 70px;
}

.gallery-card {
  width: min(1150px, 100%);
  padding: 42px;
  border-radius: 28px;

  background:
    radial-gradient(
      circle at top,
      rgba(88, 101, 242, 0.22),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      rgba(15, 15, 25, 0.96),
      rgba(5, 5, 10, 0.94)
    );

  border: 1px solid rgba(88, 101, 242, 0.35);

  box-shadow:
    0 0 45px rgba(88, 101, 242, 0.16),
    0 18px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 25px rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(16px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.06),
      transparent
    );

  transform: translateX(-100%);
  animation: galleryShine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes galleryShine {
  0% {
    transform: translateX(-100%);
  }

  45% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.gallery-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 9px 18px;

  border-radius: 999px;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(129, 140, 248, 0.5);

  color: #c7d2fe;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  box-shadow:
    0 0 18px rgba(88, 101, 242, 0.35);
}

.gallery-card h3 {
  margin-bottom: 14px;

  color: white;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-card > p {
  max-width: 720px;
  margin: 0 auto 34px;

  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.7;
}

.picture-box {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.picture-main,
.picture-small {
  position: relative;
  overflow: hidden;

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.04);

  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.45),
    inset 0 0 18px rgba(255, 255, 255, 0.03);

  cursor: pointer;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.picture-main {
  min-height: 460px;
}

.picture-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}

.picture-small {
  min-height: 140px;
}

.picture-main img,
.picture-small img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.picture-main:hover,
.picture-small:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.5);

  box-shadow:
    0 0 35px rgba(88, 101, 242, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.55);
}

.picture-main:hover img,
.picture-small:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.picture-overlay {
  position: absolute;
  inset: auto 0 0 0;

  padding: 24px;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.45),
      transparent
    );

  text-align: left;
}

.picture-overlay h4 {
  margin: 0 0 6px;

  color: white;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.picture-overlay p {
  margin: 0;

  color: #c7d2fe;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ========================= */
/* MOBILE GALLERY */
/* ========================= */

@media (max-width: 900px) {
  .gallery-card {
    padding: 32px 20px;
  }

  .picture-box {
    grid-template-columns: 1fr;
  }

  .picture-main {
    min-height: 260px;
  }

  .picture-side {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }

  .picture-small {
    min-height: 210px;
  }

  .picture-main:hover,
  .picture-small:hover {
    transform: none;
  }
}

/* ========================= */
/* ACTIVE DEVELOPMENT NOTICE */
/* ========================= */

.dev-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
}

.dev-card {
  width: min(1050px, 100%);
  padding: 42px;
  border-radius: 28px;

  background:
    radial-gradient(
      circle at top,
      rgba(88, 101, 242, 0.24),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      rgba(15, 15, 25, 0.96),
      rgba(5, 5, 10, 0.94)
    );

  border: 1px solid rgba(88, 101, 242, 0.38);

  box-shadow:
    0 0 45px rgba(88, 101, 242, 0.18),
    0 18px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 25px rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(16px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dev-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.07),
      transparent
    );

  transform: translateX(-100%);
  animation: devShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes devShine {
  0% {
    transform: translateX(-100%);
  }

  45% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.dev-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 9px 18px;

  border-radius: 999px;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(129, 140, 248, 0.5);

  color: #c7d2fe;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  box-shadow:
    0 0 18px rgba(88, 101, 242, 0.35);
}

.dev-card h3 {
  margin-bottom: 16px;

  color: #ffffff;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dev-card > p {
  max-width: 820px;
  margin: 0 auto;

  color: #d1d5db;
  font-size: 1.08rem;
  line-height: 1.75;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  margin-top: 34px;
  margin-bottom: 30px;
}

.dev-item {
  padding: 24px 20px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.02);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.dev-item:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.45);

  box-shadow:
    0 0 24px rgba(88, 101, 242, 0.16),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.dev-item h4 {
  margin-bottom: 10px;

  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.dev-item p {
  color: #aeb6c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.dev-note {
  margin-top: 8px !important;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #a5b4fc !important;
  font-weight: 800;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 850px) {
  .dev-card {
    padding: 32px 22px;
  }

  .dev-grid {
    grid-template-columns: 1fr;
  }

  .dev-item:hover {
    transform: none;
  }
}

*{
  box-sizing:border-box;
}

body{

  margin:0;

  font-family:'Segoe UI',sans-serif;

  background:#05070f;

  color:white;

  overflow-x:hidden;
}

/* BACKGROUND */

.bg{

  position:fixed;

  inset:0;

  background:
    radial-gradient(
      circle at center,
      #111827 0%,
      #020617 100%
    );

  z-index:-3;
}

.glow{

  position:fixed;

  width:600px;
  height:600px;

  background:
    radial-gradient(
      circle,
      rgba(88,101,242,.22),
      transparent 60%
    );

  transform:
    translate(-50%,-50%);

  pointer-events:none;

  z-index:-2;
}

/* NAV */

nav{

  position:sticky;

  top:0;

  z-index:1000;

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:20px 60px;

  background:
    rgba(0,0,0,.4);

  backdrop-filter:blur(14px);

  border-bottom:
    1px solid rgba(255,255,255,.05);
}

nav h1{

  margin:0;

  font-size:22px;
}

.links{

  display:flex;

  gap:25px;
}

.links a{

  color:#aaa;

  text-decoration:none;

  transition:.3s;
}

.links a:hover{

  color:white;
}

/* COUNTDOWN */

.countdown-box{

  text-align:right;

  padding:10px 18px;

  border-radius:14px;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.06);

  backdrop-filter:blur(10px);

  box-shadow:
    0 0 25px rgba(88,101,242,.08);
}

.countdown-box p{

  margin:0 0 4px 0;

  font-size:11px;

  letter-spacing:1px;

  color:#8b93b7;

  text-transform:uppercase;
}

#countdown{

  font-size:16px;

  font-weight:700;

  background:
    linear-gradient(
      90deg,
      #5865f2,
      #8b5cf6
    );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

/* HERO */

.hero {
  min-height: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 90px 20px 45px;
}
.hero-content{

  width:100%;

  max-width:950px;

  display:flex;

  flex-direction:column;

  align-items:center;

  text-align:center;
}

.title{

  font-size:82px;

  font-weight:800;

  letter-spacing:5px;

  line-height:1;

  background:
    linear-gradient(
      90deg,
      #5865f2,
      #8b5cf6
    );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

  animation:fadeUp 1s ease;
}

.badge{

  margin-top:14px;

  background:#5865f2;

  color:black;

  padding:8px 18px;

  border-radius:999px;

  font-size:12px;

  font-weight:700;

  letter-spacing:1px;

  animation:fadeUp 1.2s ease;
}

.players{

  margin-top:18px;

  color:#a5b4fc;

  font-size:15px;

  animation:fadeUp 1.4s ease;
}

/* BUTTONS */

.buttons{

  display:flex;

  flex-wrap:wrap;

  justify-content:center;

  gap:14px;

  margin-top:42px;

  width:100%;

  animation:fadeUp 1.6s ease;
}

.btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  min-width:180px;

  padding:15px 28px;

  border-radius:14px;

  border:
    1px solid rgba(255,255,255,.08);

  background:
    rgba(255,255,255,.05);

  color:white;

  text-decoration:none;

  font-weight:600;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.btn:hover{

  transform:
    translateY(-3px);

  box-shadow:
    0 0 25px rgba(88,101,242,.28);
}

.btn.primary{

  background:#5865f2;

  border:none;
}

/* LAUNCH BUTTON */

.launch-btn{

  background:
    linear-gradient(
      135deg,
      #5865f2,
      #8b5cf6
    );

  border:none;

  position:relative;

  overflow:hidden;

  box-shadow:
    0 0 25px rgba(88,101,242,.25);
}

.launch-btn::before{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:120%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.16),
      transparent
    );

  transition:.8s;
}

.launch-btn:hover::before{

  left:120%;
}

.launch-btn:hover{

  transform:
    translateY(-3px)
    scale(1.03);

  box-shadow:
    0 0 40px rgba(88,101,242,.45);
}

/* DISCORD */



.discord-box{

  margin-top:22px;

  display:flex;

  align-items:center;

  justify-content:center;

  width:100%;

  max-width:420px;

  padding:18px 24px;

  border-radius:18px;

  text-decoration:none;

  background:
    linear-gradient(
      135deg,
      rgba(88,101,242,.18),
      rgba(139,92,246,.12)
    );

  border:
    1px solid rgba(255,255,255,.08);

  color:white;

  transition:.35s;

  backdrop-filter:blur(14px);

  box-shadow:
    0 0 30px rgba(88,101,242,.12);

  animation:fadeUp 1.8s ease;
}

.discord-box strong{

  display:block;

  font-size:16px;
}

.discord-box p{

  margin:6px 0 0;

  font-size:13px;

  color:#a5b4fc;
}

.discord-box:hover{

  transform:
    translateY(-4px)
    scale(1.02);

  box-shadow:
    0 0 35px rgba(88,101,242,.28);

  border-color:
    rgba(88,101,242,.4);
}

/* SECTIONS */

.section{

  max-width:900px;

  margin:auto;

  padding:100px 20px;

  text-align:center;

  opacity:0;

  transform:
    translateY(40px);

  transition:1s;
}

.section.visible{

  opacity:1;

  transform:
    translateY(0);
}

.section h3{

  font-size:32px;

  margin-bottom:15px;
}

.section p{

  color:#aaa;

  line-height:1.7;
}

/* COPY MESSAGE */

.copy-msg{

  position:fixed;

  bottom:30px;

  left:50%;

  transform:
    translateX(-50%)
    scale(.8);

  background:#5865f2;

  padding:12px 20px;

  border-radius:10px;

  opacity:0;

  transition:.3s;
}

.copy-msg.show{

  opacity:1;

  transform:
    translateX(-50%)
    scale(1);
}

/* FOOTER */

footer{

  text-align:center;

  padding:50px 20px;

  color:#555;
}

/* ANIMATION */

@keyframes fadeUp{

  from{

    opacity:0;

    transform:
      translateY(30px);
  }

  to{

    opacity:1;

    transform:
      translateY(0);
  }
}

/* MOBILE */

@media(max-width:900px){

  nav{

    padding:20px;

    flex-direction:column;

    gap:18px;
  }

  .links{

    flex-wrap:wrap;

    justify-content:center;
  }

  .title{

    font-size:52px;

    letter-spacing:3px;
  }

  .buttons{

    flex-direction:column;

    align-items:center;
  }

  .btn{

    width:100%;

    max-width:340px;
  }

  .discord-box{

    max-width:340px;
  }

}

.quick-connect-wrap{
  margin-top:20px;
  display:flex;
  justify-content:center;
}

.quick-connect{
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 16px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:12px;

  color:white;

  font-size:14px;

  backdrop-filter:blur(10px);
}

.quick-connect input{
  width:16px;
  height:16px;
  cursor:pointer;
}