body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fdfdfd;
  color: #333;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #ff0050, #d62976, #962fbf);
  color: white;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.logo:hover {
  opacity: 0.8;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.input-section {
  margin-top: 1rem;
}

input[type="text"] {
  padding: 0.5rem;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
}

button {
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  background-color: #d62976;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #a1235d;
}

.error {
  color: #ff4d4d;
  margin-top: 1rem;
}

.stories-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  gap: 1.5rem;
}

.story-card {
  width: 280px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.story-card:hover {
  transform: scale(1.02);
}

.story-card img,
.story-card video {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.story-card a {
  display: block;
  padding: 0.7rem;
  text-decoration: none;
  color: #00bcd4;
  font-size: 0.95rem;
  text-align: center;
}

footer {
  background: #f1f1f1;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d62976;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #d62976;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.spinner {
  border: 6px solid #eee;
  border-top: 6px solid #d62976;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 1rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.profile-section {
  margin: 2rem auto;
  padding: 1rem;
  max-width: 600px;
  text-align: center;
}

.profile-card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  justify-content: center;
}

.profile-meta {
  font-size: 0.9rem;
  color: #555;
  text-align: left;
}

/* === FAQ === */
.faq-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00bcd4;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: #f9f9f9;
  border: none;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  color: #333;
}

.faq-question:hover {
  background-color: #d62976;
  color: #fff;
}

.faq-answer {
  padding: 1rem;
  display: none;
  background: #fdfdfd;
  border-top: 1px solid #ddd;
  color: #555;
}

/* === SEO TEXT === */
.seo-text-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seo-text-section h2 {
  color: #d62976;
  margin-bottom: 1rem;
}

.seo-text-section h3 {
  margin-top: 2rem;
  color: #333;
}

.seo-text-section p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.6;
}

.seo-text-section ul {
  padding-left: 1.5rem;
  color: #555;
}

.seo-text-section li {
  margin-bottom: 0.5rem;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1rem;
  text-align: left;
}

.blog-content h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #333;
}

.blog-content a {
  text-decoration: none;
  color: #00bcd4;
}

.blog-content .read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #d62976;
}

/* === Cookie === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.9rem;
}

.cookie-banner button {
  background: #d62976;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-banner button:hover {
  background: #962fbf;
}
