/* Reset ve temel stil */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }
body { background: #1a1a1a; color: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.btn { display: inline-block; padding: 12px 24px; background: #8a2be2; color: #fff; border-radius: 4px; transition: 0.3s; }
.btn:hover { background: #6b1eb8; }

/* Header */
header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 10%;
  background: #000;
  position: sticky; top: 0; z-index: 100;
}
header .logo { font-size: 1.8rem; font-weight: bold; }
header nav a { margin: 0 15px; color: #eee; }
header .btn { margin-left: 20px; }

/* Hero */
.hero {
  height: 80vh;
  background: url('hero-bg.jpg') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 0 10%;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; }
.hero-btn { font-size: 1.1rem; }

/* Features kart bölümü */
.features {
  display: flex; flex-wrap: wrap;
  justify-content: center; padding: 60px 10%;
  gap: 30px;
}
.card {
  background: #2a2a2a; padding: 30px;
  border-radius: 8px; max-width: 300px;
  text-align: center;
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-10px); }
.card h3 { margin-bottom: 15px; font-size: 1.5rem; color: #8a2be2; }
.card p { font-size: 1rem; color: #ccc; }

/* Footer */
footer { background: #000; padding: 40px 10%; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links a, .social a { margin: 0 10px; font-size: 0.9rem; color: #aaa; }
.scripts {
  padding: 60px 10%;
  background: #121212;
  text-align: center;
  color: #fff;
}

.scripts h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #8a2be2;
}

.scripts .subtext {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 40px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  max-width: 360px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.video-card h4 {
  margin-top: 15px;
  color: #ddd;
}

.video-card:hover {
  transform: scale(1.03);
}
.more-coming {
  margin-top: 40px;
  font-size: 1.5rem;
  color: #aaa;
  font-style: italic;
  animation: fadeIn 2s ease-in-out;
}

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