body {
    background-color: #000000;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
  }
  /*üst bar*/
  .Header_Bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items:center;
    height: 85px;
    background-color: #0d0d0d;
  }
  
  .Header_Bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7e3fff;
    box-shadow: 0 0 10px #7e3fff, 0 0 20px #b88bff, 0 0 40px #b88bff;
  }
  
  
  /* ÜST KENAR (0% → 75%) site başlığı kesimi */
  .walp {
    position: relative;
    width: 20%;
    height: 100%;
    background-color: #3a1366;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%, 0% 0);
    overflow: visible;
    display: flex;
    justify-content: center; /* Yatayda ortala */
    align-items: center;     /* Dikeyde ortala */
  }
  
@media (max-width: 768px),(max-width:820px),(max-width:1024px) {
  .walp {
    width: 60%;
  }
}
.walp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 2px;
  background: #7e3fff;
  box-shadow:
      0 0 10px #7e3fff,
      0 0 20px #b88bff,
      0 0 40px #b88bff;
}

/* SAĞ EĞİMLİ KENAR (75% → 100%) */
.walp::after {
  content: "";
  position: absolute;
  top: 0;
  left: 75%; /* Yüzdelik değeri koruyarak */
  width: calc(141% - 15%); /* Eğimli kenarın boyutunun dinamik olması için */
  height: 2px;
  background: #7e3fff;
  box-shadow:
    0 0 10px #7e3fff,
    0 0 20px #b88bff,
    0 0 40px #b88bff;
  transform: rotate(42.5deg); /* sağ eğim açısı */
  transform-origin: top left;
}

@media (max-width: 768px),(max-width:820px),(max-width:1024px) {
  .walp::after {
  display: none; /* Mobilde gizlemek için */
}
}


/*Site Başlığı*/
.Sencorp {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  margin: 0;
  padding-right: 15%; /* Sağdan biraz boşluk bırak */
  text-align: center; /* Her ihtimale karşı ortalama */
}
.Sencorp:hover{
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive ayarlar */
@media (max-width: 768px), (max-width: 1024px),(max-width: 1080px) {
  .menu-toggle {
    display: block;
    margin-left: 16%;
  }

  nav {
    position: static; /* artık relative değil */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 81%;
    left: 0;
    width: -webkit-fill-available; /* tüm ekran genişliğini kaplasın */
    padding: 1rem 2rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #616161; /* opsiyonel ayraç çizgisi */
  }

  .nav-links li:last-child {
    border-bottom: none;
  }


}

/* Büyük ekranlar için (desktop) ayarları */
@media (min-width: 1280px) {
  .nav-links {
    display: flex; /* Menü başlıkları yatay sıralansın */
    flex-direction: row; /* Yatay sıralama */
    gap: 1.5rem; /* Başlıklar arasına boşluk */
    font-size: 0.875rem;
    justify-content: flex-start; /* Sol tarafı hizalayın */
    background-color: transparent; /* Arka planı transparan yap */
    position: relative; /* Menü normal pozisyonda olacak */
    top: 0; /* Menü yukarı kaymasın */
    left: 0;
    width: auto; /* Sabit genişlik */
    box-shadow: none; /* Gölgeyi kaldır */
  }

  .nav-links li {
    text-align: center;
    padding: 0; /* Başlıklar arasına ekstra boşluk bırakmayalım */
    border: none; /* Border'ı kaldır */
  }


  .nav-links li:last-child {
    border-bottom: none; /* Son öğe için border yok */
  }
}


.Btn{
    font-weight: bold;
    color: white;
    border: none;
    text-decoration: none;
    background: none;
    font-size: 18px;
    font-family: 'Bebas Neue', sans-serif;
}
.Btn:hover {
    cursor: pointer;
    color: rgb(14, 106, 212);
    text-shadow:
        0 0 5px rgb(100, 14, 212),
        0 0 10px rgb(140, 14, 212),
        0 0 20px rgb(200, 100, 255),
        0 0 40px rgb(200, 100, 255);
}


.btn_li{
    list-style: none;
}





.Hero_Section {
    position: relative;
    width: 100%;
    height: 92vh; /* Ekranın %75 yüksekliği */
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    .Hero_Section {
      height: 90vh;
    }
  
    .hero_content h1 {
      font-size: 2rem;
    }
  
    .hero_content p {
      font-size: 1rem;
    }
  }
  
  .hero_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  /* Karartma */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.85) 40%,
      rgba(0, 0, 0, 2) 75%
    );
    z-index: 2;
  }
  
  
  
  /* Yazı alanı */
  .hero_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 3;
  }
  
  .hero_content h1 {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .hero_content p {
    font-size: 1.25rem;
    opacity: 0.9;
  }
  

.Login_text {
    width: 50%;
    height: 60%;
    position: absolute;
    top: 50%; /* Dikeyde ortalamak için */
    left: 50%; /* Yatayda ortalamak için */
    transform: translate(-50%, -50%); /* Kendini tam ortalamak için */
    text-align: center; /* text-center */
}

.About-section{
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem; /* py-16 */
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
    font-family: 'Orbitron', sans-serif;
  background: linear-gradient(45deg, #000000, #000000); /* Paralel renk geçişi */
}

/* Kaydırma çubuğunun tümünü hedefle */
::-webkit-scrollbar {
  width: 10px; /* yatay scrollbar için height: 10px kullanılır */
  height: 10px; /* dikey scrollbar için width: 10px */
}

/* Kaydırma çubuğunun arka planını (track) özelleştirelim */
::-webkit-scrollbar-track {
  background: #2b0a39; /* koyu mor arka plan */
}

/* Kaydırma başlığını (thumb) neon hale getirelim */
::-webkit-scrollbar-thumb {
  background: rgb(140, 14, 212);
  box-shadow: 0 0 10px rgb(140, 14, 212),
              0 0 20px rgb(200, 100, 255),
              0 0 40px rgb(200, 100, 255); /* neon efekt */
}

/* Hover durumunda başlığı daha parlak yapalım */
::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 0, 255); /* neon mor rengi */
  box-shadow: 0 0 20px rgb(255, 0, 255),
              0 0 30px rgb(255, 100, 255),
              0 0 50px rgb(255, 100, 255);
}

.games {
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem; /* py-16 */
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: linear-gradient(to bottom, #000000, #320146);

}

.section-title {
    font-size: 1.975rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.game-cards-container {
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Kartlar için responsive grid */
    gap: 2rem;
    justify-items: center; /* Kartları ortala */
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}


.game-card {
  background-color: #1a202c;
    border-radius: 1.2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.game-card:hover {
  cursor: pointer;
  transform: translateY(-20px); /* Hover efekti */
  box-shadow: 0 0 25px 5px rgba(255, 38, 0, 0.7); /* Neon ışık efekti */
}

.game-card::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #5e00b6, #ff6600); /* Neon renk geçişi */
  border-radius: 1.2em;
  z-index: -1; /* Diğer öğeler üzerinde kalmaması için */
}


.game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #3a1366;
  box-shadow: 0 4px 10px rgba(58, 19, 102, 0.6), 0 0 15px rgba(58, 19, 102, 0.8);
  transition: box-shadow 0.3s ease-in-out;
}
.game-image:hover {
  box-shadow: 0 4px 20px rgba(58, 19, 102, 0.8), 0 0 30px rgba(58, 19, 102, 1);
}

.game-info {
    padding: 1rem;
    color: #ffffff;
}

.game-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.game-desc {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.play-btn {
    background-color: #000000;
    color: #fff;
    border: 2px solid #8000bb;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: #33095a;
    cursor: pointer;
}

.game-btn {
    background-color: #f59e0b;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
}

.game-btn:hover {
    background-color: #fbbf24;
}

.promotion {
  background: linear-gradient(to bottom, #320146, #000000);
  padding: 6rem 2rem;
  color: white;
}

.promotion-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.promo-text {
  flex: 1;
  min-width: 300px;
}

.promo-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.promo-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.promo-button {
  background-color: #cc00ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.promo-button:hover {
  background-color: #e6004e;
}

.promo-video {
  flex: 1;
  min-width: 300px;
}

.promo-video iframe {
  width: 100%;
  height: 300px;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 0, 242, 0.5);
}


.contact_section {
  color: #f1f1f1;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact_section h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-desc {
  color: #a0aec0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-email {
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background-color: #2d2d2d;
  transition: background-color 0.3s;
}

.contact-links a:hover {
  background-color: #8000bb;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}


.footer_b{
  text-align: center;        /* text-center */
  padding: 1.5rem;           /* p-6 (6 * 0.25rem = 1.5rem) */
  color: #6b7280;            /* text-gray-500 */
  font-size: 0.875rem;       /* text-sm */
  box-shadow: 0 0 10px #7e3fff, 0 0 20px #b88bff, 0 0 40px #b88bff;
}


