@import url('colors.css');

body {
  background-color: var(--color-background);
  color: var(--text-primary);
  /* ... */
}

body {
  background-color: #111;
  color: #ff006d;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1 {
  color: #ff006d;
  font-size: 2.5rem;
  margin: 1rem 0;
}

h1 .highlight {
  color: #00ffff;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav li {
  position: relative;
}

nav li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.6rem;
  color: #ff006d;
}

nav a {
  text-decoration: none;
  color: #00ffff;
  font-weight: bold;
  padding: 0 0.5rem;
}

.block {
  margin: 2rem 0;
}

h2 {
  font-size: 2rem;
  color: #ff006d;
}

p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: #ff006d;
}

.see-more {
  display: inline-block;
  margin-top: 1rem;
  color: #00ffff;
  text-decoration: underline;
}

.best {
  margin: 4rem 0;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.box {
  width: 100px;
  height: 150px;
  border: 2px solid #ff006d;
  transform: skew(-10deg);
}

.note {
  font-size: 0.8rem;
  color: #ff006d;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.social-links a {
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-highlight);
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.social-links a:hover {
  background-color: var(--text-highlight);
  color: var(--color-background);
}
/* Títulos de cada bloque grande */
.caption {
  margin-top: 0.5rem;
  color: #ff006d;
  font-weight: bold;
  text-align: center;
}

/* Sección "More of 2025" */
.more {
  margin-top: 4rem;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  padding: 1rem;
}

.mini-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #ff006d;
  border-radius: 8px;
  box-shadow: 2px 2px 6px #0004;
}

