@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Oswald-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Oswald-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Oswald-Bold.ttf') format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000;
  font-family: Oswald, 'Swiss 911 Ultra Compressed', 'Helvetica Neue', Arial, sans-serif;
  padding: 2rem;
  overflow: hidden;
}

.panel {
  position: relative;
  width: 100%;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 3rem 0;
}

.lcars-bar {
  width: 100%;
  height: 2.25rem;
  background: #4fc3f7;
  border-radius: 0 999px 999px 0;
  align-self: flex-start;
  position: relative;
}

.lcars-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}

.lcars-bar--bottom {
  background: #ffb74d;
  align-self: flex-end;
  border-radius: 999px 0 0 999px;
}

.quote-block {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  width: 100%;
}

.quote-block::before,
.quote-block::after {
  position: absolute;
  width: 3rem;
  height: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.quote-block::before {
  content: '';
  top: 0;
  background: rgba(79, 195, 247, 0.35);
}

.quote-block::after {
  content: '';
  bottom: 0;
  background: rgba(255, 183, 77, 0.35);
}

.quote-text {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffb74d;
  line-height: 1.15;
  text-shadow: 0 0 60px rgba(255, 183, 77, 0.12), 0 0 120px rgba(255, 183, 77, 0.06);
}

.quote-attribution {
  font-size: clamp(0.875rem, 2vw, 1.375rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #4fc3f7;
  margin-top: 1.5rem;
  opacity: 0.8;
  text-shadow: 0 0 40px rgba(79, 195, 247, 0.15);
}

.quote-attribution::before {
  content: '\2500\2500\00a0';
  letter-spacing: 0.3em;
}

.decorations {
  display: flex;
  gap: 2rem;
  position: absolute;
  bottom: 5.5rem;
  right: 0;
}

.decorations span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(79, 195, 247, 0.2);
}

.decorations span:nth-child(2) {
  background: rgba(255, 183, 77, 0.2);
  width: 1rem;
  height: 0.5rem;
  border-radius: 999px;
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }
  .panel {
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .lcars-bar {
    height: 1.5rem;
  }
  .lcars-bar--bottom {
    height: 1.5rem;
  }
}
