body {
    background: #f5f1e9;
    color: #4a3c31;
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
  }
  
  .page {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
  }
  
  h1 {
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #a15e3a;
    text-transform: uppercase;
  }
  
  .content {
    text-align: center;
  }
  
  .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5c4d42;
  }
  
  .section {
    margin-top: 3rem;
  }
  
  .quote {
    font-size: 1.3rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #4a3c31;
  }
  
  .signs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    justify-items: center;
    margin-top: 2rem;
  }
  
  .sign {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #a15e3a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    overflow: hidden;
    position: relative;
  }
  
  .sign img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    pointer-events: none;
  }
  
  .sign:hover {
    background-color: #80331a;
  }
  
  .sign::after {
    content: attr(data-sign);
    position: absolute;
    bottom: -25px;
    font-size: 0.8rem;
    color: #a15e3a;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
  }
  
  .sign:hover::after {
    opacity: 1;
    bottom: -15px;
  }
  
  .roast {
    margin-top: 2rem;
    font-weight: 700;
    color: #80331a;
    font-size: 1.1rem;
    min-height: 50px;
    text-align: center;
  }
  
  #monthlyHoroscope {
    margin-top: 1rem;
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;
    text-align: left;
    border-top: 1px solid #a15e3a;
    padding-top: 0.5rem;
    color: #80331a;
    min-height: unset;
  }
  .final-cta {
    font-style: italic;
    color: #4a3c31;
    font-size: 1rem;
    margin-top: 4rem;
  }
  
  footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #a15e3a;
    font-style: italic;
    text-align: center;
  }
  
  @media (max-width: 600px) {
    .signs {
      grid-template-columns: repeat(3, 1fr);
    }
  }