body {
  font-family: "Press Start 2P", system-ui;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111;
  color: rgb(255, 255, 255, 0.9);
  overflow: hidden;
}

.retro-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 30px;
  z-index: 100;
}

.retro-nav a {
  color: rgb(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 10px;
  padding: 10px;
  border: 2px solid rgb(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}

.retro-nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.gameArea {
  position: absolute;
  width: 600px;
  height: 400px;
  background: rgba(7, 26, 49, 0.6);
  top: 182px;
  border: #919bbec7 10px solid;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transform: perspective(1000px) rotateX(33deg) scaleX(0.54) scaleY(0.84);
}
.bg {
  position: absolute;
  height: 1000px;
  z-index: -1;
}

.paddle {
  height: 100px;
  width: 20px;
  background: rgb(255, 255, 255, 0.9);
  position: absolute;
  border-radius: 4px;
  top: 150px;
}

.paddle2 {
  right: 0;
}

.ball {
  position: absolute;
  height: 20px;
  width: 20px;
  background: rgb(255, 255, 255, 0.9);
  border-radius: 2px;
  left: 290px;
  top: 190px;
  box-shadow: 4px 10px 4px rgba(0, 0, 0, 0.9);
}

.net {
  position: absolute;
  border-right: 8px rgb(255, 255, 255, 0.3) dotted;
  height: 96%;
  left: calc(50% - 4px);
  top: 2%;
}

.title {
  position: absolute;
  top: 80px;
  font-size: 26px;
}

.score {
  position: absolute;
  top: 88px;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.plater1Score {
  left: calc(50% - 200px);
}

.plater2Score {
  right: calc(50% - 200px);
}

.startText {
  position: absolute;
  margin: 0;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: #222;
  border-radius: 4px;
  padding: 10px;
}
.vignette {
  height: 100%;
  width: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.blog-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 15px 0;
  line-height: 1.3;
  text-align: left;
  color: #111;
}

.about-body {
  overflow: auto;
  justify-content: flex-start;
  padding-top: 100px;
  min-height: 100vh;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.about-title {
  font-size: 24px;
  margin: 0 0 50px 0;
  color: rgb(255, 255, 255, 0.9);
}

.about-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.retro-button {
  color: rgb(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 12px;
  padding: 15px 25px;
  border: 3px solid rgb(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s;
  display: inline-block;
  position: relative;
}

.retro-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cv-button {
  position: absolute;
  cursor: pointer;
  transition: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cv-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cv-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.pdf-preview {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pdf-document {
  position: relative;
  width: 300px;
  height: 400px;
  background: #ffffff;
  border: 3px solid rgb(255, 255, 255, 0.9);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdf-header {
  background: #dc143c;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pdf-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdf-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent rgba(0, 0, 0, 0.2) transparent transparent;
}

.pdf-content {
  flex: 1;
  padding: 20px;
  background: white;
  overflow: hidden;
}

.pdf-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-label {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: rgb(255, 255, 255, 0.9);
  text-align: center;
  white-space: nowrap;
}
