  /* Genel yapı */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
}

h1, h2, h3, h4 {
  color: #2c3e50;
}

/* Hero bölümü */
.hero {
  background: linear-gradient(-45deg, #ffecd2, #fcb69f, #fceabb, #f8b500);
  background-size: 400% 400%;
  animation: fadeInUp 1s ease-out, gradientMove 12s ease infinite;
  color: #2c3e50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px dashed #ffe066;
  position: relative;
  overflow: hidden;
}

.hero a.btn:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Animasyonlar */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Game kartları */
.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.game-card {
  background-color: #fffbea;
  border-left: 6px solid #ffcf56;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.game-card h3 {
  margin: 0 0 0.5rem;
  color: #2c3e50;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.game-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #444;
}

.game-card a.btn {
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 20px;
}

/* Sınıf kartları renkleri */
.card-1 { background-color: #fffbea; }
.card-2 { background-color: #e9f7ef; }
.card-3 { background-color: #e8f4f8; }
.card-4 { background-color: #fdecea; }

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

/* Section içerik düzeni */
section {
  font-size: 1.05rem;
  line-height: 1.7;
}

section strong {
  color: #f85a40;
}

section a {
  transition: all 0.3s ease;
}

section a:hover {
  color: #0d6efd;
  text-decoration: none;
}

/* Kurumsal bağlantılar */
.kurumsal-link {
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.kurumsal-link:hover {
  background-color: #f0f0f0;
  color: #007bff;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  margin-top: 3rem;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #ccc;
}



.reklam-alani {
  max-width: 100%;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
}

.reklam-alani img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.reklam-alani img:hover {
  transform: scale(1.02);
}

  .dual-menu {
      display: flex;
      justify-content: center;
      gap: 20px;
      max-width: 400px;
      margin: auto;
    }

    .dual-menu a {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
      min-height: 70px;
    }

    .dual-menu a:hover {
      background: #fff7e6;
      transform: scale(1.05);
    }

    .dual-menu i {
      font-size: 32px;
      margin-bottom: 4px;
    }

    .home { color: #ff5722; }
    .fast { color: #4caf50; }

    .dual-menu span {
      font-size: 14px;
      color: #333;
    }

    @media (max-width: 480px) {
      .dual-menu i {
        font-size: 28px;
      }

      .dual-menu span {
        font-size: 12px;
      }
    }

    .tanitim-resmi {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
