@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Work+Sans:ital@0;1&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --accent: #f94144;
  --accent-600: #e83a3c;
  --accent-700: #d73234;
  --bg: #f7f7f8;
  --surface: #ffffff;
  --text: #1d1d1d;
  --muted: #666;
  --ring: rgba(249, 65, 68, 0.25);
  --shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Nunito Sans", sans-serif;
  background-color: #dadada;
  position: relative;
  overflow-x: hidden;

}

nav {
  position: fixed;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: rgb(255, 255, 255, 0.7);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 2px #f94144;
  -webkit-backdrop-filter: blur(8px) saturate(100%);
  backdrop-filter: blur(8px) saturate(100%);
  z-index: 1000;
}

nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

nav .logo img {
  background-color: rgb(255, 255, 255, 0.7);
  border: 1px #f94144 solid;
  border-radius: 99rem;
  width: 50%;
  max-width: 50px;
}

nav .logo span {
  font-weight: 900;
  font-size: 2rem;
  color: #f94144;
}

nav .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

nav .links a {
  color: #f94144;
  text-decoration: none;
  font-weight: 700;
  border: 5px transparent dashed;
  padding: 5px;
  border-radius: 8px;
  transition: color 0.3s ease-in-out, border 0.5s ease-in-out;

}

nav .links a:hover {
  border: 5px #f94144 dashed;
}

/* Mobil Menü İkonu */
.mobile-menu-icon {
  display: none;
  font-size: 1.8rem;
  color: #f94144;
  cursor: pointer;
}

/* Ekran küçükse (mobil) */
@media screen and (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .mobile-menu-icon {
    display: block;
  }

  nav .links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    display: none;
    /* Başlangıçta gizli */
    animation: slideDown 0.3s ease forwards;
  }

  nav .links.show {
    display: flex;
  }

  nav .links a {
    width: 100%;
    padding: 10px 15px;
    border-left: 4px solid transparent;
  }

  nav .links a:hover {
    border-left: 4px solid #f94144;
    background-color: rgba(249, 65, 68, 0.1);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


header.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 99;
  box-shadow: 0 0 2px #f94144;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

header.hero::before {
  content: "";
  position: absolute;
  top: 250px;
  left: 20%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(249, 65, 68, 0.432);
  /* veya istediğin renk */
  backdrop-filter: blur(8px) saturate(100%);
  filter: blur(62px);
  -webkit-backdrop-filter: blur(8px) saturate(100%);
  z-index: 0;
  /* İçeriğin altında kalmasını sağlar */
  pointer-events: none;
  /* Tıklanabilir olmaması için */
  z-index: -1;
}

header.hero::after {
  content: "";
  position: absolute;
  top: 170px;
  left: 80%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(65, 181, 249, 0.432);
  /* veya istediğin renk */
  backdrop-filter: blur(8px) saturate(100%);
  filter: blur(62px);
  -webkit-backdrop-filter: blur(8px) saturate(100%);

  /* İçeriğin altında kalmasını sağlar */
  pointer-events: none;
  /* Tıklanabilir olmaması için */
  z-index: -1;
}

.hero .title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #f94144;

  font-weight: 900;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 700;
}

.hero .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.hero .buttons a:first-child {
  background-color: #f94144;
  padding: 12px 20px;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 20px #f94144;
  transition: box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hero .buttons a:last-child {
  background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 15px;
  text-decoration: none;
  color: #1d1d1d;
  box-shadow: 0 0 20px #ffffff;
  transition: box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hero .buttons a:last-child span {
  color: #f94144;
  font-weight: 900;
}

.hero .buttons a:hover {
  box-shadow: 0 0 0px transparent;
}

.hero .video-btn {
  margin: 1rem;
}

.hero .video-btn button {
  background-color: #f94144;
  transition: 0.2s all ease-in-out;
  border-radius: 999rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 20px #f94144;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.hero .video-btn button:hover {
  background-color: transparent;
  border: 0.2rem #f94144 solid;
  color: #f94144;
  box-shadow: 0 0 50px #f94144;
}

.video-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  background-color: #fff;
  padding: 0.5rem;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-modal iframe {
  border-radius: 6px;
  max-width: 600px;
  width: 560px;
  height: 315px;



}

@media (max-width: 768px) {
  .video-modal iframe {

    width: 350px;

    height: 315px;



  }
}

.video-modal .close {
  position: absolute;
  top: -15px;
  right: -10px;
  background-color: #f94144;
  transition: 0.2s all ease-in-out;
  border-radius: 999rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 20px #f94144;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.hero .bottom {
  position: absolute;
  bottom: 12px;

}

.hero .bottom a {
  text-decoration: none;
  color: #f94144;
  font-size: 1.5rem;
}

@media (max-width: 768px) {

  .video-modal .close {
    position: absolute;
    top: 15px;
    right: 10px;
    padding: 5px;
    background-color: #f94144;
    transition: 0.2s all ease-in-out;
    border-radius: 999rem;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 20px #f94144;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  header.hero {
    padding: 1.5rem 1rem;
    min-height: 100vh;
    border-radius: 0;
  }

  header.hero::before,
  header.hero::after {
    width: 50px;
    height: 50px;
    top: 150px;
    filter: blur(42px);
  }

  .hero .title {
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.125rem;
    text-align: center;
  }

  .hero .buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .hero .buttons a {
    width: 100%;
    text-align: center;
  }

  .hero .bottom {
    position: static;
    margin-top: 2rem;
  }
}


section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

section .title {
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  margin-bottom: 10px;
}

section .title::before {
  content: "";
  width: 10%;
  height: 5px;
  border-radius: 8px;
  position: absolute;
  bottom: -3px;
  background-color: #f94144;
}

.why-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

}

.why {
  background: #f94144;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: 0 1px 15px #f94144, 5px 5px #d73234;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow .3s ease-in-out;
}

.why:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 5px #f94144, 1px 1px #d73234;
}

/* İkon Stili */
.why .icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* Başlık */
.why h1 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #fff;
}

/* Paragraf */
.why p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
}

/* Tüm kutuların konteyneri (isteğe bağlı) */
.why-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.banner-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.banner {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 14px;
  display: flex;
  gap: .6rem;
  align-items: center;
  box-shadow: 0 1px 15px var(--accent), 5px 5px var(--accent-700);
  transition: box-shadow .2s ease;
}

.banner:hover {
  box-shadow: 0 1px 5px var(--accent), 1px 1px var(--accent-700)
}

.banner h4 {
  margin: 0
}

.banner .icon {
  font-size: 1.25rem
}

/* Masaüstü görünüm için */
@media (min-width: 768px) {
  .why-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .why {
    flex: 1;
    text-align: left;
    align-items: flex-start;
  }

  .why .icon {
    margin-bottom: 0.5rem;
  }

  .banners {
    flex-direction: row;
    justify-content: space-between;
  }
}

.item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.5rem;
  position: relative;
}

.number {
  background-color: #f94144;
  color: white;
  border-radius: 999rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -40px;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1rem;
}

.games {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* Card stili */
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Görsel */
.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Başlık */
.card h1 {
  font-size: 1.25rem;
  margin: 16px;
  color: #333;
}

/* Açıklama */
.card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 16px 16px 16px;
}

/* Buton/Link */
.card a {
  background-color: #f94144;
  color: white;
  text-align: center;
  padding: 12px 0;
  margin: 0 16px 16px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.card a:hover {
  background-color: #d73234;
}

.tanitim-c {
  display: flex;
  justify-content: center;
  margin: 5px;

}

.tanitim {
  max-width: 1000px;
  width: 100%;
  border-radius: 12px;
}

.box-landing-1 {
  display: flex;
  width: 100%;

  border-radius: 12px;
  overflow: hidden;
  /* İç kutucukların köşeleri kırpılsın */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* — Ana kapsayıcı — */
.box-landing-1 {
  display: flex;
  width: 100%;

  min-height: 60vh;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* — Sol kutu — */
.box-landing-1 .box-left {
  flex: 0 0 45%;

  min-height: 60vh;
  background-color: #f94144;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.box-landing-1 .box-left h1 {
  font-size: 4rem;
  line-height: 1.2;
  text-align: left;
}

/* — Sağ kutu — */
.box-landing-1 .box-right {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

.box-landing-1 .box-right .content {
  flex: 1;
}

.box-landing-1 .box-right h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #222;
}

.box-landing-1 .box-right p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* — CTA Buton — */
.box-landing-1 .cta-button {
  background-color: #f94144;
  padding: 15px;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 20px #f94144;
  transition: all 0.3s ease-in-out, color 0.3s ease-in-out;
  border: none;
  font-weight: 900;
  cursor: pointer;
}

.box-landing-1 .cta-button:hover {

  opacity: .5;
  box-shadow: 0 0 50px #f94144;
}


/* — Responsive (≤768px) — */
@media (max-width: 768px) {
  .box-landing-1 {
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
  }

  .box-landing-1 .box-left {
    flex: 0 0 2;
    width: 100%;
    min-height: 50vh;
    padding: 2rem;
  }

  .box-landing-1 .box-left h1 {
    font-size: 2.5rem;
  }

  .box-landing-1 .box-right {
    padding: 2rem;
  }

  .box-landing-1 .box-right h2 {
    font-size: 1.3rem;
  }

  .box-landing-1 .box-right p {
    font-size: 1rem;
  }

  .box-landing-1 .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
  }
}

/* — Daha ufak ekranlar (≤480px) için — */
@media (max-width: 480px) {
  .box-landing-1 .box-left h1 {
    font-size: 1.6rem;
  }

  .box-landing-1 .box-right h2 {
    font-size: 1.1rem;
  }

  .box-landing-1 .box-right p {
    font-size: 0.9rem;
  }
}

.box-landing-2 {
  display: flex;
  width: 100%;
  min-height: 60vh;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* — Sol kutu — */
.box-landing-2 .box-left {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

.box-landing-2 .box-left .content {
  flex: 1;
}

.box-landing-2 .box-left h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #222;
}

.box-landing-2 .box-left p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* — CTA Buton — */
.box-landing-2 .cta-button {
  background-color: #f94144;
  padding: 15px;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 20px #f94144;
  transition: all 0.3s ease-in-out, color 0.3s ease-in-out;
  border: none;
  font-weight: 900;
  cursor: pointer;
}

.box-landing-2 .cta-button:hover {
  opacity: .5;
  box-shadow: 0 0 50px #f94144;
}

/* — Sağ kutu — */
.box-landing-2 .box-right {
  flex: 0 0 45%;
  min-height: 60vh;
  background-color: #f94144;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.box-landing-2 .box-right h1 {
  font-size: 4rem;
  line-height: 1.2;
  text-align: left;
}

/* — Responsive (≤768px) — */
@media (max-width: 768px) {
  .box-landing-2 {
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
  }

  .box-landing-2 .box-left {
    flex: 0 0 2;
    width: 100%;
    min-height: 50vh;
    padding: 2rem;
  }

  .box-landing-2 .box-left h2 {
    font-size: 1.3rem;
  }

  .box-landing-2 .box-left p {
    font-size: 1rem;
  }

  .box-landing-2 .box-right {
    padding: 2rem;
  }

  .box-landing-2 .box-right h1 {
    font-size: 2.5rem;
  }

  .box-landing-2 .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
  }
}

/* — Daha ufak ekranlar (≤480px) için — */
@media (max-width: 480px) {
  .box-landing-2 .box-left h2 {
    font-size: 1.1rem;
  }

  .box-landing-2 .box-left p {
    font-size: 0.9rem;
  }

  .box-landing-2 .box-right h1 {
    font-size: 1.6rem;
  }
}

.site-footer {
  background-color: rgb(255, 255, 255, 0.7);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  box-shadow: 0 -2px rgba(249, 65, 68, 0.9);
  color: #f94144;
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 1rem;
  color: #f94144;
}

.footer-col p,
.footer-col a {
  color: #1d1d1d;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(94, 94, 94, 0.041);
}

@media (max-width: 600px) {

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .site-footer {
    padding: 2rem 1rem;
  }

}