.clock-content {
    text-align: center;
  }
  
  .clock-display {
    font-size: 5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .date-display {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  @media (max-width: 1024px) {
    .clock-display {
      font-size: 4rem;
    }
    
    .date-display {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 768px) {
    .clock-display {
      font-size: 3rem;
      margin-bottom: 15px;
    }
    
    .date-display {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .clock-display {
      font-size: 2.5rem;
    }
    
    .date-display {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 360px) {
    .clock-display {
      font-size: 2rem;
    }
  }