body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0c0c0c;
  color: #f5f5f5;
}

/* --- Header --- */
header {
  background-color: #000;
  padding: 15px 0;
  text-align: center;
}
header a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}
header a:hover {
  color: #c6a0ff;
}

.hero {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-content {
  max-width: 600px;
}

.site-logo {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ccc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}
.hero p {
  font-size: 1.2rem;
  color: #bcbcbc;
  margin-bottom: 30px;
}
.btn-primary {
  background: linear-gradient(90deg, #7a5cff, #9b8cff);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #fff;
  color: #111;
}

/* --- Search Bar --- */
.search-section {
  background-color: #111;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.search-bar, .filter-select {
  padding: 10px;
  margin: 5px;
  border: 1px solid #333;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 6px;
}
.btn-secondary {
  padding: 10px 20px;
  background: #2b2b2b;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: #7a5cff;
}

/* --- Stories --- */
.stories-section {
  padding: 50px 10%;
  text-align: center;
}
.stories-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.story-card {
  background-color: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}
.story-card h3 {
  font-size: 1.3rem;
  color: #fff;
}
.story-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 10px 0 15px 0;
  line-height: 1.5;
}
.story-card small {
  color: #888;
}
.no-stories {
  color: #888;
  margin-top: 20px;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 20px;
  color: #666;
  border-top: 1px solid #222;
  background-color: #0a0a0a;
  font-size: 0.9rem;
}
