/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto&display=swap');

/* Reset Margins and Padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* Header */
header {
  position: relative;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  text-align: center;
  padding: 100px 20px 80px;
  color: #ffffff;
  overflow: hidden;
}

header::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 100vw 50px 0;
  border-style: solid;
  border-color: transparent transparent #0d0d0d transparent;
  z-index: 1;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

header p {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* Navigation Menu */
nav {
  background-color: #1a1a1a;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  margin: 5px 15px;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ffff;
}

/* Main Content */
main {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

main h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

main h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
}

main p, main li {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

main code {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2px 6px;
  border-radius: 4px;
  color: #00ffff;
  font-family: 'Roboto Mono', monospace;
}

/* Ordered List Styling */
ol {
  counter-reset: list;
  margin-left: 20px;
  list-style-type: none; /* Add this line to remove default numbering */
}

ol li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

ol li::before {
  counter-increment: list;
  content: counter(list) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: #00ffff;
  font-weight: bold;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.download-buttons a {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  color: #ffffff;
  padding: 15px 25px;
  margin: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.download-buttons a:hover {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 0, 255, 0.5);
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.5);
}

/* GitHub Button */
.github-button {
  display: inline-block;
  background-color: #333333;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: background 0.3s, transform 0.3s;
}

.github-button:hover {
  background-color: #24292e;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: #0d0d0d;
  color: #999999;
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #ff00ff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ffff, #ff00ff);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff00ff, #00ffff);
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 3rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    margin: 10px 0;
  }

  .download-buttons a {
    margin: 10px 0;
  }

  .gallery img {
    max-width: 100%;
  }
}

