:root {
    --blue: #1a73e8;
    --blue-light: #3f8cff;
    --black: #0b0b0b;
    --muted: #aaa;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
    --radius: 14px;
  }
  
  /* === Base === */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0b0b0b, #111827);
    color: #fff;
  }
  
  /* === Hero Section === */
  .reviews-hero {
    text-align: center;
    padding: 80px 20px 50px;
    background: linear-gradient(135deg, rgba(0,100,255,0.25), rgba(0,0,0,0.6));
    box-shadow: inset 0 0 60px rgba(0,0,0,0.7);
  }
  .reviews-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--blue-light);
  }
  .reviews-hero p {
    color: var(--muted);
    font-size: 1.2rem;
  }
  
  /* === Reviews Section === */
  .reviews-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
  .review-card {
    margin-top: 30px;
    background: #111827;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
  }
  .review-card:hover {
    border-color: var(--blue-light);
    box-shadow: 0 0 20px rgba(26,115,232,0.6);
  }
  .review-card h3 {
    margin-bottom: 8px;
    color: var(--blue-light);
  }
  .review-card p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .stars {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 1.2rem;
  }
  
  /* === Add Review Form === */
  .add-review {
    margin-top: 60px;
    background: #0f172a;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .add-review h2 {
    margin-bottom: 20px;
    color: var(--blue-light);
  }
  
  /* Form proper alignment */
  .review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .add-review textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid #333;
    background: #111827;
    color: #fff;
    font-size: 1rem;
    resize: none;
    transition: 0.3s ease;
  }
  .add-review textarea:focus {
    outline: none;
    border-color: var(--blue-light);
    box-shadow: 0 0 8px rgba(26,115,232,0.6);
  }
  
  .add-review button {
    background: var(--blue);
    border: none;
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
  }
  .add-review button:hover {
    background: var(--blue-light);
    box-shadow: 0 0 12px rgba(63,140,255,0.6);
  }
  