* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




#home-page { 
  opacity: 0; 
  transition: opacity 1s ease-in-out; 
  visibility: hidden; 
}
#home-page.visible { 
  opacity: 1; 
  visibility: visible; 
}


header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;

  
  display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 40px; 
  
  
  background: transparent !important; 
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all .25s ease;
}


#home-page.glass {
  background: rgba(8,12,20,0.48);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


.logo {
  display: block;
  font-size: 18px;
  font-family: 'Courier New', monospace !important;
  font-weight: bold;
  text-align: left;
}
.quanta {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  font-family: 'Courier New', monospace !important;
}
.highlight {
  display: inline-block;
  color: #C0C0C0;
  opacity: 0.8;
  border: 2px solid #C0C0C0;
  font-size: 18px;
  font-family: 'Courier New', monospace;
  line-height: 1;
  padding: 2px;
  margin-right: 0px;
  text-align: center;
}
.highlight .quanta { display: inline-block; }


nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
nav ul li { margin: 0 20px; }
nav ul li a {
  color: #C0C0C0;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  transition: text-shadow 0.3s ease-in-out;
  text-shadow: 0 0 5px transparent;
}
nav ul li a:hover { text-shadow: 0 0 20px rgba(255, 255, 255, 1); }






.light-theme .quanta,
.light-theme nav ul li a {
  color: #333333; 
  text-shadow: none; 
}


.light-theme .highlight {
  color: #555555;
  border-color: #555555;
}


.light-theme nav ul li a:hover {
  color: #000000;
  text-shadow: none;
}


.light-theme #home-page.glass {
  background: rgba(255, 255, 255, 0.48); 
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom-color: rgba(0, 0, 0, 0.08); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}




.hero {
  background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--accent-color), #ff69b4);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  padding: 60px 20px;
  text-align: center;
  
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 20px auto;
}

.cta:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}


.featured-tools {
  padding: 50px 20px;
  text-align: center;
}

.tools {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tool-box {
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  width: 30%;
  border-radius: 5px;
  text-align: center;
  margin: 10px;
}

@media (max-width: 900px) {
  .tool-box {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .tool-box {
    width: 100%;
  }
}

.blog-hero {
  position: relative;
  color: white;
  padding: 0;
  text-align: center;
  overflow: hidden;
  height: 250px; 
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  font-size: 64px;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 30px rgba(0, 255, 127, 0.9), 0 0 60px rgba(0, 255, 127, 0.5);
  z-index: 2;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.blog-grid-section {
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 20px;
  text-align: center;
}

.blog-grid-section h2 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: bold;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-post {
  background-color: lightgray; 
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  color: white;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 200px; 
  
  background-size: contain;
  background-position: center; 
  background-repeat: no-repeat; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-1 { background-color: #00ff00; }
.post-2 { background-color: #00FF00; }
.post-3 { background-color: #00FF00; }
.post-4 { background-color: #00FF00; }
.post-5 { background-color: #00FF00; }
.post-6 { background-color: #00FF00; }
.post-7 { background-color: #00FF00; }
.post-8 { background-color: #00FF00; }
.post-9 { background-color: #00FF00; }

.blog-post:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

a.blog-post {
  text-decoration: none;
  color: white;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}