@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

/* GENEL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Üst başlık */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 40px;
  text-align: center;
  font-size: 48px;
  background: rgba(0,0,0,0.5);
  transition: opacity 0.5s ease, transform 0.5s ease; /* Opaklık ve pozisyon için geçiş */
}

/* Kaydırma sırasında küçülme ve yukarı kayma efekti */
header.scrolled {
  opacity: 0;         /* Yavaşça kaybolur */
  transform: translateY(-50px) scale(0.8); /* Yukarı kayma ve küçülme */
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* video fills */
  z-index: -1;
}

/* Navbar üst bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LOGO DÜZENLEMESİ: CORE logosunun bozulmasını engellemek için filter kodu kaldırıldı. */
.logo img {
  height: 35px;
}

/* MENÜ */
.menu a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-left: 15px;
  border: 2px solid red;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Işık efekti */
.menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,0,0,0.6),
    rgba(255,255,255,0.4),
    rgba(255,0,0,0.6)
  );
  transition: all 0.5s ease;
  z-index: 1;
}

/* Hover olunca ışık geçsin */
.menu a:hover::before {
  left: 100%;
}

/* Hover olunca renk ve animasyon */
.menu a:hover {
  background: red;
  color: black;
  transform: scale(1.1);
}

/* Tıklanınca ufak animasyon */
.menu a:active {
  transform: scale(0.95);
}

/* COOKIES */
.cookies {
  background: rgba(0, 0, 0, 0.85);
  padding: 15px;
  font-size: 12px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999; /* tüm diğer elemanların üstünde */
}

.cookies p {
  margin-bottom: 10px;
}

.cookies a {
  color: #bbb;
  text-decoration: underline;
}

.cookies-buttons {
  display: flex;
  gap: 10px;
}

.cookies-buttons button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
}

.cookies-buttons .accept {
  background: #fff;
  color: #000;
  font-weight: bold;
}

/* GENEL BUTON STİLİ */
button, .teaser-btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  background: transparent;
  border: 1px solid red;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover efekti: arka plandan ışık süzülmesi */
button::before, .teaser-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,0,0,0.6), rgba(255,255,255,0.3), rgba(255,0,0,0.6));
  transition: all 0.5s ease;
}

button:hover::before, .teaser-btn a:hover::before {
  left: 100%;
}

button:hover, .teaser-btn a:hover {
  color: #000;
  background: red;
  transform: scale(1.05);
}

/* TEASER BUTONU ÖZEL */
.teaser-btn a {
  font-size: 18px;
  border: 2px solid red;
  padding: 12px 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Cookies accept özel */
.cookies-buttons .accept {
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cookies-buttons .accept:hover {
  transform: scale(1.1) rotate(-2deg);
  background: red;
  color: #fff;
}

/* SOUND butonuna özel */
#sound-btn {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid red;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* İçinden geçen ışık efekti */
#sound-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,0,0,0.6),
    rgba(255,255,255,0.4),
    rgba(255,0,0,0.6)
  );
  transition: all 0.5s ease;
}

#sound-btn:hover::before {
  left: 100%;
}

#sound-btn:hover {
  background: red;
  color: black;
  transform: scale(1.05);
}

/* GENİŞLETİLMİŞ MENÜ PANELİ */
#expanded-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#expanded-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  display: flex;
  gap: 80px;
  padding: 40px;
  text-align: left;
}

.menu-column h2 {
  font-size: 24px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-bottom: 2px solid red;
  padding-bottom: 5px;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column ul li {
  margin-bottom: 10px;
}

.menu-column ul li a {
  color: #aaa;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu-column ul li a:hover {
  color: red;
  transform: translateX(10px);
}

#close-menu-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: 2px solid red;
  color: red;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 15px;
  transition: all 0.3s ease;
}

#close-menu-btn:hover {
  background: red;
  color: #000;
  transform: rotate(90deg);
}

/* GENEL AYARLAR */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* NAVBAR (Geliştirdiğiniz Navbar'a benzer) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}


.menu a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-left: 15px;
    border: 2px solid red;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu a:hover {
    background: red;
    color: black;
    transform: scale(1.1);
}

.footer {
  background: #000;
  color: #fff;
  padding: 40px 10%;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.new {
  color: red;
  font-size: 0.8em;
  margin-left: 5px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
}

.socials a {
  margin: 0 10px;
  color: #ccc;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  color: #fff;
  transform: scale(1.2) rotate(5deg);
}

.footer-legal {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
}

.footer-legal a {
  color: #aaa;
  margin: 0 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.divider-simple {
  border: none;
  height: 1px;
  width: 93%;          /* çizginin uzunluğunu kısalttım */
  background-color: #555;
  margin: 40px auto;   /* ortalanması için */
}

/* Cookies accept özel */
.cookies-buttons .accept {
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cookies-buttons .accept:hover {
  transform: scale(1.1) rotate(-2deg);
  background: red;
  color: #fff;
}

html, body {
  overflow-x: hidden !important;  /* tüm sitede yatay kaydırmayı kapat */
  width: 100%;
}

/* ===== Careers: HERO ===== */
.careers-hero{
  position: relative;
  min-height: clamp(520px, 85vh, 980px);
  background:#000;
  overflow: clip;
}

/* Karanlık overlay */
.careers-hero .overlay {
  position: absolute;
  bottom: 0;
  width: 100%; height: 100%;
  background: linear-gradient(transparent, black);
  z-index: -1;
}

/* İkiye bölünmüş medya alanı */
.careers-media{
  display:grid;
  grid-template-columns: 1fr 1fr;
  height:100%;
}

.careers-split{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.careers-split img,
.careers-split video{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.06);
  filter:contrast(1.05) saturate(1.05);
  transition:transform .6s ease, filter .6s ease;
  will-change:transform;
}

/* Vinyet/karartma */
.careers-split::after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(120% 120% at 50% 60%, transparent 0 55%, rgba(0,0,0,.45) 100%);
  pointer-events:none;
  z-index:1;
}

/* Hover’da çok hafif zoom */
.careers-hero:hover .careers-split img,
.careers-hero:hover .careers-split video{
  transform:scale(1.08);
}

/* Dev başlık */
.careers-slogan{
  position:absolute;
  inset:auto 0 4vh 0;
  display:flex;
  justify-content:center;
  pointer-events:none;
  z-index:3;
}
.careers-slogan h1{
  margin:0;
  line-height:.9;
  text-align:center;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(48px, 12vw, 160px);
  color:#e6eefc;
  text-transform:uppercase;
  /* hafif cam/parıltı etkisi */
  background:linear-gradient(180deg, #9c0808 0%, #cf0000 40%, #ff0000 60%, #ff0000 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  filter:drop-shadow(0 10px 40px rgba(0,0,0,.6));
}
.careers-slogan h1 span:last-child{
  display:block;
  background:linear-gradient(180deg, #ff0022 0%, #9b003b 50%, #e4006a 100%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}

/* Mobil düzen: alt alta gelsin */
@media (max-width: 960px){
  .careers-media{ grid-template-columns: 1fr; }
  .careers-right{ display:none; } /* istersen sağ görseli gizle */
  .careers-slogan{ inset:auto 0 2rem 0; }
  .careers-slogan h1{ font-size:clamp(40px, 12vw, 88px); }
}

/* ===== Careers: JOIN THE TEAM ===== */
.careers-join{
  background:#000000;
  padding: clamp(60px, 8vw, 120px) 20px;
  color:#eee;
  text-align:center;
}

.careers-join-header h2{
  font-size:clamp(32px, 5vw, 60px);
  font-weight:800;
  margin-bottom:1rem;
  text-transform:uppercase;
  letter-spacing:-.01em;
  color:#ff0000;
}
.careers-join-header p{
  max-width:680px;
  margin:0 auto 3rem;
  font-size:1.15rem;
  line-height:1.7;
  color:#aaa;
}

/* grid kartlar */
.careers-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:30px;
  margin-bottom:3rem;
}
.careers-card{
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:2rem 1.5rem;
  text-align:left;
  box-shadow:0 10px 40px rgba(0,0,0,.5);
  transition:transform .4s ease, border-color .3s ease;
}
.careers-card:hover{
  transform:translateY(-8px);
  border-color:red;
}
.careers-card h3{
  font-size:1.4rem;
  font-weight:700;
  margin-bottom:.6rem;
  color:#fff;
}
.careers-card p{
  font-size:1rem;
  line-height:1.6;
  color:#bbb;
}

/* CTA */
.careers-cta .careers-btn{
  display:inline-block;
  padding:14px 32px;
  font-size:1.1rem;
  font-weight:700;
  background:red;
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  box-shadow:0 6px 22px rgba(255,0,0,.4);
  transition:background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.careers-cta .careers-btn:hover{
  background:#ff3333;
  transform:scale(1.05) translateY(-3px);
  box-shadow:0 10px 28px rgba(255,0,0,.6);
}

.careers-positions {
  padding: 120px 20px;
  background: #000000;
  color: #fff;
}

.careers-positions-header {
  text-align: center;
  margin-bottom: 60px;
}

.careers-positions-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ff0000;
}

.careers-positions-header p {
  margin-top: 10px;
  color: #bbb;
  font-size: 1.1rem;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.position-card {
  background: linear-gradient(145deg, #141414, #1a1a1a);
  border: 1px solid #222;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.position-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.8);
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.card-content .location {
  font-size: 0.95rem;
  color: #ff4444;
  margin-bottom: 15px;
}

.card-content .desc {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
}

.apply-btn {
  display: inline-block;
  padding: 12px 24px;
  background: red;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.apply-btn:hover {
  background: #ff4444;
  transform: scale(1.05);
}

.life-section {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  background: #000000;
}

.life-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #ff0000;
}

.life-header p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
}

/* Grid düzeni */
.life-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.life-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.life-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.life-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255,68,68,0.5);
}

.life-item video,
.life-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Küçük görseller sabit yükseklik */
.life-item.small {
  height: 50%;
}

/* Önceki CSS aynı kalıyor, sadece buraya responsive ekliyoruz */

@media (max-width: 992px) {
  .life-gallery {
    grid-template-columns: 1fr; /* Tek sütun */
  }

  .life-side {
    flex-direction: row; /* Görseller yan yana */
  }

  .life-item.small {
    height: auto; /* Sabit yükseklik kaldır */
    flex: 1;
  }
}

@media (max-width: 600px) {
  .life-side {
    flex-direction: column; /* Çok küçük ekranlarda tekrar alt alta */
    gap: 15px;
  }

  .life-header h2 {
    font-size: 2rem;
  }

  .life-header p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* Perks Section */
.perks {
  padding: 100px 20px;
  background: #000000;
  color: #fff;
  text-align: center;
}

.perks-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ff0000;
}

.perks-header p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 50px;
}

/* Grid */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Cards */
.perk-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px 20px;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.perk-card i {
  font-size: 2.5rem;
  color: #ff4444;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.perk-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.perk-card p {
  font-size: 1rem;
  color: #aaa;
}

/* Hover Effect */
.perk-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255,68,68,0.4);
}

.perk-card:hover i {
  transform: scale(1.2);
}

.gamers-section {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 100px 60px;
  background: #000;
  color: #ff0000;
  overflow: hidden;
}

.gamers-left h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 20px 0;
  border-bottom: 2px solid #222;
  display: inline-block;
  opacity: 0; /* Başta görünmesin */
  transform: translateX(-100px); /* Solda başlasın */
  animation: slideIn 1s ease forwards;
}

.gamers-center {
  width: 400px;
  height: 500px;
}

.gamers-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.gamers-right {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.6;
  max-width: 300px;
}

.text-slide {
  display: none;
}

.text-slide.active {
  display: block;
  animation: fadeIn 0.6s ease-in-out;
}

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

/* Her satıra farklı gecikme verelim */
.gamers-left h1:nth-child(1) {
  animation-delay: 0.2s;
}
.gamers-left h1:nth-child(2) {
  animation-delay: 0.6s;
}
.gamers-left h1:nth-child(3) {
  animation-delay: 1s;
}

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

/* Benefits Section */
.benefits-section {
  padding: 100px 20px;
  background: #000000;
  text-align: center;
}

.benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.benefit-card i {
  font-size: 2.5rem;
  color: red;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff0000;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
}

/* Genel Bölüm */
.gameplay-showcase {
  background: linear-gradient(180deg, #000000 0%, #000000 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  color: #ff0000;
}

/* Parlayan arka plan animasyonu */
.gameplay-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.089) 0%, transparent 70%);
  animation: glowMove 12s infinite linear;
}

@keyframes glowMove {
  0% { transform: translate(0,0); }
  50% { transform: translate(15%,10%); }
  100% { transform: translate(0,0); }
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: red;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Feature satırları */
.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  padding: 20px 0;
  border-left: 3px solid rgba(255,0,0,0.5);
  padding-left: 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.feature-line:hover {
  transform: translateX(10px);
}

.feature-number {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,0,0,0.8);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}
