
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}
.banner {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
  border-radius: 12px;
  margin-bottom: 2rem;
  user-select: none;
}

.banner small {
  display: block;
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.85;
}
.banner .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner h1 a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
}
.banner nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}
.banner nav a:hover {
  text-decoration: underline;
}
h1 {
  text-align: center;
  color: #222;
  margin: 1rem 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 0 1rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
}
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 200px;
}
.card h2 {
  margin: 0.5rem;
  font-size: 1.1rem;
}
.card p {
  margin: 0 0.5rem 0.5rem;
  font-size: 0.9rem;
  color: #666;
}
.categories {
  font-style: italic;
  color: #888;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.pagination a {
  padding: 0.6rem 1.2rem;
  background-color: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin: 0 4px;
  transition: background-color 0.3s;
}
.pagination a:hover {
  background-color: #764ba2;
}
.pagination a.current-page {
  background-color: #333;
}
.pagination button {
  background-color: #667eea;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pagination button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.pagination button:hover:not(:disabled) {
  background-color: #764ba2;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.main-content {
  padding: 0 1rem 2rem 1rem;
  max-width: 900px;
  margin: 0 auto 4rem auto;
}
.info-section {
  background: #f0f4ff;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334e9b;
  box-shadow: 0 2px 6px rgba(51, 78, 155, 0.1);
}

.download-section {
  margin: 20px 0;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: #667eea;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
  background-color: #5564d8;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(85, 100, 216, 0.6);
}

.related-wallpapers {
  margin-top: 40px;
}

.related-wallpapers h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #444;
  border-bottom: 2px solid #667eea;
  padding-bottom: 6px;
}

.related-wallpapers ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.related-wallpapers ul li {
  background: #e7ecff;
  border-radius: 8px;
  padding: 10px 14px;
  flex: 1 1 calc(33% - 20px);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
  transition: background-color 0.3s ease;
}

.related-wallpapers ul li a {
  text-decoration: none;
  color: #334e9b;
  font-weight: 600;
  display: block;
}

.related-wallpapers ul li:hover {
  background-color: #c0d1ff;
}

.back-gallery {
  margin-top: 40px;
  text-align: center;
}

.back-gallery a {
  background-color: #667eea;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-gallery a:hover {
  background-color: #5564d8;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(85, 100, 216, 0.6);
}
/* Fonts */
body {
  font-family: 'Roboto', sans-serif;
  color: #2c3e50; /* dark slate blue */
  background-color: #f8fafc; /* very light cool gray */
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, strong {
  font-family: 'Poppins', sans-serif;
  color: #1e2a4d; /* deep navy */
}

/* Info Sections */
.info-section {
  background: #d9e6fb; /* light pastel blue */
  border-radius: 12px;
  padding: 14px 20px;
  margin: 14px 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2a3f6e; /* steel blue */
  box-shadow: 0 4px 8px rgba(41, 61, 105, 0.1);
  font-weight: 600;
}

/* Download Button */
.download-section {
  margin: 28px 0;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 32px;
  border-radius: 36px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(101, 66, 255, 0.5);
  transition: background 0.35s ease, transform 0.25s ease;
  letter-spacing: 0.05em;
  font-family: 'Poppins', sans-serif;
}

.download-btn:hover {
  background: linear-gradient(135deg, #5430a6 0%, #1a53d1 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(84, 48, 166, 0.7);
}

/* Related Wallpapers */
.related-wallpapers {
  margin-top: 48px;
}

.related-wallpapers h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #344e86; /* steel blue */
  border-bottom: 3px solid #2575fc;
  padding-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.related-wallpapers ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.related-wallpapers ul li {
  background: #e9efff; /* very light pastel blue */
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1 1 calc(33% - 24px);
  box-shadow: 0 3px 12px rgba(37, 117, 252, 0.15);
  transition: background-color 0.35s ease;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}

.related-wallpapers ul li a {
  text-decoration: none;
  color: #2a3f6e;
  display: block;
}

.related-wallpapers ul li:hover {
  background-color: #c8d9ff;
  box-shadow: 0 5px 18px rgba(37, 117, 252, 0.3);
}

/* Back to Gallery */
.back-gallery {
  margin-top: 50px;
  text-align: center;
}

.back-gallery a {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 14px 36px;
  border-radius: 36px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(101, 66, 255, 0.5);
  display: inline-block;
  transition: background 0.35s ease, transform 0.25s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.05em;
}

.back-gallery a:hover {
  background: linear-gradient(135deg, #5430a6 0%, #1a53d1 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(84, 48, 166, 0.7);
}
