html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Section */
.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
}

/* Overlay (without blur now) */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* no blur */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

/* Image */
.hero-image {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Text */
h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 0, 100, 0.3);
}

.warning {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 0, 100, 0.3);
}

/* Button */
.btn {
  display: inline-block;
  background-color: #ffffff;
  color: #8b0000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 0, 100, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 100, 0.4);
}

/* Button Animation */
.pulse {
  animation: pulse 2s infinite;
  transform-origin: center;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 0, 100, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 100, 0.6);
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 10px;
  background: transparent;
  color: #ccc;
  font-size: 14px;
  z-index: 2;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff3366;
}

/* Background elements */
.space-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: starMove linear infinite;
}

@keyframes starMove {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(100px, 50px) scale(1.2); opacity: 1; }
  100% { transform: translate(200px, 100px) scale(1); opacity: 0.7; }
}

.heart {
  position: absolute;
  background: red;
  transform: rotate(-45deg);
  animation: heartFloat linear infinite, heartGlow 4s ease-in-out infinite;
}

.heart::before,
.heart::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: red;
  border-radius: 50%;
}

.heart::before {
  top: -50%;
  left: 0;
}

.heart::after {
  left: 50%;
  top: 0;
}

@keyframes heartFloat {
  0% { transform: translateY(0) rotate(-45deg); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(-45deg); opacity: 0; }
}

@keyframes heartGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(255,0,100,0.5); }
  50% { box-shadow: 0 0 15px rgba(255,0,100,0.8); }
}
