html {
    background: #000000;
    color: #39ff14;
    scroll-behavior: smooth;
  }
  
  /* -------------------------------------------------- */
  /* 🌐 BASE SETUP */
  /* -------------------------------------------------- */
  body {
    margin: 0;
    padding: 0;
    background: linear-gradient(160deg, #000000, #0a0a0a 30%, #050505);
    color: #39ff14;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
  }
  
  /* -------------------------------------------------- */
  /* 🧱 LAYOUT STRUCTURE */
  /* -------------------------------------------------- */
  .layout {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: 100%;
  }
  
  main {
    flex: 1;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  /* -------------------------------------------------- */
  /* 🧭 SIDEBAR NAVIGATION */
  /* -------------------------------------------------- */
  aside {
    width: 240px;
    background: black;
    border-right: 2px solid #00ff00;
    padding: 1rem;
    position: sticky;
    top: 0;
    height: 100vh;
    box-sizing: border-box;
  }
  
  aside h1 {
    text-align: center;
    font-size: 1.4rem;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
  }
  
  nav li {
    margin-bottom: 1rem;
  }
  
  nav a {
    color: #00ff00;
    text-decoration: none;
    border: 1px solid #00ff00;
    display: block;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ff00;
  }
  
  nav a:hover {
    background-color: #002200;
    box-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    transform: scale(1.05);
  }
  
  /* -------------------------------------------------- */
  /* 🍽️ RECIPE SECTION */
  /* -------------------------------------------------- */
  .glow {
    color: #00ffea;
    text-shadow: 0 0 5px #00ffee, 0 0 10px #00ffee;
  }
  
  .recipe {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid #00ff00;
    box-shadow: 0 0 10px #00ff00;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
  }
  
  .recipe h3 {
    color: #00ffcc;
    text-shadow: 0 0 3px #00ffee;
    margin-bottom: 0.5rem;
  }
  
  .recipe .meta {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #c0ffc0;
    font-style: italic;
  }
  
  /* Recipe list style */
  .recipe ul {
    padding-left: 1.5rem;
    margin: 0;
  }
  
  .recipe li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  
  /* -------------------------------------------------- */
  /* 📱 RESPONSIVE DESIGN */
  /* -------------------------------------------------- */
  @media (max-width: 768px) {
    .layout {
      flex-direction: column;
    }
  
    aside {
      width: 100%;
      height: auto;
      position: static;
      border-right: none;
      border-bottom: 2px solid #00ff00;
    }
  
    main {
      padding: 1rem;
    }
  
    .recipe {
      margin-top: 1.5rem;
      padding: 1rem;
    }
  }
  
  /* -------------------------------------------------- */
/* 🗓️ WEEKLY MEAL PREP GRID */
/* -------------------------------------------------- */
.meal-grid {
  margin-top: 2rem;
  overflow-x: auto;
  border: 1px solid #00ff00;
  border-radius: 6px;
  box-shadow: 0 0 10px #00ff00;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.meal-grid table {
  width: 100%;
  border-collapse: collapse;
  color: #39ff14;
}

.meal-grid th,
.meal-grid td {
  border: 1px solid #00ff00;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
}

.meal-grid thead th {
  background-color: rgba(0, 255, 0, 0.1);
  font-size: 1rem;
  color: #00ffcc;
  text-shadow: 0 0 4px #00ffee;
}

.meal-grid tbody td:first-child {
  font-weight: bold;
  background-color: rgba(0, 255, 0, 0.05);
  color: #00ffcc;
}

/* -------------------------------------------------- */
/* 🍴 EXTRA RECIPE DETAILS (MEAL BASES) */
/* -------------------------------------------------- */
.recipe-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.recipe-pair details.recipe {
  flex: 1 1 45%;
  max-width: 48%;
}

@media (max-width: 768px) {
  .recipe-pair {
    flex-direction: column;
  }

  .recipe-pair details.recipe {
    max-width: 100%;
  }

  .meal-grid th,
  .meal-grid td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .meal-grid thead th {
    font-size: 0.9rem;
  }
}


.recipe.breakfast { border-left: 4px solid #ff00ff; box-shadow: 0 0 10px #ff00ff33; }
.recipe.dinner    { border-left: 4px solid #00ffee; box-shadow: 0 0 10px #00ffee33; }
.recipe.snack     { border-left: 4px solid #ffff00; box-shadow: 0 0 10px #ffff0033; }
.recipe.dessert   { border-left: 4px solid #ff6600; box-shadow: 0 0 10px #ff660033; }

.glitch-divider {
  text-align: center;
  margin: 4rem 0 2rem;
  position: relative;
  font-size: 1.2rem;
  color: #00ffcc;
  text-shadow:
    0 0 2px #00ffee,
    0 0 4px #00ffee,
    0 0 8px #00ffee;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 2px #00ffee, 0 0 5px #00ffee;
  }
  50% {
    opacity: 0.6;
    text-shadow: 0 0 3px #39ff14, 0 0 7px #00ffee;
  }
}
