/* ===================================================
   RESET
=================================================== */

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

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  padding-bottom: 70px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: #fff;

  user-select: none;
  -webkit-user-select: none;
}

/* ===================================================
   VIDEO
=================================================== */

.bg-video {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: -3;
}

/* ===================================================
   OVERLAY
=================================================== */

.overlay {
  position: fixed;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.88)
    ),
    rgba(0,0,0,0.45);

  z-index: -2;
}

/* ===================================================
   MENÜ
=================================================== */

.top-menu {
  position: fixed;

  top: 30px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 999;
}

.top-menu nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 24px;

  padding: 18px 40px;

  min-width: 780px;

  background: rgba(10,10,10,0.55);

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

  border-radius: 18px;

  backdrop-filter: blur(8px);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.45);
}

.top-menu a {
  text-decoration: none;

  color: #f2e5c7;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.6px;

  white-space: nowrap;

  padding: 10px 14px;

  border-radius: 10px;

  transition: 0.25s;
}

.top-menu a:hover {
  color: #fff;

  background: rgba(190,145,70,0.20);

  text-shadow:
    0 0 12px rgba(255,190,90,0.85);
}

/* ===================================================
   LOGO
=================================================== */

.site-logo {
  position: fixed;

  top: 28px;
  left: 45px;

  z-index: 999;
}

.site-logo img {
  width: 210px;

  display: block;

  filter:
    drop-shadow(0 0 18px rgba(0,0,0,0.65));

  transition: 0.25s;
}

.site-logo img:hover {
  transform: scale(1.03);
}

/* ===================================================
   HERO
=================================================== */

.hero {
  width: 100%;
  min-height: 52vh;

  position: relative;
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  padding-left: 7%;
  padding-bottom: 55px;
  padding-top: 150px;
}

.hero h1 {
  font-size: 72px;

  line-height: 1.05;

  color: #f5ddb0;

  text-shadow:
    0 0 25px rgba(0,0,0,0.95);
}

.hero p {
  margin-top: 20px;

  font-size: 19px;

  color: #ddd;
}

/* ===================================================
   SECTION TITLE
=================================================== */

.section-title {
  width: 100%;

  display: flex;
  justify-content: center;

  margin-bottom: 30px;
}

.section-title h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 40px;

  background: rgba(8,8,8,0.58);

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

  border-radius: 18px;

  backdrop-filter: blur(8px);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.45);

  font-size: 26px;

  color: #f5ddb0;

  letter-spacing: 2px;
}

/* ===================================================
   FİYAT KARTLARI
=================================================== */

.price-section {
  width: 90%;

  margin: 0 auto 50px;

  position: relative;
  z-index: 20;
}

.price-container,
.extra-container {
  display: flex;
  justify-content: center;

  gap: 24px;

  flex-wrap: wrap;
}

.extra-container {
  margin-top: 26px;
}

.price-card,
.extra-card {
  width: 300px;

  padding: 24px 20px;

  text-align: center;

  position: relative;

  background: rgba(8,8,8,0.58);

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

  border-radius: 22px;

  backdrop-filter: blur(8px);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.45);

  transition: 0.25s;
}

.price-card:hover,
.extra-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(245,221,176,0.28);
}

.price-card h2,
.extra-card h2 {
  font-size: 18px;

  color: #f5ddb0;

  margin-bottom: 14px;
}

.price {
  font-size: 40px;
  font-weight: bold;

  color: #57ff99;

  margin-bottom: 18px;

  text-shadow:
    0 0 10px rgba(87,255,153,0.55),
    0 0 22px rgba(87,255,153,0.35);
}

.price-card ul,
.extra-card ul {
  list-style: none;
}

.price-card li,
.extra-card li {
  font-size: 15px;

  color: #ddd;

  margin-bottom: 10px;
  padding-bottom: 10px;

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

.price-card li:last-child,
.extra-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-card li::before,
.extra-card li::before {
  content: "• ";

  color: #f5ddb0;
}

/* ===================================================
   PREMIUM GLOW
=================================================== */

.price-card::after,
.extra-card::after,
.reference-card::after,
.free-card::after,
.about-box::after {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(245,221,176,0.16),
      transparent
    );

  opacity: 0;

  pointer-events: none;

  transition: 0.35s;
}

.price-card:hover::after,
.extra-card:hover::after,
.reference-card:hover::after,
.free-card:hover::after,
.about-box:hover::after {
  opacity: 1;
}

/* ===================================================
   ABOUT
=================================================== */

.about-page {
  min-height: 100vh;

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

  padding: 140px 20px 90px;

  position: relative;
  z-index: 10;
}

.about-box {
  width: 100%;
  max-width: 850px;

  padding: 45px;

  text-align: center;

  position: relative;

  background: rgba(8,8,8,0.58);

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

  border-radius: 24px;

  backdrop-filter: blur(8px);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.45);
}

.about-box h1 {
  font-size: 56px;

  color: #f5ddb0;

  margin-bottom: 25px;
}

.about-box p {
  font-size: 18px;

  line-height: 1.8;

  color: #ddd;

  margin-bottom: 18px;
}

/* ===================================================
   REFERANSLAR
=================================================== */

.reference-page {
  min-height: 100vh;

  padding: 160px 0 100px;

  position: relative;
  z-index: 10;

  overflow: hidden;
}

.reference-page h1 {
  text-align: center;

  font-size: 58px;

  color: #f5ddb0;
}

.reference-page p {
  text-align: center;

  margin-top: 14px;

  font-size: 18px;

  color: #ddd;
}

.reference-slider {
  width: 100%;

  margin-top: 70px;

  overflow: hidden;

  position: relative;
}

.reference-track {
  display: flex;

  gap: 28px;

  width: max-content;

  animation:
    referenceMove 35s linear infinite;
}

.reference-card {
  width: 260px;
  height: 230px;

  flex: 0 0 auto;

  padding: 22px;

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

  position: relative;

  background: rgba(8,8,8,0.58);

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

  border-radius: 22px;

  backdrop-filter: blur(8px);

  transition: 0.25s;
}

.reference-card:hover {
  transform: translateY(-8px);
}

.reference-card img {
  width: 180px;
  height: 120px;

  object-fit: contain;
}

.reference-card h2 {
  margin-top: 18px;

  font-size: 17px;

  color: #f5ddb0;
}

@keyframes referenceMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===================================================
   FREE PAGE / ÜRÜNLER
=================================================== */

.free-page {
  min-height: 100vh;

  padding: 150px 7% 110px;

  position: relative;
  z-index: 10;
}

.free-page h1 {
  font-size: 58px;

  color: #f5ddb0;
}

.free-page p {
  margin-top: 14px;

  font-size: 18px;

  color: #ddd;
}

/* ===================================================
   KATEGORİLER
=================================================== */

.free-categories {
  margin-top: 35px;
  margin-bottom: 30px;

  display: flex;
  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;
}

.free-category {
  padding: 13px 22px;

  background: rgba(8,8,8,0.58);

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

  border-radius: 14px;

  color: #f5ddb0;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.8px;

  cursor: pointer;

  backdrop-filter: blur(8px);

  transition: 0.25s;
}

.free-category:hover,
.free-category.active {
  color: #101010;

  background: #57ff99;

  transform: translateY(-3px);

  box-shadow:
    0 0 14px rgba(87,255,153,0.50),
    0 0 28px rgba(87,255,153,0.25);
}

/* ===================================================
   FREE GRID
=================================================== */

.free-grid {
  margin-top: 45px;

  display: grid;

  gap: 22px;
}

.free-card {
  display: grid;

  grid-template-columns:
    180px 1fr auto;

  align-items: center;

  gap: 22px;

  padding: 18px;

  position: relative;

  cursor: pointer;

  background: rgba(8,8,8,0.58);

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

  border-radius: 22px;

  backdrop-filter: blur(8px);

  transition: 0.25s;
}

.free-card:hover {
  transform: translateY(-6px);
}

.free-card img {
  width: 180px;
  height: 110px;

  min-width: 180px;
  max-width: 180px;

  min-height: 110px;
  max-height: 110px;

  object-fit: cover;
  object-position: center;

  border-radius: 14px;

  display: block;

  background: rgba(0,0,0,0.45);
}

.free-info h2 {
  font-size: 22px;

  color: #f5ddb0;

  margin-bottom: 8px;
}

.free-info p {
  font-size: 15px;

  color: rgba(255,255,255,0.65);
}

/* ===================================================
   BUTTON
=================================================== */

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 115px;

  padding: 13px 22px;

  text-decoration: none;

  color: #101010;

  background: #57ff99;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 1px;

  transition: 0.25s;

  box-shadow:
    0 0 12px rgba(87,255,153,0.45),
    0 0 26px rgba(87,255,153,0.25);
}

.download-btn:hover {
  transform:
    translateY(-3px)
    scale(1.03);

  background: #7dffb0;
}

/* ===================================================
   LIGHTBOX
=================================================== */

.free-lightbox {
  position: fixed;
  inset: 0;

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

  padding: 70px 20px;

  background: rgba(0,0,0,0.90);

  backdrop-filter: blur(8px);

  z-index: 99999;
}

.free-lightbox.active {
  display: flex;
}

.free-lightbox-content {
  width: 100%;
  max-width: 1050px;

  height: 86vh;
  max-height: 86vh;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  position: relative;

  background:
    linear-gradient(
      180deg,
      rgba(15,15,15,0.92),
      rgba(5,5,5,0.82)
    );

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

  border-radius: 28px;

  padding:
    35px
    35px
    30px;

  overflow: hidden;

  backdrop-filter: blur(14px);

  box-shadow:
    0 0 35px rgba(0,0,0,0.75),
    0 0 80px rgba(0,0,0,0.45);
}

.free-lightbox-content::before {
  content: "";

  position: absolute;

  top: -120px;
  left: 50%;

  transform: translateX(-50%);

  width: 500px;
  height: 250px;

  background:
    radial-gradient(
      circle,
      rgba(245,221,176,0.18),
      transparent 70%
    );

  pointer-events: none;
}

.free-lightbox-content h2 {
  font-size: 42px;

  color: #f5ddb0;

  margin-bottom: 14px;
}

.free-lightbox-content p {
  color: rgba(255,255,255,0.72);

  max-width: 850px;

  margin:
    0 auto
    22px;

  line-height: 1.7;
}

#freeMainImage,
#urunMainImage {
  width: 100% !important;
  max-width: 1000px !important;

  height: 52vh !important;
  min-height: 52vh !important;
  max-height: 52vh !important;

  object-fit: contain !important;
  object-position: center !important;

  border-radius: 18px;

  background: rgba(0,0,0,0.45);

  border:
    1px solid rgba(255,255,255,0.10);
}

.free-thumbs {
  min-height: 76px;

  margin-top: 20px;
  margin-bottom: 20px;

  display: flex;
  justify-content: center;

  gap: 12px;

  flex-wrap: wrap;
}

.free-thumbs img {
  width: 110px;
  height: 70px;

  object-fit: cover;

  border-radius: 10px;

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

  opacity: 0.55;

  cursor: pointer;

  transition: 0.25s;
}

.free-thumbs img:hover,
.free-thumbs img.active {
  opacity: 1;

  transform: translateY(-3px);

  border-color:
    rgba(245,221,176,0.65);
}

/* ===================================================
   LIGHTBOX BUTTONS
=================================================== */

.lightbox-close,
.lightbox-arrow {
  position: absolute;

  border: none;

  background: rgba(8,8,8,0.75);

  color: #f5ddb0;

  cursor: pointer;

  transition: 0.25s;
}

.lightbox-close {
  top: 25px;
  right: 35px;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  font-size: 34px;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-arrow {
  top: 50%;

  transform: translateY(-50%);

  width: 58px;
  height: 58px;

  border-radius: 50%;

  font-size: 48px;
}

.lightbox-prev {
  left: 35px;
}

.lightbox-next {
  right: 35px;
}

/* ===================================================
   ÜRÜN FİYAT
=================================================== */

.urun-price,
.urun-card-price {
  display: inline-block;

  margin-top: 14px;

  padding:
    12px
    24px;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(87,255,153,0.15),
      rgba(87,255,153,0.05)
    );

  border:
    1px solid rgba(87,255,153,0.30);

  color: #57ff99;

  font-size: 22px;
  font-weight: 800;
}

/* ===================================================
   FOOTER
=================================================== */

.footer {
  width: 100%;

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

  gap: 20px;

  padding: 16px 40px;

  position: fixed;
  left: 0;
  bottom: 0;

  z-index: 999;

  background: rgba(5,5,5,0.55);

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

  backdrop-filter: blur(8px);
}

.footer-left,
.footer-center,
.footer-right {
  font-size: 14px;

  color:
    rgba(255,255,255,0.72);
}

.footer-center {
  color: #f5ddb0;
}

/* ===================================================
   DISCORD
=================================================== */

.discord-button {
  position: fixed;

  right: 30px;
  bottom: 25px;

  z-index: 999;

  transition: 0.25s;
}

.discord-button img {
  width: 170px;
}

.discord-button:hover {
  transform:
    translateY(-6px)
    scale(1.03);
}

/* ===================================================
   LOADER
=================================================== */

.loader {
  position: fixed;
  inset: 0;

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

  background:
    radial-gradient(
      circle at center,
      rgba(40,25,10,0.85),
      rgba(0,0,0,0.98)
    );

  z-index: 99999;

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
}

.loader-box h1 {
  font-size: 46px;

  color: #f5ddb0;

  letter-spacing: 5px;
}

.loader-line {
  width: 280px;
  height: 4px;

  margin: 24px auto 0;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255,255,255,0.10);
}

.loader-line span {
  display: block;

  width: 45%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      #f5ddb0,
      transparent
    );

  animation:
    loaderMove 1.2s linear infinite;
}

@keyframes loaderMove {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(260%);
  }
}

/* ===================================================
   MOBİL
=================================================== */

@media (max-width: 900px) {
  body {
    padding-bottom: 120px;
  }

  .top-menu {
    width: 92%;
    top: 18px;
  }

  .top-menu nav {
    width: 100%;
    min-width: auto;

    flex-wrap: wrap;

    gap: 10px;

    padding: 12px;
  }

  .top-menu a {
    font-size: 12px;

    padding: 8px 10px;
  }

  .site-logo {
    left: 50%;
    top: 105px;

    transform: translateX(-50%);
  }

  .site-logo img {
    width: 150px;
  }

  .hero {
    align-items: center;

    text-align: center;

    padding:
      210px 20px 70px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .price-container,
  .extra-container {
    flex-direction: column;
    align-items: center;
  }

  .price-card,
  .extra-card {
    width: 100%;
    max-width: 360px;
  }

  .about-box {
    padding: 30px 22px;
  }

  .about-box h1 {
    font-size: 40px;
  }

  .free-page {
    padding:
      190px 20px 140px;
  }

  .free-page h1 {
    font-size: 42px;

    text-align: center;
  }

  .free-page > p {
    text-align: center;

    font-size: 16px;
  }

  .free-card {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .free-card img {
    width: 100%;

    height: 190px;
    min-height: 190px;
    max-height: 190px;

    min-width: 100%;
    max-width: 100%;

    object-fit: cover;
    object-position: center;
  }

  .download-btn {
    width: 100%;
  }

  .free-category {
    width: 100%;
    max-width: 320px;
  }

  .free-lightbox-content {
    height: auto;
    max-height: none;
  }

  #freeMainImage,
  #urunMainImage {
    height: 42vh !important;
    min-height: 42vh !important;
    max-height: 42vh !important;
  }

  .free-thumbs img {
    width: 75px;
    height: 52px;
  }

  .footer {
    flex-direction: column;

    text-align: center;

    padding: 14px 20px;
  }

  .discord-button {
    right: 15px;
    bottom: 80px;
  }

  .discord-button img {
    width: 130px;
  }
}

/* İLK GİRİŞ EKRANI */

.entry-screen {
  position: fixed;
  inset: 0;

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

  background:
    radial-gradient(
      circle at center,
      rgba(40,25,10,0.90),
      rgba(0,0,0,0.98)
    );

  z-index: 100000;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.entry-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-box {
  text-align: center;

  padding: 45px 55px;

  background: rgba(8,8,8,0.58);

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;

  backdrop-filter: blur(14px);

  box-shadow:
    0 0 35px rgba(0,0,0,0.75),
    0 0 90px rgba(245,221,176,0.12);
}

.entry-box h1 {
  font-size: 56px;

  color: #f5ddb0;

  letter-spacing: 5px;
}

.entry-box p {
  margin-top: 16px;

  font-size: 16px;

  color: rgba(255,255,255,0.72);
}

.entry-loading {

  margin-top: 35px;

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

}


.entry-percent {
  margin-bottom: 12px;

  font-size: 24px;
  font-weight: 800;

  color: #f5ddb0;

  letter-spacing: 1px;

  text-shadow:
    0 0 12px rgba(245,221,176,0.55),
    0 0 24px rgba(87,255,153,0.28);
}

.entry-loading-bar {
  margin: 0 auto;
}

.entry-loading-bar {
  width: 340px;
  height: 5px;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255,255,255,0.10);
}

.entry-loading-bar span {
  display: block;

  width: 0%;
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #57ff99,
      #f5ddb0
    );

  box-shadow:
    0 0 18px rgba(87,255,153,0.55);

  transition: width 0.08s linear;
}

.entry-loading-text {
  margin-top: 14px;

  font-size: 14px;

  color: rgba(255,255,255,0.62);

  letter-spacing: 1px;
}

@media (max-width: 900px) {

  .entry-box {
    width: 90%;
    padding: 35px 24px;
  }

  .entry-box h1 {
    font-size: 36px;
  }

  .entry-percent {
    font-size: 21px;
  }

  .entry-loading-bar {
    width: 100%;
  }

}

.new-badge {
  position: absolute;
  top: -10px;
  right: 18px;

  padding: 7px 14px;

  background: linear-gradient(135deg, #57ff99, #f5ddb0);
  color: #101010;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;

  border-radius: 999px;

  box-shadow:
    0 0 14px rgba(87,255,153,0.65),
    0 0 28px rgba(245,221,176,0.35);

  animation: newBadgePulse 1.4s ease-in-out infinite;

  z-index: 5;
}

@keyframes newBadgePulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.08);
    filter: brightness(1.25);
  }
}