body {
  background: linear-gradient(135deg, #2a2a3a, #3a3a4a);
  color: #eee;
  font-family: "Courier New", Courier, monospace;
  padding: 2rem;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: 3rem;
  color: #4ecdc4;
  text-shadow: 0 0 15px #4ecdc4;
  margin-bottom: 1rem;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #888;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
  border-color: #4ecdc4;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  transition: left 0.5s;
}

.story-card:hover::before {
  left: 100%;
}

.story-title {
  font-size: 1.5rem;
  color: #6b9eff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px #6b9eff;
}

.story-author {
  color: #4ecdc4;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.story-description {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  background: rgba(107, 158, 255, 0.2);
  color: #6b9eff;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid #6b9eff;
}

.tag.spicy {
  background: rgba(255, 100, 0, 0.2);
  color: #ff6600;
  border-color: #ff6600;
}

.tag.cyberpunk {
  background: rgba(0, 255, 255, 0.2);
  color: #00ffff;
  border-color: #00ffff;
}

.read-button {
  background: linear-gradient(45deg, #6b9eff, #8eb3ff);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.read-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(107, 158, 255, 0.4);
}

.stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid #333;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  color: #4ecdc4;
  font-weight: bold;
}

.stat-label {
  color: #888;
  font-size: 0.9rem;
}

.coming-soon {
  opacity: 0.6;
  pointer-events: none;
}

.coming-soon .read-button {
  background: #666;
  cursor: not-allowed;
}

.page-footer {
  margin-top: 3rem;
  color: #777;
  text-align: center;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }
}
