/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0a0a0a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
header {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 150px 20px 100px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* ===== Features Section ===== */
.features {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffd700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.5rem;
  transition: border 0.3s, transform 0.3s;
}

.feature-card:hover {
  border: 1px solid #ffd700;
  transform: translateY(-5px);
}

.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #ccc;
}

/* ===== Blog Section ===== */
.blog {
  padding: 80px 20px;
  text-align: center;
}

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

.blog-card {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: border 0.3s, transform 0.3s;
  text-align: left;
}

.blog-card:hover {
  border: 1px solid #ffd700;
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {
  color: #ffd700;
  margin: 1rem;
}

.blog-card p {
  color: #ccc;
  margin: 0 1rem 1rem;
}

.blog-card a {
  display: block;
  margin: 0 1rem 1.5rem;
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card a:hover {
  color: #ffb347;
}

/* ===== Footer ===== */
footer {
  background: #0a0a0a;
  padding: 60px 20px 20px;
  color: #fff;
  border-top: 1px solid #333;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .nav-links {
    display: none;
  }

  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

