/* mode3.css */

#mode3 {
    background: #ffd452; /* Día (amarillo suave) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    transition: background 1.5s ease;
  }
  
  .day-night-btn {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .info {
    font-size: 1.2rem;
  }
  
  /* Sol y Luna animados */
  .sun, .moon {
    position: absolute;
    top: 20%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: calc(50% - 40px);
    transition: transform 1.5s ease;
  }
  
  .sun {
    background: radial-gradient(circle at 30% 30%, #ffe600, #ffa600);
    box-shadow: 0 0 20px rgba(255, 232, 0, 0.6);
  }
  
  .moon {
    background: radial-gradient(circle at 30% 30%, #ccc, #888);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    display: none; /* Oculta de día */
  }
  
  /* Estrellas (se muestran de noche) */
  .stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none; /* De día, ocultas */
  }
  
  .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
  }
  