/* Cybercore Base */
body {
  background-color: #0a0f1c;
  color: #00bfff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 20px;
  background-image: radial-gradient(circle at center, #0a0f1c 0%, #000000 100%);
}

h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #00bfff;
}

/* Grid Layout */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}

/* Review Boxes */
.review-box {
  background-color: rgba(0, 0, 50, 0.6);
  border: 1px solid #00bfff;
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.review-box:hover {
  box-shadow: 0 0 20px #00bfff;
  transform: scale(1.03);
}

/* Headings in Boxes */
.review-box h2 {
  font-size: 16px;
  margin-top: 0;
  color: #66ccff;
  text-shadow: 0 0 5px #0099ff;
}

/* Optional: Customize Stars */
.review-box p:first-of-type {
  font-weight: bold;
  color: #00ffff;
}

/* Add Custom Font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000010;
  border-bottom: 1px solid #00bfff;
  padding: 15px 30px;
  box-shadow: 0 0 10px #00bfff;
  margin-bottom: 30px;
}

.nav-logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #00bfff;
  text-shadow: 0 0 5px #00bfff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links li a:hover {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

