/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(145deg, #0e0e0e, #1a1a1a);
  color: #eaeaea;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.6;
  padding: 0 1rem;
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #141414;
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 1rem auto;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.07);
}

.navbar .logo a {
  color: #00ffe1;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #eaeaea;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00ffe1;
  bottom: -4px;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.1);
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h2 {
  padding: 1rem;
  font-size: 1.4rem;
  color: #00ffe1;
}

.card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #bbb;
}

.btn {
  display: block;
  background: #00ffe1;
  color: #000;
  text-align: center;
  margin: 0 1rem 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.btn:hover {
  background: #00ccc0;
}

.review-card {
  background: #1c1c1e;
  border: 1px solid #2a2a2d;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

.review-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00ffff;
}

.review-card p {
  margin: 0.3rem 0;
  line-height: 1.5;
}

.ref-button {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 1.2rem;
  background-color: #00ffff;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.ref-button:hover {
  background-color: #00cccc;
  transform: scale(1.05);
}

.info-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #1c1c1e;
  border-radius: 1rem;
  border: 1px solid #2a2a2d;
  box-shadow: 0 0 8px rgba(0,255,255,0.05);
}

.info-section h2 {
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.info-section ul {
  list-style: disc;
  margin-left: 1.5rem;
  line-height: 1.6;
}

a {
  color: #00ffff;
  text-decoration: underline;
  transition: 0.2s ease;
}

a:hover {
  color: #00cccc;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 2.5rem;
  color: #00ffe1;
  margin-bottom: 0.5rem;
}

header p {
  color: #ccc;
  font-size: 1.1rem;
}

/* Sections */
section {
  margin-bottom: 3rem;
  background: #1b1b1b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
}

section h2 {
  color: #00ffe1;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

section p,
section li {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 1.5rem;
  background: #222;
  padding: 1rem 1.2rem;
  border-left: 4px solid #00ffe1;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #00ffe1;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: #bbb;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0 1rem;
  color: #666;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  header h1 {
    font-size: 2rem;
  }

  section {
    padding: 1.5rem;
  }
}
