/* General Reset */
body, h1, p, ul, li, a, iframe, video {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #f3f4f6, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  overflow: hidden;
  height: 100vh;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.6); /* Green glowing outline for body */
}

/* Video Background Styling */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Container Styling */
.container {
  background: rgba(255, 255, 255, 0.2); /* Set background to transparent with some opacity */
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 255, 0, 0.8); /* Green glowing outline */
  text-align: center;
  width: 90%;
  max-width: 700px;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  overflow-y: auto;
  height: 90vh;
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Profile Image Styling */
.profile-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #00ff00; /* Green border */
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite ease-in-out, rotate 4s linear infinite, bounce 3s ease-in-out infinite; /* Slow up-and-down animation */
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.8); /* Green glowing outline */
}

/* Slow Up-Down Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Slow up-and-down effect */
  }
}

/* Pulse Effect - Makes image gently grow and shrink */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Grows to 110% of original size */
  }
  100% {
    transform: scale(1);
  }
}

/* Rotation Effect */
@keyframes rotate {
  0% {
    transform: rotate(0deg); /* Initial state */
  }
  100% {
    transform: rotate(360deg); /* Full rotation */
  }
}

/* Hover Effect: Scale Up */
.profile-image:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 8px 20px rgba(255, 99, 71, 0.5), 0 0 30px rgba(0, 255, 0, 1); /* Glowing effect on hover */
}

/* Header Styling */
header h1 {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8); /* Green glowing text shadow */
}

header .tagline {
  font-size: 18px;
  color: #f1c40f;
  margin-bottom: 20px;
  font-style: italic;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8); /* Green glowing text shadow */
}

/* Navigation Styling */
nav .link-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

nav .link-tabs li {
  list-style: none;
}

nav .link-tabs a {
  display: block;
  padding: 14px 20px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 6px 10px rgba(38, 10, 158, 0.3); /* Soft shadow */
  border: 2px solid rgba(38, 10, 158, 1);
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.6); /* Green glowing text shadow */
}

nav .link-tabs a:hover {
  background: linear-gradient(45deg, #2575fc, #6a11cb);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(38, 10, 158, 0.4), 0 0 30px rgba(0, 255, 0, 0.8); /* Glowing effect on hover */
}

nav .link-tabs a:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(0, 255, 0, 1); /* Green glow effect when focused */
}

/* Emoji Styling */
nav .link-tabs a::before {
  content: "🔥";
  margin-right: 8px;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 22px;
  }

  nav .link-tabs a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

  nav .link-tabs a {
    font-size: 14px;
    padding: 12px 18px;
  }
}
