* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #111;
  color: #f5f5f5;
  line-height: 1.5;
}

header {
  padding: 2rem 1.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

header a {
  color: #9ecbff;
  text-decoration: none;
}

header a:hover {
  text-decoration: underline;
}

h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: normal;
}

header p {
  margin: 0.5rem 0 0;
  color: #aaa;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.album-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.album-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.album-thumb {
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
}

.album-thumb img,
.album-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-card h2 {
  margin: 1rem 1rem 0.25rem;
  font-size: 1.25rem;
  font-weight: normal;
}

.album-card p {
  margin: 0 1rem 1rem;
  color: #999;
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding: 0 1.5rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.media-item {
  margin: 0;
  background: #1b1b1b;
  border-radius: 10px;
  overflow: hidden;
}

.media-item img,
.media-item video {
  width: 100%;
  display: block;
  vertical-align: middle;
}
