@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);
}


.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

/* Glitch Effect */
.glitch {
  font-size: 64px;
  font-weight: bold;
  color: red;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: red;
}

.glitch::before {
  animation: glitchTop 2s infinite;
  clip: rect(0, 900px, 0, 0);
}

.glitch::after {
  animation: glitchBottom 2s infinite;
  clip: rect(0, 900px, 0, 0);
}

/* Glitch Animations */
@keyframes glitchTop {
  0% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
  20% { clip: rect(0, 9999px, 100px, 0); transform: translate(-5px, -5px); }
  40% { clip: rect(0, 9999px, 0, 0); transform: translate(5px, 5px); }
  60% { clip: rect(0, 9999px, 100px, 0); transform: translate(-2px, 2px); }
  100% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
}

@keyframes glitchBottom {
  0% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
  20% { clip: rect(100px, 9999px, 9999px, 0); transform: translate(5px, 5px); }
  40% { clip: rect(0, 9999px, 0, 0); transform: translate(-5px, -5px); }
  60% { clip: rect(100px, 9999px, 9999px, 0); transform: translate(2px, -2px); }
  100% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
}

/* Typing animation */
.typing {
  margin-top: 20px;
  font-size: 20px;
  color: #ccc;
  border-right: 2px solid red;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 6s steps(40, end) forwards, blink 1s infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  0%, 100% { border-color: transparent }
  50% { border-color: red }
}



/* 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;
}


/* 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%;
}

/* Legacy Section */
.legacy {
  position: relative;
  padding: 100px 50px;
  background: #000000;
  color: #fff;
  overflow: hidden;
}

/* Container */
.legacy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Text Block */
.legacy-text {
  flex: 1;
}

.legacy-text h2 {
  font-size: 48px;
  color: red;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.legacy-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Appear animation */
.legacy-text p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image */
.legacy-image {
  flex: 1;
  position: relative;
    /* Alttan yukarı fade */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;

  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
}


.legacy-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.legacy-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

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

.team-modern {
  background: linear-gradient(rgba(0,0,0,0.9), rgba(20,0,0,0.95)),
              url('images/dark-texture.png') center/cover no-repeat;
  padding: 120px 40px;
  color: #fff;
  text-align: center;
}

.team-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff2b2b;
  margin-bottom: 80px;
  position: relative;
}

.team-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #ff2b2b;
  margin: 20px auto 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { width: 100px; opacity: 0.6; }
  50% { width: 140px; opacity: 1; }
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 43, 43, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}

.team-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: #ff2b2b;
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.7);
}

.team-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff2b2b;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img {
  transform: scale(1.1);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #fff;
}

.team-card .role {
  font-size: 14px;
  color: #ff2b2b;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-card .quote {
  font-size: 15px;
  font-style: italic;
  color: #ddd;
  line-height: 1.6;
}

.philosophy {
  background: linear-gradient(rgba(20,0,0,0.95), rgba(0,0,0,0.9));
  padding: 120px 40px;
  color: #fff;
  text-align: center;
}

.philosophy-title {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff2b2b;
  margin-bottom: 80px;
  position: relative;
}

.philosophy-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff2b2b;
  margin: 20px auto 0;
}

.philosophy-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 43, 43, 0.2);
  border-radius: 15px;
  padding: 40px 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.philosophy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 43, 43, 0.7);
}

.philosophy-item .icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ff2b2b;
  transition: transform 0.4s ease;
}

.philosophy-item:hover .icon {
  transform: scale(1.2);
  color: #ff5555;
}

.philosophy-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.philosophy-item p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
}

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

.gallery h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #ff2b2b;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

/* ===== Projects / Games ===== */
.projects{
  padding: clamp(48px, 6vw, 96px) 0;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,.06);
}

.projects-head{
  width: min(1100px, 92%);
  margin: 0 auto 32px;
}

.projects-head h2{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .08em;
  font-size: clamp(28px, 5vw, 60px);
  color: #ff2626;
  text-shadow: 0 0 18px rgba(255,0,0,.35);
  margin: 0 0 6px;
}

.projects-head p{
  max-width: 780px;
  color: rgba(255,255,255,.75);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.6;
}

.projects-grid{
  width: min(1100px, 92%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}

.game-card{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
  background: #1d1d1d;
  height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  transform: translateZ(0); /* smoother */
}

.game-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) brightness(.85) contrast(1.05);
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}

.game-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 90%, rgba(0,0,0,.0) 0%, rgba(0,0,0,.65) 60%, rgba(0,0,0,.92) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%);
  z-index: 1;
  transition: opacity .4s ease;
}

.game-content{
  position: relative;
  z-index: 2;
  padding: 22px;
}

.game-badges{
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.badge{
  font-size: 12px;
  letter-spacing: .02em;
  color: #ddd;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.badge-red{
  color: #fff;
  background: rgba(255, 0, 0, .18);
  border-color: rgba(255, 0, 0, .35);
}

.game-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: .06em;
  margin: 2px 0 4px;
  color: #fff;
}

.game-desc{
  color: rgba(255,255,255,.80);
  font-size: 14px;
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 12px;
}

.game-meta{
  display: flex;
  gap: 16px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  margin-bottom: 14px;
}

.game-actions{
  display: flex;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn-light{
  color: #111;
  background: #fff;
  border-color: #fff;
}

.btn-ghost{
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.25);
}

.btn:hover{
  transform: translateY(-2px);
}

.game-card:hover .game-img{
  transform: scale(1.05);
}

.game-card:hover .game-overlay{
  opacity: .85;
}

/* Responsive */
@media (max-width: 1100px){
  .projects-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
  .projects-grid{ grid-template-columns: 1fr; }
  .game-card{ height: 440px; }
}

/* ===== Awards / Press ===== */
.press {
  padding: clamp(48px, 6vw, 96px) 0;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.press-head{
  width: min(1000px, 92%);
  margin: 0 auto 40px;
}

.press-head h2{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  color: #ff2626;
  text-shadow: 0 0 14px rgba(255,0,0,.35);
  margin-bottom: 10px;
}

.press-head p{
  color: rgba(255,255,255,.75);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.6;
}

/* Logos */
.press-logos{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.press-logos img{
  height: 32px;
  filter: grayscale(1) brightness(.85);
  opacity: .75;
  transition: opacity .3s ease, filter .3s ease;
}

.press-logos img:hover{
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Awards */
.awards-grid{
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.award-card{
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.award-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}

.award-icon{
  font-size: 36px;
  margin-bottom: 14px;
  color: #ff2626;
}

.award-card h3{
  font-size: 18px;
  margin: 6px 0 6px;
  color: #fff;
}

.award-card p{
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

/* Responsive */
@media(max-width: 900px){
  .awards-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px){
  .awards-grid{ grid-template-columns: 1fr; }
  .press-logos img{ height: 24px; }
}

/* ===== Timeline ===== */
.timeline {
  padding: clamp(48px, 6vw, 96px) 0;
  background: #000000;
  position: relative;
}

.timeline-head{
  text-align: center;
  margin-bottom: 60px;
}

.timeline-head h2{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  color: #ff2626;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(255,0,0,.3);
}

.timeline-head p{
  color: rgba(255,255,255,.75);
  font-size: clamp(14px, 1.8vw, 18px);
}

/* Line */
.timeline-container{
  position: relative;
  width: min(1000px, 92%);
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-container::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,.2);
}

/* Items */
.timeline-item{
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

.timeline-content{
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.15);
  padding: 20px;
  border-radius: 12px;
  width: 45%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.timeline-content h3{
  color: #fff;
  margin-bottom: 8px;
}

.timeline-content p{
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  font-size: 15px;
}

.timeline-content:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.5);
}

/* Positioning */
.timeline-content.left{
  left: 0;
}

.timeline-content.right{
  left: 55%;
}

/* Dots */
.timeline-item::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #ff2626;
  border-radius: 50%;
  border: 3px solid #0b0b0b;
  box-shadow: 0 0 12px rgba(255,0,0,.5);
}

/* Responsive */
@media(max-width: 900px){
  .timeline-container::before{ left: 20px; }
  .timeline-content{
    width: 100%;
    margin-left: 50px;
  }
  .timeline-content.right{ left: 0; }
}

/* ===== Contact Section ===== */
.contact-section {
  background: #000000;
  padding: clamp(48px, 6vw, 100px) 20px;
  text-align: center;
  color: #fff;
}

.newsletter {
  margin-bottom: 60px;
}

.newsletter h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #ff2626;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(255,0,0,.4);
}

.newsletter p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  width: 280px;
  font-size: 15px;
}

.newsletter-form button {
  background: #ff2626;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s;
}

.newsletter-form button:hover {
  background: #d92020;
}

/* Contact info */
.contact-info h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 8px;
  color: #ff2626;
}

.contact-info p {
  margin-bottom: 20px;
  color: rgba(255,255,255,.75);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-info li {
  margin: 10px 0;
  font-size: 15px;
}

.contact-info i {
  margin-right: 8px;
  color: #ff2626;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 22px;
  color: #fff;
  transition: color .3s, transform .3s;
}

.social-icons a:hover {
  color: #ff2626;
  transform: scale(1.2);
}

  /* ---- Namespace everything under #our-team to avoid collisions ---- */
  #our-team {
    --ot-bg: #000000;
    --ot-fg: #d7d7d7;
    --ot-dim: #9b9b9b;
    --ot-red: #ff2a2a;
    --ot-card-bg: #121212;
    --ot-border: #262626;
    --ot-shadow: 0 12px 40px rgba(0,0,0,.55);
    --ot-radius: 18px;
    --ot-gap: clamp(18px, 2vw, 28px);
    background: var(--ot-bg);
    color: var(--ot-fg);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.45;
    position: relative;
    isolation: isolate;
  }

  /* soft film grain */
  #our-team::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      repeating-linear-gradient(0deg, rgba(255,255,255,.02), rgba(255,255,255,.02) 1px, transparent 1px, transparent 2px),
      radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.06), transparent 60%),
      radial-gradient(800px 400px at 90% -20%, rgba(255,55,55,.06), transparent 60%);
    mix-blend-mode: overlay;
    opacity: .35;
  }

  #our-team .ot-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 20px 64px;
  }

  /* Top row */
  #our-team .ot-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    margin-bottom: 22px;
    letter-spacing: .02em;
  }
  #our-team .ot-kicker {
    color: var(--ot-red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  #our-team .ot-date {
    display: block;
    font-size: 12px;
    color: var(--ot-dim);
    margin-top: 10px;
  }
  #our-team .ot-top-right {
    font-size: 12px;
    color: #a7a7a7;
    opacity: .8;
    letter-spacing: .08em;
  }

  /* Slider area */
  #our-team .ot-viewport {
    overflow: hidden;
    border-top: 1px solid var(--ot-border);
    border-bottom: 1px solid var(--ot-border);
    padding: calc(var(--ot-gap) - 6px) 0;
  }
  #our-team .ot-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - var(--ot-gap)) / 2);
    gap: var(--ot-gap);
    transition: transform .6s cubic-bezier(.22,1,.36,1);
    will-change: transform;
  }

  /* Cards */
  #our-team .ot-card {
    list-style: none;
    background: var(--ot-card-bg);
    border: 1px solid var(--ot-border);
    border-radius: var(--ot-radius);
    overflow: clip;
    position: relative;
    box-shadow: var(--ot-shadow);
  }

  #our-team .ot-card-link {
    display: grid;
    grid-template-rows: minmax(220px, 36vh) auto;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }

  #our-team .ot-media {
    margin: 0;
    position: relative;
    overflow: hidden;
  }
  #our-team .ot-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .9s cubic-bezier(.22,1,.36,1), filter .6s ease;
    filter: grayscale(.05) contrast(1.05) brightness(.9);
  }
  #our-team .ot-card:hover .ot-media img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.15) brightness(1.0);
  }

  #our-team .ot-meta {
    padding: 18px 18px 22px;
    display: grid;
    gap: 6px;
    background:
      linear-gradient(0deg, rgba(0,0,0,.5), rgba(0,0,0,0) 40%),
      transparent;
  }
  #our-team .ot-title {
    margin: 0;
    font-size: clamp(20px, 2.1vw, 28px);
    letter-spacing: .02em;
  }
  #our-team .ot-role {
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  #our-team .ot-copy {
    margin: 6px 0 0;
    color: #cfcfcf;
    font-size: 15px;
    max-width: 66ch;
  }

  /* Bottom controls */
  #our-team .ot-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
  }
  #our-team .ot-seeall {
    color: var(--ot-fg);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .05em;
    opacity: .9;
  }
  #our-team .ot-seeall:hover span { text-decoration: underline; }

  #our-team .ot-arrows {
    display: inline-flex;
    gap: 8px;
  }
  #our-team .ot-btn {
    width: 38px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--ot-border);
    background: #111;
    color: #eee;
    cursor: pointer;
    font-size: 20px;
    line-height: 0;
    display: grid;
    place-items: center;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  #our-team .ot-btn:hover {
    background: #161616;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(255,42,42,.12);
    transform: translateY(-1px);
  }
  #our-team .ot-btn:active { transform: translateY(0); }

  /* Reveal on scroll (like site’s subtle entrance) */
  #our-team .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
  }
  #our-team .reveal.is-in {
    opacity: 1;
    transform: none;
  }

  /* Responsive */
  @media (max-width: 980px) {
    #our-team .ot-track { grid-auto-columns: 100%; }
    #our-team .ot-top { grid-template-columns: 1fr; row-gap: 6px; }
    #our-team .ot-top-right { justify-self: start; }
  }

  /* --- Scoped variables & base --- */
  :root {
    --philo-bg: #000000;
    --philo-surface: #0f0f0f;
    --philo-text: #e7e7e7;
    --philo-muted: #8c8c8c;
    --philo-accent: #e11d2e; /* rich red */
    --philo-green: #9aff9a; /* subtle ghosting tint */
    --philo-gap: clamp(16px, 2vw, 24px);
    --philo-radius: 14px;
    --philo-speed: 260ms;
  }

  .philo {
    position: relative;
    background: var(--philo-bg);
    color: var(--philo-text);
    padding: 48px min(5vw, 60px) 56px;
    overflow: hidden;
    isolation: isolate;
  }

  .philo::before {
    /* moving grain / scanlines */
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 2px),
      radial-gradient(1200px 60px at 50% -20px, rgba(255,255,255,0.03), transparent 60%); 
    mix-blend-mode: overlay;
    opacity: .45;
    animation: philo-scan 7s linear infinite;
    z-index: 0;
  }
  @keyframes philo-scan { to { transform: translateY(2%); } }

  .philo__wrap { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }

  /* --- Eyebrow / section label --- */
  .philo__eyebrow { margin-bottom: 18px; }
  .philo__eyebrow-glitch {
    position: relative;
    display: inline-block;
    font: 700 12px/1.1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    letter-spacing: .22em;
    color: var(--philo-accent);
    text-transform: uppercase;
    filter: drop-shadow(0 0 0.35px rgba(255,0,0,.25));
  }
  .philo__eyebrow-glitch::before,
  .philo__eyebrow-glitch::after {
    content: attr(data-text);
    position: absolute; inset: 0;
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%);
    opacity: .6;
    mix-blend-mode: screen;
    pointer-events: none;
  }
  .philo__eyebrow-glitch::before { transform: translate(0.6px, 0); color: var(--philo-green); }
  .philo__eyebrow-glitch::after  { transform: translate(-0.6px, 0); color: #4aa3ff; }
  .philo__eyebrow-glitch:hover { animation: philo-glitch 900ms steps(2, jump-none) infinite; }
  @keyframes philo-glitch {
    0%,100% { transform: translate(0,0); }
    20% { transform: translate(0.2px, -0.2px) skewX(.2deg); }
    40% { transform: translate(-0.4px, 0.2px) skewX(-.3deg); }
    60% { transform: translate(0.3px, 0.2px) skewY(.3deg); }
    80% { transform: translate(-0.3px, -0.1px) skewX(.1deg); }
  }

  /* --- Rail / carousel --- */
  .philo__rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: var(--philo-gap);
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .philo__rail::-webkit-scrollbar { height: 8px; }
  .philo__rail::-webkit-scrollbar-thumb { background: #1e1e1e; border-radius: 999px; }
  .philo__rail::-webkit-scrollbar-track { background: #0d0d0d; }

  /* --- Card --- */
  .philo__card {
    background: linear-gradient(0deg, #0b0b0b, #0b0b0b) padding-box;
    border-radius: var(--philo-radius);
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--philo-speed) ease, border-color var(--philo-speed);
    position: relative;
  }
  .philo__card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }

  .philo__meta {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 8px 8px;
    color: var(--philo-muted);
    font: 600 10px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    letter-spacing: .15em; text-transform: uppercase;
  }
  .philo__date { opacity: .85; }
  .philo__tag { opacity: .7; }

  .philo__media {
    display: block; position: relative; isolation: isolate;
    width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
    background:
      radial-gradient(100% 160% at 30% 10%, rgba(255,255,255,0.05), transparent 40%),
      linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)),
      var(--bg) center/cover no-repeat;
    transition: transform 450ms ease, filter 450ms ease, box-shadow 450ms ease;
  }
  .philo__media::after {
    /* soft vignette edge */
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(120% 120% at 50% 50%, transparent 60%, rgba(0,0,0,.55) 100%);
  }
  .philo__card:hover .philo__media { transform: scale(1.03); filter: saturate(1.02) contrast(1.03); }

  .philo__title {
    margin: 14px 12px 6px; font: 800 clamp(18px, 2.2vw, 24px)/1.15 "Segoe UI", Roboto, "Helvetica Neue", Arial, ui-sans-serif;
    letter-spacing: .02em;
    position: relative;
  }
  /* subtle title ghosting like the poster "HOTFIX" stamp vibe */
  .philo__title::before, .philo__title::after {
    content: attr(data-title); position: absolute; inset: 0; pointer-events: none; opacity: .05;
  }
  .philo__title::before { transform: translate(1px, 1px); }
  .philo__title::after  { transform: translate(-1px, -1px); }

  .philo__excerpt {
    margin: 0 12px 16px; color: #cfcfcf;
    font: 500 14px/1.55 "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  }

  /* --- Footer controls --- */
  .philo__footer {
    margin-top: 12px; display: flex; align-items: center; gap: 10px; justify-content: flex-end;
  }
  .philo__seeall {
    color: var(--philo-accent); text-decoration: none; font: 700 12px/1 ui-sans-serif, system-ui;
    letter-spacing: .18em; text-transform: uppercase; transition: opacity var(--philo-speed);
  }
  .philo__seeall:hover { opacity: .75; }

  .philo__arrows { display: inline-flex; gap: 6px; }
  .philo__btn {
    background: #121212; color: #ddd; border: 1px solid rgba(255,255,255,0.08);
    width: 34px; height: 28px; border-radius: 6px; cursor: pointer;
    transition: background var(--philo-speed), transform var(--philo-speed), border-color var(--philo-speed);
  }
  .philo__btn:hover { background: #1a1a1a; transform: translateY(-1px); border-color: rgba(255,255,255,0.14); }
  .philo__btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }

  /* --- Reveal on scroll --- */
  .philo__card { opacity: 0; transform: translateY(10px); }
  .philo__card.is-in { opacity: 1; transform: translateY(0); transition: transform 420ms ease, opacity 420ms ease; }

  /* --- Responsive --- */
  @media (max-width: 1100px) {
    .philo__rail { grid-template-columns: repeat(4, minmax(320px, 1fr)); }
  }
  @media (max-width: 740px) {
    .philo { padding: 36px 18px 44px; }
    .philo__rail { grid-auto-flow: column; grid-auto-columns: 86%; }
  }