@font-face {
  font-family: 'LEDDot';
  src: url('./LED Dot-Matrix 400.ttf') format('truetype');
}

body {
  margin: 0;
  background-color: black;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    radial-gradient(circle at 25% 75%, rgba(139, 0, 0, 0.3), transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(139, 0, 0, 0.5), transparent 60%);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'LEDDot', monospace;
}

.led-header,
.social-links {
  position: absolute;
  top: 20px;
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  z-index: 100;
}

.led-header {
  position: absolute;
  top: 20px;
  left: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;     
  gap: 10px;
  height: 40px;
  z-index: 100;
}

.logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  image-rendering: pixelated;
  opacity: 1;
  filter: brightness(1.3);
  margin-top: 1px;             
}

.name {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'LEDDot', monospace;
  color: gray;
  font-size: 16px;             
  line-height: 1.1;
  margin-top: 2px;             
}

.name .line-1,
.name .line-2 {
  margin: 0;
  padding: 0;
}



.social-links {
  right: 30px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.social-label {
  color: gray;
  font-size: 16px;
  font-family: 'LEDDot', monospace;
  letter-spacing: 1px;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 0;
}

.icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.icons img {
  width: 34px;
  height: 34px;
  filter: brightness(1.2) contrast(1.2);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.icons img:hover {
  transform: scale(1.1);
}


.wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.line {
  height: 170px;
  width: 4px;
  background-image: repeating-linear-gradient(
    to bottom, 
    red, 
    red 4px, 
    transparent 4px, 
    transparent 8px
  );
}

.text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 170px;
}

.red-line {
  color: red;
  font-size: 70px;
  line-height: 1;
}

.white-line {
  color: white;
  font-size: 28px;
  margin-top: 10px;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.download-link {
  margin-top: 40px;
  font-size: 18px;
  color: #ff4444;
  text-decoration: none;
  font-family: 'LEDDot', monospace;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
