@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@700&display=swap');

body {
  margin: 0;
  height: 100vh;
  background: #0a0a0a;
  background-image: radial-gradient(circle at center, #111 0%, #000 100%);
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #e21717;
  overflow: hidden;
}

.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  color: #e21717;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #111;
  margin-bottom: 0.25rem;
}

.subtitle {
  color: #999;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.panel-grid {
  display: flex;
  gap: 2rem;
}

.panel {
  position: relative;
  width: 320px;
  height: 200px;
  overflow: hidden;
  border: 4px solid #e21717;
  border-radius: 8px;
  text-decoration: none;
  background: #111;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 30px #e21717;
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.8) saturate(1.1);
  transition: filter 0.3s ease;
}

.panel:hover img {
  filter: contrast(1.3) brightness(1) saturate(1.4);
}

.panel-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(226,23,23,0.85);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  padding: 0.5rem;
  text-align: center;
}
