* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(160, 0, 25, .35), transparent 35%),
    linear-gradient(160deg, #030303, #090004 45%, #000);
  color: #f2f2f2;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(460px, 100%);
  border: 1px solid rgba(255, 40, 60, .55);
  border-radius: 28px;
  padding: 34px 26px;
  background: rgba(0, 0, 0, .72);
  box-shadow: 0 0 35px rgba(255, 0, 45, .22), inset 0 0 30px rgba(255, 0, 45, .08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: rotate(25deg);
  animation: scan 7s infinite linear;
}

@keyframes scan {
  from { translate: -35% 0; }
  to { translate: 35% 0; }
}

.sigil {
  font-size: 54px;
  color: #ff243f;
  text-shadow: 0 0 16px #ff243f;
}

.project, .id, .quote {
  letter-spacing: 4px;
  font-size: 12px;
  color: #c7c7c7;
}

h1 {
  margin: 8px 0;
  font-size: 48px;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 40, 60, .6);
}

.panel {
  margin: 28px 0;
  border: 1px solid rgba(255, 40, 60, .35);
  padding: 16px;
  text-align: left;
}

.panel p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  letter-spacing: 3px;
}

span {
  color: #ff3048;
}

.links {
  display: grid;
  gap: 12px;
}

.links a {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 40, 60, .45);
  padding: 14px;
  border-radius: 14px;
  letter-spacing: 3px;
  background: rgba(255, 0, 45, .08);
  transition: .2s;
}

.links a:hover {
  background: rgba(255, 0, 45, .22);
  transform: translateY(-2px);
}

.quote {
  margin-top: 26px;
  line-height: 1.8;
}
