* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: white;
  font-family: "Rama Gothic E", "Oswald", sans-serif;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background Running Text */
.background-text {
  position: absolute;
  white-space: nowrap;
  font-size: 300px;
  opacity: 0.1;
  letter-spacing: 12px;
  animation: moveText 140s linear infinite;
  z-index: 0;
  user-select: none;
  filter: blur(1px);
}

/* Animation */
@keyframes moveText {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Main Container */
.container {
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 420px;
}

/* Heading */
h1 {
  font-size: 34px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

/* Tagline */
.tagline {
  font-size: 13px;
  opacity: 0.55;
  margin-bottom: 35px;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Links */
.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #000;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Icons */
.links img {
  width: 18px;
  height: 18px;
  filter: invert(1);
  opacity: 0.85;
}

/* ABOUT SECTION */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-content {
  width: 90%;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* Image */
.about-image {
  float: left;
  width: 160px;
  margin-right: 20px;
  margin-bottom: 10px;
}

/* Text */
.about-text {
  text-align: left;
}

.about-text p {
  margin-bottom: 18px;
  opacity: 0.75;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .about-image {
    float: none;
    display: block;
    margin: 0 auto 25px;
    width: 220px;
  }

  .about-text {
    text-align: center;
  }
}
