
     body{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f7f7f7;
      color: #222;
      padding: 40px;
    }

    header {
      text-align: center;
      margin-bottom: 50px;
    }

    header h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    header p {
      color: #666;
      font-size: 1rem;
    }

    .recipe-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .recipe-card {
      background: white;
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .recipe-card:hover {
      transform: translateY(-4px);
    }

    .recipe-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .recipe-info {
      padding: 18px;
    }

    .recipe-info h2 {
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .recipe-info p {
      color: #666;
      font-size: 0.95rem;
    }

.community-section {
  margin: 60px auto 0;
  max-width: 620px;

  background: white;
  padding: 28px;

  border-radius: 14px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  text-align: center;
}

.community-section h2 {
  margin-bottom: 12px;
}

.community-text {
  color: #666;
  line-height: 1.5;
  margin-bottom: 22px;
}

.suggest-btn {
  display: inline-block;

  padding: 12px 22px;

  background: #222;
  color: white;

  text-decoration: none;

  border-radius: 10px;

  transition: 0.2s ease;
}

.suggest-btn:hover {
  opacity: 0.9;
}

.photo-email {
  margin-top: 24px;

  color: #666;

  line-height: 1.5;
}


#popup-overlay {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.5);

  display: flex;

  justify-content: center;
  align-items: center;

  z-index: 999;
}


.recipe-box{
  background:#f5f5f5;
  padding:50px 40px;
  border-radius:24px;

  text-align:center;

  max-width:700px;
  margin:60px auto;
}

.recipe-box h2{
  font-size:48px;
  margin-bottom:20px;
}

.recipe-box p{
  font-size:24px;
  color:#555;
  margin-bottom:35px;
}

.popup-btn{
  background:#1f1f1f;
  color:white;

  border:none;
  border-radius:18px;

  padding:18px 40px;

  font-size:28px;
  cursor:pointer;
}
.decline-btn {

  margin-top: 18px;

  background: transparent;

  border: none;

  color: #666;

  font-size: 18px;

  cursor: pointer;
}

.decline-btn:hover {
  opacity: 0.7;
}
.recipe-box {
  animation: popup 0.25s ease;
}
@keyframes popup {

  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }

}
.footer-links {

  text-align: center;

  margin-top: 60px;
  margin-bottom: 20px;

  font-size: 14px;

  color: #777;
}

.footer-links a {

  color: #777;

  text-decoration: none;

  transition: 0.2s ease;
}

.footer-links a:hover {

  color: #222;
}

.footer-links span {

  margin: 0 10px;

  color: #bbb;
}