body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #151f28, #1e2b38, #2a3d4f);
  color: #fff;
}

header {
  text-align: center;
  padding: 50px 20px 30px;
}

header h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  background: linear-gradient(90deg, #2b94ff, #7ec4ff, #c2e6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 901px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .box:nth-child(1) { grid-column: 1 / 3; }
  .box:nth-child(2) { grid-column: 3 / 5; }
  .box:nth-child(3) { grid-column: 5 / 7; }
  .box:nth-child(4) { grid-column: 2 / 4; }
  .box:nth-child(5) { grid-column: 4 / 6; }
}

.box {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 35px rgb(0 150 255 / 30%);
}

.box img {
  width: 100%;
  height: auto;
  max-width: 1080px;
  max-height: 1080px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.box p {
  font-size: 15px;
  color: #ddd;
  margin-top: 20px;
}

.box a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  background: #3a5465;
  box-shadow: 0 4px 15px rgba(58, 84, 101, 0.35);
  transition: all 0.3s ease;
}

.box a:hover {
  background: #5a7a8f;
  box-shadow: 0 8px 20px rgba(58, 84, 101, 0.5);
  transform: scale(1.05);
}

@media (max-width: 600px) {
  header h1 {
    font-size: 24px;
  }
  .box img {
    max-width: 100%;
    max-height: 300px;
  }
}
