@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap");

body {
  background: url("wallpaper.jpg") center / cover no-repeat fixed;
  font-family: "Courier Prime", "Courier New", monospace;
  margin: 0;
  min-height: 100vh;
  color: #3f4a3c;
}

.card {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;

  background: #3a4037;
  border: 3px ridge #5f6a57;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  box-shadow: 4px 4px 0px #2a2f27;
}

.card img {
  width: 56px;
  height: 56px;
  border: 2px solid #5f6a57;
  object-fit: cover;
  flex-shrink: 0;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.track {
  font-weight: 700;
  font-size: 0.95rem;
  color: #eef2e6;
  line-height: 1.2;
}

.artist {
  font-size: 0.85rem;
  font-weight: 400;
  color: #cfd6c3;
}

.status {
  font-size: 0.7rem;
  font-weight: 400;
  color: #aeb7a0;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 24px;
  margin-bottom: 32px;

  z-index: 5;
}

.header h1 {
  margin: 0;
  font-size: 3.8rem;
  font-weight: 700;
  color: #3f4a3c;
  text-shadow: 2px 2px #5f6a57;
}

.cat {
  width: 90px;
  height: auto;
  image-rendering: pixelated;
}

.badge-top-left {
  position: absolute;
  top: 30px;
  left: 80px;
  z-index: 15;
}

.badge-top-right {
  position: absolute;
  top: 30px;
  right: 80px;
  z-index: 15;
}

.badge-left {
  position: absolute;
  left: 30px;
  top: 380px;
  z-index: 15;
}

.badge-bottom-left {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 15;
}

.badge-center {
  position: absolute;
  top: 410px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.badge-top-left img {
  display: block;
  image-rendering: pixelated;
  width: 120px;
  height: auto;
}

.badge-top-right img {
  display: block;
  image-rendering: pixelated;
  width: 120px;
  height: auto;
}

.badge-left img {
  display: block;
  image-rendering: pixelated;
  width: 180px;
  height: auto;
}

.badge-bottom-left img {
  display: block;
  image-rendering: pixelated;
  width: 140px;
  height: auto;
}

.badge-center img {
  display: block;
  image-rendering: pixelated;
  width: 200px;
  height: auto;
}

.widgets {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 0 32px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.widget-card {
  background: #f5f8f0;
  border: 3px groove #8a927f;
  padding: 22px 24px;

  box-shadow: 5px 5px 0px #5f6a57;

  color: #3f4a3c;
}

.widget-card h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.widget-card p,
.widget-card li {
  font-size: 0.85rem;
  font-weight: 400;
  color: #5f6a57;
  line-height: 1.5;
}

.widget-card ul {
  margin: 0;
  padding-left: 16px;
}

.widget-card a {
  color: #55624d;
  text-decoration: underline;
  font-weight: 700;
}

.widget-card a:hover {
  color: #3f4a3c;
  background-color: #cfd6c3;
}

.main-content {
  max-width: 1100px;
  margin: 0 auto 140px;
  padding: 0 32px;
  min-height: 400px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.section {
  background: #f5f8f0;
  border: 4px double #5f6a57;
  padding: 26px 28px;

  box-shadow: 6px 6px 0px #4a5643;
}

.section.full-width {
  grid-column: 1 / -1;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #3f4a3c;
}

.section iframe {
  display: block;
  width: 100%;
  border: 3px groove #8a927f;
  background: #fff;
}

.entry {
  margin-bottom: 18px;
}

.entry:last-child {
  margin-bottom: 0;
}

.entry h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4a5643;
}

.entry p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: #5f6a57;
  line-height: 1.5;
}

.entry time {
  font-size: 0.7rem;
  font-weight: 400;
  color: #8a927f;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.2rem;
  }

  .cat {
    width: 60px;
  }

  .badge-left,
  .badge-center {
    display: none;
  }

  .badge-top-left {
    top: 10px;
    left: 10px;
  }

  .badge-top-right {
    top: 10px;
    right: 10px;
  }

  .badge-bottom-left {
    bottom: 100px;
    left: 10px;
  }

  .badge-top-left img {
    width: 80px;
  }

  .badge-top-right img {
    width: 80px;
  }

  .badge-bottom-left img {
    width: 100px;
  }

  .widgets {
    padding: 0 16px;
    gap: 20px;
    margin-bottom: 80px;
  }

  .main-content {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 24px;
    margin-bottom: 100px;
  }

  .card {
    bottom: 12px;
    right: 12px;
    padding: 10px 12px;
    gap: 10px;
  }

  .card img {
    width: 40px;
    height: 40px;
  }

  .track {
    font-size: 0.8rem;
  }

  .artist {
    font-size: 0.75rem;
  }

  .status {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .header {
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .cat {
    width: 50px;
  }

  .badge-top-left img {
    width: 60px;
  }

  .badge-top-right img {
    width: 60px;
  }

  .badge-bottom-left img {
    width: 80px;
  }

  .widgets {
    padding: 0 12px;
  }

  .widget-card {
    padding: 16px 18px;
  }

  .main-content {
    padding: 0 12px;
  }

  .section {
    padding: 18px 20px;
  }
  
  .section iframe {
    height: 500px;
  }
}