@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Exo:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Old+Turkic&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Share+Tech+Mono&family=Oswald:wght@300;400;700&family=Rajdhani:wght@400;500;600&display=swap");
@import url(https://db.onlinewebfonts.com/c/0a6ee448d1bd65c56f6cf256a7c6f20a?family=Bahnschrift);
@font-face {
  font-family: "Akira";
  src: url(./akira.otf);
  src: url(./akira.ttf);
  font-weight: normal;
  font-style: normal;
}
html,
body {
  background-color: #fff;
  scroll-behavior: smooth;
}

#takim,
#harita {
  scroll-margin-top: 20px;
}

.section-inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}

.header {
  background: linear-gradient(160deg, #08080a 0%, #141414 30%, #1a1a0f 60%, #0e0e0e 100%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.header #headerCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.header .header-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.08) 2px, rgba(0, 0, 0, 0.08) 4px);
}
.header .header-vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}
.header .navigation {
  position: relative;
  width: 100%;
  z-index: 10;
}
.header .navigation .navigation-inner {
  display: flex;
  align-items: center;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  max-height: 80px;
  gap: 0;
}
.header .navigation .navigation-inner .nav-left {
  flex: 1;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.header .navigation .navigation-inner .nav-left li {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  font-size: 21px;
  color: #FFFFFF;
  letter-spacing: 2px;
}
.header .navigation .navigation-inner .nav-left li a {
  padding: 10px 0;
  margin: 22px 0;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.header .navigation .navigation-inner .nav-left li a:hover {
  color: #b7a86a;
}
.header .navigation .navigation-inner .nav-right {
  flex: 1;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.header .navigation .navigation-inner .nav-right li {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  font-size: 21px;
  color: #FFFFFF;
  letter-spacing: 2px;
}
.header .navigation .navigation-inner .nav-right li a {
  padding: 10px 0;
  margin: 22px 0;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.header .navigation .navigation-inner .nav-right li a:hover {
  color: #b7a86a;
}
.header .navigation .navigation-inner .logo {
  flex: 0 0 auto;
  padding: 0 30px;
  z-index: 11;
  position: relative;
  display: flex;
  align-items: center;
  top: 35px;
}
.header .navigation .navigation-inner .logo a {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
}
.header .navigation .navigation-inner .logo img {
  position: absolute;
  width: 120px;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.header .navigation .navigation-inner .logo .logo-ring {
  position: absolute;
  width: 132px;
  height: 132px;
  top: -8px;
  left: -6px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(183, 168, 106, 0.7);
  border-right-color: rgba(183, 168, 106, 0.25);
  animation: logoRingRotate 4s linear infinite;
  pointer-events: none;
}
.header .trailer {
  width: 100%;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.header .trailer video {
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 79px);
  filter: blur(25px) brightness(0.55);
  transform: scale(1.06);
}

.trailer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.15) 45%, rgba(8, 8, 8, 0.65) 100%);
  z-index: 4;
}

.trailer-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 0 24px;
}

.trailer-badge {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #b7a86a;
  border: 1px solid rgba(183, 168, 106, 0.4);
  padding: 5px 18px;
  text-transform: uppercase;
}

.trailer-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 8vw, 88px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 8px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trailer-title span {
  color: #b7a86a;
  font-size: 0.5em;
  letter-spacing: 12px;
  font-weight: 600;
}

.trailer-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 220px;
}

.trailer-line {
  flex: 1;
  height: 1px;
  background: rgba(183, 168, 106, 0.45);
}

.trailer-diamond {
  width: 6px;
  height: 6px;
  background: #b7a86a;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.trailer-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin: 0;
}

.scroll-down-btn {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(183, 168, 106, 0.55);
  background: rgba(14, 14, 14, 0.45);
  backdrop-filter: blur(8px);
  color: #b7a86a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-down-btn svg {
  display: block;
  transition: transform 0.3s ease;
}
.scroll-down-btn:hover {
  border-color: rgba(183, 168, 106, 0.9);
  background: rgba(183, 168, 106, 0.12);
  animation-play-state: paused;
  transform: translateX(-50%) translateY(4px);
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes logoRingRotate {
  to {
    transform: rotate(360deg);
  }
}
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(183, 168, 106, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}
.sticky-nav.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.sticky-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  gap: 0;
}

.sticky-nav-left {
  flex: 1;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.sticky-nav-left li a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.sticky-nav-left li a:hover, .sticky-nav-left li a.active {
  color: #b7a86a;
}
.sticky-nav-left li a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #b7a86a;
  border-radius: 1px;
}

.sticky-nav-right {
  flex: 1;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.sticky-nav-right li a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.sticky-nav-right li a:hover, .sticky-nav-right li a.active {
  color: #b7a86a;
}
.sticky-nav-right li a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #b7a86a;
  border-radius: 1px;
}

.sticky-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.sticky-logo-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  display: block;
}
.sticky-logo-item img:hover {
  transform: scale(1.08);
}

.info-section {
  background-color: #0e0e0e;
}
.info-section .section-inner {
  display: grid;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 30px 0;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
}
.info-section .section-inner .info-section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 7px;
}
.info-section .section-inner .info-section-card ._badge {
  width: 70px;
  height: auto;
}
.info-section .section-inner .info-section-card .icon {
  height: 35px;
}

.title-cards-left {
  position: relative;
}
.title-cards-left .left-react {
  width: 30px;
  height: 45px;
  position: absolute;
  left: -20px;
  top: 28px;
}
.title-cards-left .right-react {
  width: 30px;
  height: 45px;
  position: relative;
  z-index: 1;
}

.title-cards-right {
  position: relative;
}
.title-cards-right .left-react {
  width: 30px;
  height: 45px;
  position: relative;
  z-index: 1;
}
.title-cards-right .right-react {
  width: 30px;
  height: 45px;
  position: absolute;
  left: 20px;
  top: 28px;
}

.title-cards-left .left-react,
.title-cards-left .right-react,
.title-cards-right .left-react,
.title-cards-right .right-react {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  user-select: none;
  color: rgba(255, 255, 255, 0.65);
}
.title-cards-left .rect-white,
.title-cards-right .rect-white {
  color: rgba(0, 0, 0, 0.45);
  text-shadow: none;
}

.rect-gold {
  background-color: #b7a86a;
  border: 1px solid #988b57;
  border-radius: 2px;
  -webkit-box-shadow: -1px 20px 18px 4px rgba(0, 0, 0, 0.18);
  box-shadow: -1px 20px 18px 4px rgba(0, 0, 0, 0.18);
}

.rect-black {
  background-color: #16180b;
  border: 1px solid black;
  border-radius: 2px;
  -webkit-box-shadow: -1px 20px 18px 4px rgba(0, 0, 0, 0.18);
  box-shadow: -1px 20px 18px 4px rgba(0, 0, 0, 0.18);
}

.rect-white {
  background-color: #dedede;
  border: 1px solid #5a5a5a;
  border-radius: 2px;
  -webkit-box-shadow: -1px 20px 18px 4px rgba(0, 0, 0, 0.36);
  box-shadow: -1px 20px 18px 4px rgba(0, 0, 0, 0.36);
}

.mission-section {
  background-color: #e7e7e7;
}
.mission-section .mission-title {
  display: flex;
  justify-content: center;
}
.mission-section .mission-inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  padding: 50px 0;
}
.mission-section .mission-body {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  text-align: center;
}
.mission-section .mission-body p {
  font-size: 25px;
  line-height: 48px;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.mission-section .mission-body h4 {
  margin-top: 30px;
  font-size: 13px;
  font-weight: 100;
  letter-spacing: 4px;
  font-family: "Share Tech Mono", monospace;
}
.mission-section .mission-body span {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0px;
}

.team-roster {
  background: #080a05;
  padding: 0 0 48px;
  position: relative;
  overflow: hidden;
  font-family: "Rajdhani", sans-serif;
}
.team-roster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(120, 70, 20, 0.18) 0%, transparent 70%), radial-gradient(ellipse 50% 30% at 50% 100%, rgba(80, 50, 10, 0.12) 0%, transparent 70%), linear-gradient(rgba(180, 130, 40, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(180, 130, 40, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 1;
}
.team-roster .team-roster-inner {
  position: relative;
  z-index: 2;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}
.team-roster .team-roster-inner .team-roster-title {
  display: flex;
  justify-content: center;
  padding: 50px 0 46px 0;
}
.team-roster .wolf-bg {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.025;
  pointer-events: none;
  width: 420px;
  height: 420px;
}
.team-roster .tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}
.team-roster .mc {
  position: relative;
  background: linear-gradient(160deg, #0d0f08 0%, #0a0c06 100%);
  border: 1px solid rgba(190, 140, 50, 0.18);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.3s;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  display: flex;
  flex-direction: column;
  min-height: 222px;
  border-color: rgba(190, 140, 50, 0.38);
  background: linear-gradient(160deg, #111008 0%, #0d0e06 100%);
}
.team-roster .mc:hover {
  border-color: rgba(190, 140, 50, 0.55);
  transform: translateY(-4px);
}
.team-roster .top-stripe {
  height: 2px;
  background: #1a1508;
  flex-shrink: 0;
}
.team-roster .mc.cmd .top-stripe {
  background: linear-gradient(90deg, #7a4e0a, #b7a86a, #e0b840, #b7a86a, #7a4e0a);
  animation: stripe-glow 4s ease-in-out infinite;
}
.team-roster .mc:hover .top-stripe {
  background: linear-gradient(90deg, #7a4e0a, #b7a86a, #7a4e0a);
}
.team-roster .ci {
  padding: 18px 16px 14px;
  flex: 1;
}
.team-roster .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.team-roster .tamga-wrap {
  width: 44px;
  height: 44px;
}
.team-roster .live-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}
.team-roster .live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5a8a2a;
  animation: pdot 2.5s ease-in-out infinite;
}
.team-roster .mc.cmd .live-dot {
  background: #b7a86a;
}
.team-roster .live-txt {
  font-family: "Share Tech Mono", monospace;
  font-size: 8px;
  color: #5a8a2a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.team-roster .mc.cmd .live-txt {
  color: #b7a86a;
}
.team-roster .sep {
  width: 100%;
  height: 1px;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}
.team-roster .sep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(190, 140, 50, 0.12) 0px, rgba(190, 140, 50, 0.12) 4px, transparent 4px, transparent 8px, rgba(190, 140, 50, 0.06) 8px, rgba(190, 140, 50, 0.06) 10px, transparent 10px, transparent 14px);
}
.team-roster .callsign-lbl {
  font-family: "Share Tech Mono", monospace;
  font-size: 8px;
  color: rgba(190, 140, 50, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.team-roster .callsign-val {
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 700;
  color: #b7a86a;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(200, 152, 42, 0.3);
}
.team-roster .mc.cmd .callsign-val {
  font-size: 22px;
  text-shadow: 0 0 32px rgba(200, 152, 42, 0.5);
}
.team-roster .name-val {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #c4b888;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 8px 0 6px;
  line-height: 1.2;
}
.team-roster .role-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.team-roster .role-diamond {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(190, 140, 50, 0.45);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.team-roster .mc.cmd .role-diamond {
  background: rgba(190, 140, 50, 0.2);
  border-color: rgba(190, 140, 50, 0.75);
}
.team-roster .role-val {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(190, 140, 50, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.team-roster .card-footer-rune {
  padding: 7px 16px 8px;
  border-top: 1px solid rgba(190, 140, 50, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-roster .rune-strip {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: rgba(190, 140, 50, 0.15);
  letter-spacing: 2px;
}
.team-roster .mc.cmd .rune-strip {
  color: rgba(190, 140, 50, 0.28);
}
.team-roster .corner-bl,
.team-roster .corner-tr {
  position: absolute;
  width: 18px;
  height: 18px;
}
.team-roster .corner-bl {
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(190, 140, 50, 0.2);
  border-right: 1px solid rgba(190, 140, 50, 0.2);
  transform: translate(-1px, 1px);
}
.team-roster .corner-tr {
  top: 2px;
  right: 0;
  border-left: 1px solid rgba(190, 140, 50, 0.25);
  border-bottom: 1px solid rgba(190, 140, 50, 0.25);
  transform: translate(1px, -1px);
}
.team-roster .scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(190, 140, 50, 0.12), transparent);
  animation: scan-anim 7s linear infinite;
  pointer-events: none;
}
.team-roster .mc:hover .scan {
  animation-duration: 2.5s;
}
.team-roster .sf {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.team-roster .sf-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.team-roster .sf-dl,
.team-roster .sf-dr {
  width: 40px;
  height: 1px;
}
.team-roster .sf-dl {
  background: linear-gradient(90deg, transparent, rgba(190, 140, 50, 0.3));
}
.team-roster .sf-dr {
  background: linear-gradient(90deg, rgba(190, 140, 50, 0.3), transparent);
}
.team-roster .sf-txt {
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(190, 140, 50, 0.2);
  text-transform: uppercase;
}

@keyframes stripe-glow {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pdot {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes scan-anim {
  0% {
    top: 0;
    opacity: 1;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .team-roster .tg {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 560px;
  }
}
@media (max-width: 480px) {
  .team-roster .team-roster-inner {
    width: 92%;
  }
  .team-roster .tg {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 290px;
    padding: 0;
  }
  .team-roster .callsign-val {
    font-size: 18px;
  }
  .team-roster .mc.cmd .callsign-val {
    font-size: 20px;
  }
}
.section-title {
  padding: 0 50px;
  margin-bottom: 90px;
}
.section-title .section-title-inner {
  font-family: "Akira";
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  display: inline-block;
  transform: scaleY(0.8);
  transform-origin: top;
  margin: 0;
}
.section-title .black {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 9px 6px 20px rgba(0, 0, 0, 0.83);
}
.section-title .white {
  text-shadow: none;
  color: #fff;
}

.section-title-inner + .section-badge {
  width: 80px;
  margin-top: -3px;
}

.stats-section {
  background-color: #1a1a0f;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(183, 168, 106, 0.06) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(183, 168, 106, 0.06) 0%, transparent 60%);
  padding: 35px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(183, 168, 106, 0.4), transparent);
}
.stats-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(183, 168, 106, 0.4), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 20px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(183, 168, 106, 0.12);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 168, 106, 0.35);
}

.stats-visible .stat-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}
.stats-visible .stat-card:nth-child(1) {
  transition-delay: 0s;
}
.stats-visible .stat-card:nth-child(2) {
  transition-delay: 0.1s;
}
.stats-visible .stat-card:nth-child(3) {
  transition-delay: 0.2s;
}
.stats-visible .stat-card:nth-child(4) {
  transition-delay: 0.3s;
}
.stats-visible .stat-card:nth-child(5) {
  transition-delay: 0.4s;
}

.stat-icon {
  margin-bottom: 10px;
}
.stat-icon i {
  font-size: 28px;
  color: #b7a86a;
  filter: drop-shadow(0 0 6px rgba(183, 168, 106, 0.3));
}

.stat-number,
.stat-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #b7a86a;
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #b7a86a;
  line-height: 1;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .stats-section {
    padding: 25px 0;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-card {
    padding: 16px 12px;
  }
}
.apply-section {
  text-align: center;
  padding: 80px 0;
  background-color: #e7e7e7;
  background-image: url("../media/apply-bg.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.apply-section .apply-button-outer {
  display: inline-block;
  position: relative;
}
.apply-section .apply-button-outer .apply-button {
  font-family: "POPPINS";
  color: #000;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: clamp(1px, 2vw, 16px);
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 20px rgba(7, 3, 2, 0.887);
}
.apply-section .apply-button-outer .apply-button:hover + span {
  width: 102%;
}
.apply-section .apply-button-outer span {
  display: inline-block;
  position: absolute;
  background-color: #cbba73;
  border-radius: 50px;
  width: 110px;
  height: 70px;
  left: -16px;
  top: -26px;
  transition: width 0.4s ease-in-out;
}

.map-section {
  position: relative;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  background-image: url("../media/goktepemap.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
}
.map-section .bottom-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #0e0e0e, rgba(14, 14, 14, 0));
}
.map-section .map-titles {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
.map-section .map-titles .titles {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.map-section .map-titles .titles .map-sakarya-text {
  width: 200px;
}
.map-section .map-titles .titles .map-goktepe-text {
  width: 450px;
}
.map-section .map-titles .map-animation {
  height: 130px;
}
.map-section .map-image {
  width: 100%;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger-btn:hover span {
  background: #b7a86a;
}

.mobile-nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-nav-overlay.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 82vw);
  height: 100%;
  background: rgba(10, 10, 8, 0.97);
  border-left: 1px solid rgba(183, 168, 106, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  overflow-y: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(183, 168, 106, 0.1);
}
.mobile-nav-header .mobile-nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}
.mobile-nav-close:hover {
  color: #b7a86a;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-nav-links li a:hover, .mobile-nav-links li a.active {
  color: #b7a86a;
  background: rgba(183, 168, 106, 0.04);
}

@media (max-width: 992px) {
  .header .navigation .navigation-inner .nav-left li,
  .header .navigation .navigation-inner .nav-right li {
    font-size: 16px;
  }
  .header .navigation .navigation-inner .nav-left,
  .header .navigation .navigation-inner .nav-right {
    gap: 18px;
  }
  .map-section .map-titles .titles .map-goktepe-text {
    width: clamp(260px, 70vw, 420px);
  }
}
@media (max-width: 768px) {
  .header .navigation .navigation-inner {
    width: 92%;
    justify-content: space-between;
  }
  .header .navigation .navigation-inner .nav-left,
  .header .navigation .navigation-inner .nav-right {
    display: none;
  }
  .header .navigation .navigation-inner .logo {
    padding: 0 16px;
    top: 20px;
  }
  .header .navigation .navigation-inner .logo a {
    width: 80px;
    height: 80px;
  }
  .header .navigation .navigation-inner .logo img {
    width: 80px;
  }
  .header .navigation .navigation-inner .logo .logo-ring {
    width: 90px;
    height: 90px;
    top: -5px;
    left: -5px;
  }
  .nav-hamburger-btn {
    display: flex !important;
  }
  .sticky-nav-inner {
    padding: 0 20px;
    justify-content: space-between;
  }
  .sticky-nav-inner .sticky-nav-left,
  .sticky-nav-inner .sticky-nav-right {
    display: none;
  }
  .sticky-nav-inner .sticky-logo-item {
    flex: unset;
  }
  .sticky-hamburger-btn {
    display: flex !important;
  }
  .contact-nav .sticky-nav-inner,
  .rules-nav .sticky-nav-inner,
  .gallery-nav .sticky-nav-inner {
    padding: 0 20px;
    justify-content: space-between;
  }
  .contact-nav .sticky-nav-inner .sticky-nav-left,
  .contact-nav .sticky-nav-inner .sticky-nav-right,
  .rules-nav .sticky-nav-inner .sticky-nav-left,
  .rules-nav .sticky-nav-inner .sticky-nav-right,
  .gallery-nav .sticky-nav-inner .sticky-nav-left,
  .gallery-nav .sticky-nav-inner .sticky-nav-right {
    display: none;
  }
  .contact-nav .page-hamburger-btn,
  .rules-nav .page-hamburger-btn,
  .gallery-nav .page-hamburger-btn {
    display: flex !important;
  }
  .mobile-nav-overlay {
    display: block;
  }
  .header {
    height: 100svh;
    overflow: visible;
    justify-content: flex-start;
    align-items: stretch;
  }
  .header .navigation {
    flex-shrink: 0;
  }
  .header .trailer {
    flex: 1;
    min-height: 0;
  }
  .header .trailer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.55);
    transform: scale(1.06);
  }
  .trailer-content {
    gap: 14px;
  }
  .trailer-title {
    font-size: clamp(30px, 10vw, 50px);
  }
  .trailer-divider {
    width: 160px;
  }
  .mission-section .mission-inner {
    width: 90%;
    padding: 36px 0;
  }
  .mission-section .mission-body p {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.5;
  }
  .mission-section .mission-body h4 {
    font-size: 18px;
  }
  .section-title {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .section-title .section-title-inner {
    font-size: clamp(20px, 6vw, 28px);
  }
  .apply-section {
    padding: 60px 20px;
  }
  .apply-section .apply-button-outer .apply-button {
    letter-spacing: clamp(4px, 4vw, 12px);
    font-size: 16px;
  }
  .map-section {
    min-height: 70vh;
  }
  .map-section .map-titles .titles .map-sakarya-text {
    width: 140px;
  }
  .map-section .map-titles .titles .map-goktepe-text {
    width: clamp(200px, 75vw, 350px);
  }
  .team-roster .team-roster-inner {
    width: 90%;
  }
  .team-roster .team-roster-inner .team-roster-title {
    padding: 36px 0 40px;
  }
  .info-section .section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .stats-section {
    padding: 25px 0;
  }
}
@media (max-width: 480px) {
  .header .navigation .navigation-inner .logo {
    top: 14px;
  }
  .header .navigation .navigation-inner .logo a {
    width: 64px;
    height: 64px;
  }
  .header .navigation .navigation-inner .logo img {
    width: 64px;
  }
  .header .navigation .navigation-inner .logo .logo-ring {
    width: 74px;
    height: 74px;
  }
  .sticky-nav-inner {
    height: 60px;
  }
  .sticky-nav-inner .sticky-logo-item img {
    width: 40px;
    height: 40px;
  }
  .mission-section .mission-body p {
    font-size: 16px;
  }
  .section-title .section-title-inner {
    font-size: clamp(16px, 6vw, 22px);
  }
  .apply-section .apply-button-outer .apply-button {
    letter-spacing: 4px;
    font-size: 14px;
  }
  .apply-section .apply-button-outer span {
    width: 80px;
    height: 56px;
    left: -12px;
    top: -20px;
  }
  .map-section {
    min-height: 60vh;
  }
  .map-section .map-titles .titles .map-sakarya-text {
    width: 110px;
  }
  .map-section .map-titles .titles .map-goktepe-text {
    width: clamp(180px, 80vw, 280px);
  }
  .scroll-down-btn {
    width: 44px;
    height: 44px;
    bottom: 24px;
  }
}
.site-footer {
  background: linear-gradient(180deg, #0d0d0c 0%, #050504 100%);
  border-top: 1px solid rgba(183, 168, 106, 0.15);
  padding: 0;
  text-align: left;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 168, 106, 0.4), transparent);
  box-shadow: 0 0 20px rgba(183, 168, 106, 0.2);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 10px);
  pointer-events: none;
  opacity: 0.3;
}

.footer-top {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  align-items: flex-start;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(183, 168, 106, 0.25));
  transition: all 0.3s ease;
  opacity: 0.9;
}
.footer-logo:hover {
  filter: drop-shadow(0 0 18px rgba(183, 168, 106, 0.5));
  opacity: 1;
  transform: scale(1.08);
}

.footer-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: #b7a86a;
  margin: 0 0 6px;
  line-height: 1.2;
}

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  margin: 0 0 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(183, 168, 106, 0.2);
  background: rgba(183, 168, 106, 0.05);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.social-link svg {
  transition: stroke 0.3s ease;
}
.social-link:hover {
  border-color: rgba(183, 168, 106, 0.6);
  background: rgba(183, 168, 106, 0.12);
  color: #b7a86a;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(183, 168, 106, 0.15);
}
.social-link:hover svg {
  stroke: #b7a86a;
}

.footer-col-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: #b7a86a;
  margin: 0 0 20px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #b7a86a, transparent);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}
.footer-links li svg {
  flex-shrink: 0;
  stroke: rgba(183, 168, 106, 0.5);
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  position: relative;
}
.footer-links li a::before {
  content: "›";
  position: absolute;
  left: -14px;
  opacity: 0;
  color: #b7a86a;
  transition: opacity 0.25s ease, left 0.25s ease;
}
.footer-links li a:hover {
  color: #b7a86a;
  padding-left: 6px;
}
.footer-links li a:hover::before {
  opacity: 1;
  left: -10px;
}

.footer-divider {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 1px;
}
.footer-divider::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 168, 106, 0.25), transparent);
}

.footer-bottom {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 20px 40px 28px;
}
.footer-bottom p {
  font-family: "Poppins", sans-serif;
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 28px 30px;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links li {
    justify-content: center;
  }
  .footer-links li a::before {
    display: none;
  }
  .footer-divider {
    padding: 0 28px;
  }
  .footer-bottom {
    padding: 16px 28px 24px;
  }
}

/*# sourceMappingURL=style.css.map */
