body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background-color: #0a0a0a;
  color: #e1e1e1;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url('background.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7) 1px,
    transparent 2px,
    transparent 4px
  );
  z-index: 1;
  pointer-events: none;
  animation: flicker 2s infinite;
}

.hero .content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 5rem;
  color: #ff0077;
  text-shadow: 0 0 10px #ff0077aa;
}

.hero p {
  font-size: 1.5rem;
  color: #ccc;
}


/* Animations */
@keyframes flicker {
  0% { opacity: 0.98; }
  50% { opacity: 0.92; }
  100% { opacity: 0.98; }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background-color: #000;
  color: #e1e1e1;
}

section {
  background: url('background2.png') no-repeat center center;
  background-size: cover;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.image-lore, .image-social {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 0, 120, 0.3);
  animation: float 4s ease-in-out infinite;
}

.lore-text, .social-links {
  max-width: 600px;
}

h2 {
  font-size: 2.5rem;
  color: #ff0077;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff0077aa;
}

p, a {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
}

a {
  display: block;
  margin: 10px 0;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff0077;
}

/* Floating image animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

