:root {
  --background-color: #1a1a1a;
  --text-color: #ffffff;
  --gradient-primary: linear-gradient(135deg, #6c00ff, #8a00ff);
  --neon-shadow: 0 0 10px #6c00ff, 0 0 20px #6c00ff, 0 0 30px #6c00ff;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
}

header {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #8a00ff;
}

.nav-links li a.active {
  color: #8a00ff;
}

main {
  padding-top: 80px; /* To account for the fixed header */
}

.page-hero {
  padding: 5rem 2rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--neon-shadow);
  margin-bottom: 1rem;
  background-clip: text;
}

.page-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-card {
  background: #2a2a2a;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(108, 0, 255, 0.1);
  transition: 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(108, 0, 255, 0.4);
}

.content-card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #8a00ff;
  text-transform: uppercase;
  text-align: center;
}

.content-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.3s ease;
}

.content-item:hover {
  background: rgba(108, 0, 255, 0.1);
}

.content-item i {
  font-size: 2rem;
  color: #8a00ff;
}

.content-info h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  opacity: 0.9;
}

.content-info p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #8a00ff;
}

footer {
  background: #111;
  color: #ccc;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: #8a00ff;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  max-width: 1200px;
  margin: 2rem auto 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }
  
  .nav-links li {
    padding: 0.5rem 0;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .content-item {
    flex-direction: column;
    text-align: center;
  }
  
  .content-item i {
    margin-bottom: 0.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-section {
    text-align: center;
  }
}