body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f2f2;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #131921;
    padding: 10px 20px;
    color: white;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .logo span {
    color: #febd69;
  }
  
  .search {
    width: 40%;
    padding: 8px;
    border-radius: 4px;
    border: none;
  }
  
  .nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
  }
  
  .hero {
    background: linear-gradient(to right, #fff9cc, #ffe58a);

    padding: 30px 20px;
    border-bottom: 1px solid #ccc;
  }
  
  .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .hero-logo {
    width: 120px;
    height: auto;
  }
  
  .hero-text h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #111;
  }
  
  .hero-text p {
    font-size: 16px;
    margin: 0 0 8px;
    color: #333;
  }
  
  .hero-text small {
    font-size: 12px;
    color: #555;
  }
  
  
  .products {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .product {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 5px;
    transition: transform 0.2s;
  }
  
  .product:hover {
    transform: translateY(-5px);
  }
  
  .product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .product h3 {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #111;
  }
  
  .price {
    font-weight: bold;
    color: #B12704;
    margin: 5px 0;
  }
  
  .buy-btn {
    background-color: #ffd814;
    border: 1px solid #fcd200;
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
  }
  
  .buy-btn:hover {
    background-color: #f7ca00;
  }
  /* Modal Overlay */
/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 25px 30px;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  /* Close Button */
  .close-btn {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -10px;
  }
  
  .close-btn:hover {
    color: #000;
  }
  
  #popupIcon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 22px;
    color: #4BB543;
  }
  
  #popupText {
    font-size: 18px;
    color: #111;
    vertical-align: middle;
  }
  
  .scratch-section {
    text-align: center;
    margin-top: 50px;
  }
  
  .scratch-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
  
  .scratch-card {
    width: 100px;
    height: 130px;
    background-color: #fffbcc;
    border: 2px solid #e0c100;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
  }
  
  .scratch-card:hover {
    transform: scale(1.05);
  }
  
  .scratch-card.revealed {
    background-color: #fff;
    color: #007600;
    cursor: default;
    border-color: #007600;
  }
  