/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #f7f7f7;
  line-height: 1.6;
  height: 100vh;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #111;
  color: #fff;
}
.header-logo p {
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
}

.header-logo img {
  width: 50px;
  position: relative;
  top: 5px;
  margin-right: 3px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
header nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 6px;
}
header nav a:hover {
  color: #1db954;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: url('hero-bg.jpg') no-repeat center/cover;
  color: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero .cta {
  background: #1db954;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.hero .cta:hover {
  background: #17a64b;
}

/* Featured Plugins */
.plugins {
  padding: 3rem 2rem;
  text-align: center;
}
.plugins h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #000;
  display: inline-block;
  padding-bottom: 1px;
}
.plugin-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.plugin-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.plugin-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.plugin-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.plugin-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #555;
}
.plugin-card .btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 4px;
}
.plugin-card .btn:hover {
  background: #333;
}
.plugin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer .tip-link {
  background: #2962ff;
  padding: 10px;
  position: relative;
  top: 6px;
}

footer p {
  margin-top: 24px;
}