/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #121212;
  color: #f5f5f5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #121212;
  padding: 60px 0;
}

.hero .container {
  max-width: 800px;
  text-align: center;
  color: #f1f1f1;
  padding: 20px;
  background: #292929;
  border: 2px solid transparent;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  animation: borderBlueGlow 3s linear infinite; /* Dim-to-blue border animation */
}

.hero h2 {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3),
               0 0 6px rgba(255, 255, 255, 0.3),
               0 0 10px rgba(255, 255, 255, 0.4); /* Subtle glow */
  animation: titleDimToBright 2s infinite alternate; /* Dim to moderate brightness */
}

.hero p {
  font-size: 1.2em;
  color: #cccccc;
  margin: 10px 0 20px;
}

/* Group Details Styling */
.group-details {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  color: #bbbbbb;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1); /* Subtle white glow */
}

.group-details p {
  margin: 5px 0;
  font-size: 1.1em;
  color: #ffffff; /* White text */
}

.group-details strong {
  color: #ffffff; /* White bold text */
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3); /* Faint white glow */
}

/* Download Section */
.downloads {
  margin: 40px 0;
  text-align: center;
}

.file-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.file-boxes .box {
  flex: 1 1 300px;
  text-align: center;
  background: #292929;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.file-boxes h3 {
  color: #ffffff;
}

.file-boxes p {
  font-size: 0.9em;
  margin-bottom: 15px;
  color: #aaaaaa;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #008cff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #005bb5;
  transform: scale(1.05);
}

.glow-btn {
  box-shadow: 0 0 10px #008cff;
}

.glow-btn:hover {
  box-shadow: 0 0 15px #005bb5;
}

/* Footer Section */
footer {
  background: #1e1e1e;
  color: #bbbbbb;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}

/* Animations */

/* Border Glow Animation (Dim to Blue) */
@keyframes borderBlueGlow {
  0% {
    border-color: rgba(0, 140, 255, 0.1); /* Dim blue */
  }
  100% {
    border-color: rgba(0, 140, 255, 0.6); /* Brighter blue */
  }
}

/* Title Glow Animation (Dim to Moderate Brightness) */
@keyframes titleDimToBright {
  0% {
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.2),
                 0 0 6px rgba(255, 255, 255, 0.2),
                 0 0 8px rgba(255, 255, 255, 0.2); /* Dim glow */
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4),
                 0 0 10px rgba(255, 255, 255, 0.4),
                 0 0 15px rgba(255, 255, 255, 0.5); /* Brighter glow */
  }
}
/* GitHub Section */
.github-container {
  background: #121212; /* Match the black area */
  text-align: center;
  padding: 20px 0; /* Add vertical space */
}

.github-container a {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background: #008cff; /* Same blue as download buttons */
  border-radius: 5px;
  box-shadow: 0 0 10px #008cff;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.github-container a:hover {
  background: #005bb5;
  transform: scale(1.05); /* Slight zoom effect */
  box-shadow: 0 0 15px #005bb5;
}

/* Footer Section */
footer {
  background: #1e1e1e;
  color: #bbbbbb;
  text-align: center;
  padding: 20px 0;
  margin-top: 0; /* Remove margin to align closely with GitHub section */
}

footer p {
  margin: 0;
  font-size: 1em;
  color: #cccccc;
}



